@yume-chan/struct 0.0.17 → 0.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.json +18 -0
- package/CHANGELOG.md +13 -1
- package/LICENSE +1 -1
- package/esm/basic/definition.d.ts +43 -43
- package/esm/basic/definition.d.ts.map +1 -1
- package/esm/basic/definition.js +23 -23
- package/esm/basic/definition.js.map +1 -1
- package/esm/basic/field-value.d.ts +38 -38
- package/esm/basic/field-value.d.ts.map +1 -1
- package/esm/basic/field-value.js +45 -45
- package/esm/basic/field-value.js.map +1 -1
- package/esm/basic/index.d.ts +5 -5
- package/esm/basic/index.js +5 -5
- package/esm/basic/options.d.ts +9 -9
- package/esm/basic/options.js +3 -3
- package/esm/basic/stream.d.ts +19 -19
- package/esm/basic/stream.js +1 -1
- package/esm/basic/struct-value.d.ts +25 -25
- package/esm/basic/struct-value.d.ts.map +1 -1
- package/esm/basic/struct-value.js +56 -49
- package/esm/basic/struct-value.js.map +1 -1
- package/esm/index.d.ts +13 -13
- package/esm/index.js +5 -5
- package/esm/struct.d.ts +130 -129
- package/esm/struct.d.ts.map +1 -1
- package/esm/struct.js +210 -208
- package/esm/struct.js.map +1 -1
- package/esm/sync-promise.d.ts +12 -12
- package/esm/sync-promise.d.ts.map +1 -1
- package/esm/sync-promise.js +70 -70
- package/esm/sync-promise.js.map +1 -1
- package/esm/types/bigint.d.ts +25 -24
- package/esm/types/bigint.d.ts.map +1 -1
- package/esm/types/bigint.js +47 -46
- package/esm/types/bigint.js.map +1 -1
- package/esm/types/buffer/base.d.ts +64 -63
- package/esm/types/buffer/base.d.ts.map +1 -1
- package/esm/types/buffer/base.js +102 -101
- package/esm/types/buffer/base.js.map +1 -1
- package/esm/types/buffer/fixed-length.d.ts +8 -7
- package/esm/types/buffer/fixed-length.d.ts.map +1 -1
- package/esm/types/buffer/fixed-length.js +6 -7
- package/esm/types/buffer/fixed-length.js.map +1 -1
- package/esm/types/buffer/index.d.ts +3 -3
- package/esm/types/buffer/index.js +3 -3
- package/esm/types/buffer/variable-length.d.ts +44 -42
- package/esm/types/buffer/variable-length.d.ts.map +1 -1
- package/esm/types/buffer/variable-length.js +75 -75
- package/esm/types/buffer/variable-length.js.map +1 -1
- package/esm/types/index.d.ts +3 -3
- package/esm/types/index.js +3 -3
- package/esm/types/number.d.ts +27 -32
- package/esm/types/number.d.ts.map +1 -1
- package/esm/types/number.js +113 -64
- package/esm/types/number.js.map +1 -1
- package/esm/utils.d.ts +47 -47
- package/esm/utils.d.ts.map +1 -1
- package/esm/utils.js +15 -22
- package/esm/utils.js.map +1 -1
- package/package.json +13 -9
- package/src/basic/definition.ts +10 -7
- package/src/basic/field-value.ts +15 -12
- package/src/basic/index.ts +5 -5
- package/src/basic/struct-value.ts +16 -10
- package/src/index.ts +5 -5
- package/src/struct.ts +205 -200
- package/src/sync-promise.ts +32 -12
- package/src/types/bigint.ts +56 -30
- package/src/types/buffer/base.ts +54 -36
- package/src/types/buffer/fixed-length.ts +5 -9
- package/src/types/buffer/variable-length.ts +38 -24
- package/src/types/number.ts +128 -77
- package/src/utils.ts +30 -8
- package/tsconfig.build.json +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
package/src/types/number.ts
CHANGED
|
@@ -1,71 +1,124 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type {
|
|
2
|
+
StructAsyncDeserializeStream,
|
|
3
|
+
StructDeserializeStream,
|
|
4
|
+
StructOptions,
|
|
5
|
+
StructValue,
|
|
6
|
+
} from "../basic/index.js";
|
|
7
|
+
import { StructFieldDefinition, StructFieldValue } from "../basic/index.js";
|
|
2
8
|
import { SyncPromise } from "../sync-promise.js";
|
|
3
9
|
import type { ValueOrPromise } from "../utils.js";
|
|
4
10
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
};
|
|
17
|
-
|
|
18
|
-
export type DataViewSetters =
|
|
19
|
-
{ [TKey in keyof DataView]: TKey extends `set${string}` ? TKey : never }[keyof DataView];
|
|
20
|
-
|
|
21
|
-
export class NumberFieldType {
|
|
22
|
-
public readonly TTypeScriptType!: number;
|
|
23
|
-
|
|
24
|
-
public readonly signed: boolean;
|
|
25
|
-
|
|
26
|
-
public readonly size: number;
|
|
27
|
-
|
|
28
|
-
public readonly deserializer: NumberTypeDeserializer;
|
|
29
|
-
public readonly convertSign: (value: number) => number;
|
|
30
|
-
|
|
31
|
-
public readonly dataViewSetter: DataViewSetters;
|
|
32
|
-
|
|
33
|
-
public constructor(
|
|
34
|
-
size: number,
|
|
35
|
-
signed: boolean,
|
|
36
|
-
convertSign: (value: number) => number,
|
|
37
|
-
dataViewSetter: DataViewSetters
|
|
38
|
-
) {
|
|
39
|
-
this.size = size;
|
|
40
|
-
this.signed = signed;
|
|
41
|
-
this.deserializer = DESERIALIZERS[size]!;
|
|
42
|
-
this.convertSign = convertSign;
|
|
43
|
-
this.dataViewSetter = dataViewSetter;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
public static readonly Int8 = new NumberFieldType(1, true, value => value << 24 >> 24, 'setInt8');
|
|
47
|
-
|
|
48
|
-
public static readonly Uint8 = new NumberFieldType(1, false, value => value, 'setUint8');
|
|
49
|
-
|
|
50
|
-
public static readonly Int16 = new NumberFieldType(2, true, value => value << 16 >> 16, 'setInt16');
|
|
51
|
-
|
|
52
|
-
public static readonly Uint16 = new NumberFieldType(2, false, value => value, 'setUint16');
|
|
53
|
-
|
|
54
|
-
public static readonly Int32 = new NumberFieldType(4, true, value => value, 'setInt32');
|
|
11
|
+
export interface NumberFieldType {
|
|
12
|
+
signed: boolean;
|
|
13
|
+
size: number;
|
|
14
|
+
deserialize(array: Uint8Array, littleEndian: boolean): number;
|
|
15
|
+
serialize(
|
|
16
|
+
dataView: DataView,
|
|
17
|
+
offset: number,
|
|
18
|
+
value: number,
|
|
19
|
+
littleEndian: boolean
|
|
20
|
+
): void;
|
|
21
|
+
}
|
|
55
22
|
|
|
56
|
-
|
|
23
|
+
// eslint-disable-next-line @typescript-eslint/no-namespace
|
|
24
|
+
export namespace NumberFieldType {
|
|
25
|
+
export const Uint8: NumberFieldType = {
|
|
26
|
+
signed: false,
|
|
27
|
+
size: 1,
|
|
28
|
+
deserialize(array) {
|
|
29
|
+
return array[0]!;
|
|
30
|
+
},
|
|
31
|
+
serialize(dataView, offset, value) {
|
|
32
|
+
dataView.setUint8(offset, value);
|
|
33
|
+
},
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
export const Int8: NumberFieldType = {
|
|
37
|
+
signed: true,
|
|
38
|
+
size: 1,
|
|
39
|
+
deserialize(array) {
|
|
40
|
+
const value = Uint8.deserialize(array, false);
|
|
41
|
+
return (value << 24) >> 24;
|
|
42
|
+
},
|
|
43
|
+
serialize(dataView, offset, value) {
|
|
44
|
+
dataView.setInt8(offset, value);
|
|
45
|
+
},
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
export const Uint16: NumberFieldType = {
|
|
49
|
+
signed: false,
|
|
50
|
+
size: 2,
|
|
51
|
+
deserialize(array, littleEndian) {
|
|
52
|
+
// PERF: Chrome's `DataView#getUint16` uses inefficient operations,
|
|
53
|
+
// including branching, bit extending and 32-bit bit swapping.
|
|
54
|
+
// The best way should use 16-bit bit rotation and conditional move,
|
|
55
|
+
// like LLVM does for code similar to the below one.
|
|
56
|
+
// This code is much faster on V8, but the actual generated assembly is unknown.
|
|
57
|
+
return (
|
|
58
|
+
(((array[1]! << 8) | array[0]!) * (littleEndian as any)) |
|
|
59
|
+
(((array[0]! << 8) | array[1]!) * (!littleEndian as any))
|
|
60
|
+
);
|
|
61
|
+
},
|
|
62
|
+
serialize(dataView, offset, value, littleEndian) {
|
|
63
|
+
dataView.setUint16(offset, value, littleEndian);
|
|
64
|
+
},
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
export const Int16: NumberFieldType = {
|
|
68
|
+
signed: true,
|
|
69
|
+
size: 2,
|
|
70
|
+
deserialize(array, littleEndian) {
|
|
71
|
+
const value = Uint16.deserialize(array, littleEndian);
|
|
72
|
+
return (value << 16) >> 16;
|
|
73
|
+
},
|
|
74
|
+
serialize(dataView, offset, value, littleEndian) {
|
|
75
|
+
dataView.setInt16(offset, value, littleEndian);
|
|
76
|
+
},
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
export const Uint32: NumberFieldType = {
|
|
80
|
+
signed: false,
|
|
81
|
+
size: 4,
|
|
82
|
+
deserialize(array, littleEndian) {
|
|
83
|
+
const value = Int32.deserialize(array, littleEndian);
|
|
84
|
+
return value >>> 0;
|
|
85
|
+
},
|
|
86
|
+
serialize(dataView, offset, value, littleEndian) {
|
|
87
|
+
dataView.setUint32(offset, value, littleEndian);
|
|
88
|
+
},
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
export const Int32: NumberFieldType = {
|
|
92
|
+
signed: true,
|
|
93
|
+
size: 4,
|
|
94
|
+
deserialize(array, littleEndian) {
|
|
95
|
+
return (
|
|
96
|
+
(((array[3]! << 24) |
|
|
97
|
+
(array[2]! << 16) |
|
|
98
|
+
(array[1]! << 8) |
|
|
99
|
+
array[0]!) *
|
|
100
|
+
(littleEndian as any)) |
|
|
101
|
+
(((array[0]! << 24) |
|
|
102
|
+
(array[1]! << 16) |
|
|
103
|
+
(array[2]! << 8) |
|
|
104
|
+
array[3]!) *
|
|
105
|
+
(!littleEndian as any))
|
|
106
|
+
);
|
|
107
|
+
},
|
|
108
|
+
serialize(dataView, offset, value, littleEndian) {
|
|
109
|
+
dataView.setInt32(offset, value, littleEndian);
|
|
110
|
+
},
|
|
111
|
+
};
|
|
57
112
|
}
|
|
58
113
|
|
|
59
114
|
export class NumberFieldDefinition<
|
|
60
115
|
TType extends NumberFieldType = NumberFieldType,
|
|
61
|
-
TTypeScriptType =
|
|
62
|
-
|
|
63
|
-
void,
|
|
64
|
-
TTypeScriptType
|
|
65
|
-
> {
|
|
116
|
+
TTypeScriptType = number
|
|
117
|
+
> extends StructFieldDefinition<void, TTypeScriptType> {
|
|
66
118
|
public readonly type: TType;
|
|
67
119
|
|
|
68
|
-
public constructor(type: TType,
|
|
120
|
+
public constructor(type: TType, typescriptType?: TTypeScriptType) {
|
|
121
|
+
void typescriptType;
|
|
69
122
|
super();
|
|
70
123
|
this.type = type;
|
|
71
124
|
}
|
|
@@ -77,7 +130,7 @@ export class NumberFieldDefinition<
|
|
|
77
130
|
public create(
|
|
78
131
|
options: Readonly<StructOptions>,
|
|
79
132
|
struct: StructValue,
|
|
80
|
-
value: TTypeScriptType
|
|
133
|
+
value: TTypeScriptType
|
|
81
134
|
): NumberFieldValue<this> {
|
|
82
135
|
return new NumberFieldValue(this, options, struct, value);
|
|
83
136
|
}
|
|
@@ -85,26 +138,26 @@ export class NumberFieldDefinition<
|
|
|
85
138
|
public override deserialize(
|
|
86
139
|
options: Readonly<StructOptions>,
|
|
87
140
|
stream: StructDeserializeStream,
|
|
88
|
-
struct: StructValue
|
|
141
|
+
struct: StructValue
|
|
89
142
|
): NumberFieldValue<this>;
|
|
90
143
|
public override deserialize(
|
|
91
144
|
options: Readonly<StructOptions>,
|
|
92
145
|
stream: StructAsyncDeserializeStream,
|
|
93
|
-
struct: StructValue
|
|
146
|
+
struct: StructValue
|
|
94
147
|
): Promise<NumberFieldValue<this>>;
|
|
95
148
|
public override deserialize(
|
|
96
149
|
options: Readonly<StructOptions>,
|
|
97
150
|
stream: StructDeserializeStream | StructAsyncDeserializeStream,
|
|
98
|
-
struct: StructValue
|
|
151
|
+
struct: StructValue
|
|
99
152
|
): ValueOrPromise<NumberFieldValue<this>> {
|
|
100
|
-
return SyncPromise
|
|
101
|
-
.
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
153
|
+
return SyncPromise.try(() => {
|
|
154
|
+
return stream.read(this.getSize());
|
|
155
|
+
})
|
|
156
|
+
.then((array) => {
|
|
157
|
+
const value = this.type.deserialize(
|
|
158
|
+
array,
|
|
159
|
+
options.littleEndian
|
|
160
|
+
);
|
|
108
161
|
return this.create(options, struct, value as any);
|
|
109
162
|
})
|
|
110
163
|
.valueOrPromise();
|
|
@@ -112,15 +165,13 @@ export class NumberFieldDefinition<
|
|
|
112
165
|
}
|
|
113
166
|
|
|
114
167
|
export class NumberFieldValue<
|
|
115
|
-
TDefinition extends NumberFieldDefinition<NumberFieldType, any
|
|
116
|
-
|
|
168
|
+
TDefinition extends NumberFieldDefinition<NumberFieldType, any>
|
|
169
|
+
> extends StructFieldValue<TDefinition> {
|
|
117
170
|
public serialize(dataView: DataView, offset: number): void {
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
// and that is, `never`
|
|
121
|
-
(dataView[this.definition.type.dataViewSetter] as any)(
|
|
171
|
+
this.definition.type.serialize(
|
|
172
|
+
dataView,
|
|
122
173
|
offset,
|
|
123
|
-
this.value
|
|
174
|
+
this.value,
|
|
124
175
|
this.options.littleEndian
|
|
125
176
|
);
|
|
126
177
|
}
|
package/src/utils.ts
CHANGED
|
@@ -25,19 +25,24 @@ export type Evaluate<T> = T extends infer U ? { [K in keyof U]: U[K] } : never;
|
|
|
25
25
|
/**
|
|
26
26
|
* Overwrite fields in `TBase` with fields in `TNew`
|
|
27
27
|
*/
|
|
28
|
-
export type Overwrite<TBase extends object, TNew extends object> =
|
|
29
|
-
|
|
28
|
+
export type Overwrite<TBase extends object, TNew extends object> = Evaluate<
|
|
29
|
+
Omit<TBase, keyof TNew> & TNew
|
|
30
|
+
>;
|
|
30
31
|
|
|
31
32
|
/**
|
|
32
33
|
* Remove fields with `never` type
|
|
33
34
|
*/
|
|
34
|
-
export type OmitNever<T> = Pick<
|
|
35
|
+
export type OmitNever<T> = Pick<
|
|
36
|
+
T,
|
|
37
|
+
{ [K in keyof T]: [T[K]] extends [never] ? never : K }[keyof T]
|
|
38
|
+
>;
|
|
35
39
|
|
|
36
40
|
/**
|
|
37
41
|
* Extract keys of fields in `T` that has type `TValue`
|
|
38
42
|
*/
|
|
39
|
-
export type KeysOfType<T, TValue> =
|
|
40
|
-
|
|
43
|
+
export type KeysOfType<T, TValue> = {
|
|
44
|
+
[TKey in keyof T]: T[TKey] extends TValue ? TKey : never;
|
|
45
|
+
}[keyof T];
|
|
41
46
|
|
|
42
47
|
export type ValueOrPromise<T> = T | PromiseLike<T>;
|
|
43
48
|
|
|
@@ -50,15 +55,32 @@ export function placeholder<T>(): T {
|
|
|
50
55
|
|
|
51
56
|
// This library can't use `@types/node` or `lib: dom`
|
|
52
57
|
// because they will pollute the global scope
|
|
53
|
-
// So `TextEncoder` and `TextDecoder` are not available
|
|
58
|
+
// So `TextEncoder` and `TextDecoder` types are not available
|
|
54
59
|
|
|
55
60
|
// Node.js 8.3 ships `TextEncoder` and `TextDecoder` in `util` module.
|
|
56
61
|
// But using top level await to load them requires Node.js 14.1.
|
|
57
62
|
// So there is no point to do that. Let's just assume they exist in global.
|
|
58
63
|
|
|
59
|
-
|
|
64
|
+
declare class TextEncoderType {
|
|
65
|
+
constructor();
|
|
66
|
+
|
|
67
|
+
encode(input: string): Uint8Array;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
declare class TextDecoderType {
|
|
71
|
+
constructor();
|
|
72
|
+
|
|
73
|
+
decode(buffer: ArrayBufferView | ArrayBuffer): string;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
interface GlobalExtension {
|
|
77
|
+
TextEncoder: typeof TextEncoderType;
|
|
78
|
+
TextDecoder: typeof TextDecoderType;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
const { TextEncoder, TextDecoder } = globalThis as unknown as GlobalExtension;
|
|
82
|
+
|
|
60
83
|
const Utf8Encoder = new TextEncoder();
|
|
61
|
-
// @ts-expect-error
|
|
62
84
|
const Utf8Decoder = new TextDecoder();
|
|
63
85
|
|
|
64
86
|
export function encodeUtf8(input: string): Uint8Array {
|
package/tsconfig.build.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es5.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2016.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.esnext.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@4.7.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.4.0/node_modules/tslib/tslib.d.ts","./src/utils.ts","./src/basic/stream.ts","./src/basic/options.ts","./src/basic/struct-value.ts","./src/basic/field-value.ts","./src/basic/definition.ts","./src/basic/index.ts","./src/sync-promise.ts","../dataview-bigint-polyfill/esm/fallback.d.ts","./src/types/bigint.ts","./src/types/buffer/base.ts","./src/types/buffer/fixed-length.ts","./src/types/buffer/variable-length.ts","./src/types/buffer/index.ts","./src/types/number.ts","./src/types/index.ts","./src/struct.ts","./src/index.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","impliedFormat":1},{"version":"7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","impliedFormat":1},{"version":"8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","impliedFormat":1},{"version":"5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","impliedFormat":1},{"version":"e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","impliedFormat":1},{"version":"1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","impliedFormat":1},{"version":"746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","impliedFormat":1},{"version":"3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","impliedFormat":1},{"version":"aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c","impliedFormat":1},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true,"impliedFormat":1},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true,"impliedFormat":1},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true,"impliedFormat":1},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true,"impliedFormat":1},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true,"impliedFormat":1},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true,"impliedFormat":1},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true,"impliedFormat":1},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true,"impliedFormat":1},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true,"impliedFormat":1},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true,"impliedFormat":1},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true,"impliedFormat":1},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true,"impliedFormat":1},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true,"impliedFormat":1},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true,"impliedFormat":1},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true,"impliedFormat":1},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true,"impliedFormat":1},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true,"impliedFormat":1},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true,"impliedFormat":1},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true,"impliedFormat":1},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true,"impliedFormat":1},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true,"impliedFormat":1},{"version":"14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","impliedFormat":1},{"version":"84ae1da8fdb0a3c1a41fc3a1322855ffe63ced25d6b7a7626c7edb2e489bc926","signature":"9a367dbb975a485bc8f9f1aaf6dba2cd760657b167deff50e804989dda198521","impliedFormat":99},{"version":"2969f979cd4199c23884419169eca44d60afce9186f873f4e967e65bbdc2527e","signature":"b6e1d6be772cfd1f39b0fda2c5c93fbe01a226b23fa730926ed2d41db265680c","impliedFormat":99},{"version":"6827c0ba1bb152cd1a57c960babfdbfbd9bb8d6f2eff37c7b3567df511f707ac","signature":"40dd8fe07897a8ccb48ef6c2c1edfb352578cff37a6f9214771c581bdead4cc3","impliedFormat":99},{"version":"96f12f5af15656fbf0675cc429d7b6d58c8136d875f220519e5862e3f85400b1","signature":"1ecaa5a622c5692b35d88f170c636176c1951da34a2a7044f06ebf7d3cb74b64","impliedFormat":99},{"version":"67329a7bd86dbf2a1923ed2a130c176b412ba510589e2a33140b55b2651393d6","signature":"9a4ba630486c74e44ae747605622601d833afe65ccfff926640d9833245014ad","impliedFormat":99},{"version":"c2540ffc3cae06077ae60702e518e55e73534d11071f6483c650635d55239125","signature":"dd3bdf2b338a202726b240df8fcd9b169c4079072e7b9366e2a8ea62ef3226f5","impliedFormat":99},{"version":"fc2e47bddc5026267c39730648cbaa21105facf3731d044da086b0689ebb8b98","signature":"e838e92ee2b6d439178edac035a6661a136d2424d48927833752bfa151ff954f","impliedFormat":99},{"version":"0c27b21d435149d1eff5204b60df9be67d36be7520382fd4454712d47d5d0eba","signature":"dbff4204e72de7f717ea4165e39cf1c53a62568e2ff3df4d33d64fc01388d444","impliedFormat":99},{"version":"ea9a35cd9e4fc405c1e35f2ab6d2219205cc1d0a99338af5d462472ebcfbd855","impliedFormat":99},{"version":"814079c4435096c2a85d4e0fb9dbb556ad83210674afb9cbee82ab3a11d3fe85","signature":"d6e68df6272a5709eeae6be6fbd3aeb8078ffec2de47aab5c480402c09b65392","impliedFormat":99},{"version":"c8b32bb1a0e858b6852442e716c67e17a4d9d68d221a5aedb03d7151c0d43a00","signature":"6e59c001bc2ae860ce79d5abc859e8c9d60a4eb78bdfc13afad0a29cfdc1f3ce","impliedFormat":99},{"version":"6eee7b7361bffc8813c25534135f1bc6c0e59e6a19f8480a651026c4f9f6573f","signature":"01dcb3b2c75958a86a3c7edb7e36264dfb4c0283efe3379f8b88394d108c0fba","impliedFormat":99},{"version":"6eaf751d5cf1ec30941d84d75c58ee4cf74a231e6c39d91273ebd1363aa92c94","signature":"22474d3439161edb74e5e264bbddbeb0fd22721d02f779868d05aa6ae5ab8d12","impliedFormat":99},{"version":"5ea1325a998e722fffc89ff8c2d00eaf35e491f3fada16fb56c6360f63d16d79","signature":"02ca393ed379c3ac738e90a5be95e148ebf23aab5271b6a9df3c5626939b59f7","impliedFormat":99},{"version":"040db99c956e4a5c27c028d5e498f5ca650f66fcde2a122efcdef8f1b6baeb5e","signature":"88df10c66dd34f022467ea4ad515cf672942f328ee4d8d254a3c1021116ec1df","impliedFormat":99},{"version":"e24d67437856c921a9a40f7fbac38ac576439e6616eb698fb769279ecbc7802a","signature":"832c9c8fdcdcdc2f87d22997be7ab5d2a585fbc2d65e18deff0d19e5f1d91f7c","impliedFormat":99},{"version":"a7b8eefad38f5a6cedad80bdf57fb48e5ec9218ac7dd9d90e4e19a00272d78e1","signature":"ec337f65c1402596667f406cf4b26760aaf38863e8941675eff2a4950b027c2a","impliedFormat":99},{"version":"5aa8aa37aaa4023f13a2b0a9bbd17a93b4a14bd10034db59ff0c74a22311279b","signature":"34a143ee98281f548a93d76812182e6bd28efde9e79494e771d28149f852c709","affectsGlobalScope":true,"impliedFormat":99}],"options":{"composite":true,"declaration":true,"declarationDir":"./esm","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"importHelpers":true,"importsNotUsedAsValues":2,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"outDir":"./esm","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":9},"fileIdsList":[[53,55,56,57,58],[53,56,57,59],[53,55,56,57,58,59],[53],[53,54],[53,58],[53,54,60,69,70],[53,54,60,61,69],[53,54,60,61,62],[53,54,60,61],[53,64],[53,64,65,66],[53,54,60,64],[53,63,67,68],[55,56,57,58],[56,57,59],[55,56,57,58,59],[54],[58],[54,60,69,70],[54,60,69],[60],[64],[64,65,66],[54,60,64],[63,67,68]],"referencedMap":[[59,1],[58,2],[60,3],[56,4],[55,5],[57,6],[71,7],[70,8],[61,4],[63,9],[64,10],[65,11],[67,12],[66,13],[69,14],[68,10],[54,4]],"exportedModulesMap":[[59,15],[58,16],[60,17],[55,18],[57,19],[71,20],[70,21],[63,22],[64,22],[65,23],[67,24],[66,25],[69,26],[68,22]],"semanticDiagnosticsPerFile":[53,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,36,41,42,37,38,39,40,8,46,43,44,45,47,9,48,49,50,51,1,10,52,62,59,58,60,56,55,57,71,70,61,63,64,65,67,66,69,68,54]},"version":"4.7.4"}
|
|
1
|
+
{"program":{"fileNames":["../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2023.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.esnext.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../common/temp/node_modules/.pnpm/typescript@5.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../common/temp/node_modules/.pnpm/tslib@2.5.0/node_modules/tslib/tslib.d.ts","./src/basic/options.ts","./src/basic/struct-value.ts","./src/basic/field-value.ts","./src/utils.ts","./src/basic/stream.ts","./src/basic/definition.ts","./src/basic/index.ts","./src/sync-promise.ts","../dataview-bigint-polyfill/esm/fallback.d.ts","./src/types/bigint.ts","./src/types/buffer/base.ts","./src/types/buffer/fixed-length.ts","./src/types/buffer/variable-length.ts","./src/types/buffer/index.ts","./src/types/number.ts","./src/types/index.ts","./src/struct.ts","./src/index.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"f4e736d6c8d69ae5b3ab0ddfcaa3dc365c3e76909d6660af5b4e979b3934ac20","impliedFormat":1},{"version":"eeeb3aca31fbadef8b82502484499dfd1757204799a6f5b33116201c810676ec","impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c92f2c27b06c1a41b88f6db8299205aee52c2a2943f7ed29bd585977f254e8","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7feb7967c6c6003e11f49efa8f5de989484e0a6ba2e5a6c41b55f8b8bd85dba","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"b9ea5778ff8b50d7c04c9890170db34c26a5358cccba36844fe319f50a43a61a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true,"impliedFormat":1},{"version":"25de46552b782d43cb7284df22fe2a265de387cf0248b747a7a1b647d81861f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1c9fe42b65437a61104e601eb298c5c859fb522b483f1bdb700eed67a16f980","impliedFormat":1},{"version":"6827c0ba1bb152cd1a57c960babfdbfbd9bb8d6f2eff37c7b3567df511f707ac","signature":"7ceac7d7800ef7065908464aba0a009e9a03ff95f177a44f999687bdf10d039f","impliedFormat":99},{"version":"0faea90f52dbfe70506b89beaa77b634c362ba5a729871d8e212229614f2a663","signature":"6043ab81faab77b975cb2a8457cc28c3b6f90a766cbbd27914da686bc41c83a0","impliedFormat":99},{"version":"10c4d9b9b11d43e0a9211b48d74670331328af74eb13df9434c47375af9e0564","signature":"613051be0c04c0fadf883f5ec01dcb0a4639ac92d9e2c12a222680c91b374595","impliedFormat":99},{"version":"892a41f637a1eca6b1716efbd8f2a3f1b4429cfde365ef3206185169d5175c6d","signature":"a740a1e2d889fc4344fbb49a7f8b02ee664850be5cdcf029ace8ceb4316623db","impliedFormat":99},{"version":"2969f979cd4199c23884419169eca44d60afce9186f873f4e967e65bbdc2527e","signature":"12f034074aafde1bb145598fb874ae56b0b53a1c3ed0434a5d3ea8eb03c62b72","impliedFormat":99},{"version":"37ce5ae5b994e8fd4c5aa9de4b3eed9c96b24fd4e04113f8e53d2c3b7029978c","signature":"cc1d94a37d0dde4d5a85a35aa9133abdb9696987960116e29140c08ebdcdd869","impliedFormat":99},{"version":"5af3b8b1a9063e033fc1e32a3e95956f5f5e22548d5ccca628b1ab87e42087d1","impliedFormat":99},{"version":"8d53ec5eab883f7e39ec64dcaa74f263781edb9877bb69ed7f13885954f67428","signature":"15cc3dd9a039f8ba1628d1e27cdf4b45582fc387a4241ebb65eff1786b89f522","impliedFormat":99},{"version":"135245a0c940a2c51b6c291eda3b51298a43c8ebb5c8f52adc8875b8f19cb898","impliedFormat":99},{"version":"747b2207ca934da0a8d1c90beb105d4fb10593dbe8894372152b57ac46d9e6e2","signature":"152e4cab74b292a4de587e604c6133bab4525f0de7b32dfaf4a211de799ef262","impliedFormat":99},{"version":"1f4f22294213ac50c7292e33c444c43b47e585281be9783d10b99f5efaee4730","signature":"1b1e7a0b9362425c6be672b9fcf1fb2763df4e959ce840c9fdce190eeb8905ba","impliedFormat":99},{"version":"fbe980f55387478b0acb134c2679ab446342cbd7446b2b8161a86b1f2982e6b2","signature":"4e74287ad61c1544e88339e78a4da19cb79c729be8799b8cd190353368532e30","impliedFormat":99},{"version":"8cf8d84d1e388c17883e1e1a23930afabc27f4d46835c4f351b88f903eb4e221","signature":"21a136c72551be7c24d797d4fa1401d35ee62325bec7442a6869cea50a50ad7a","impliedFormat":99},{"version":"5ea1325a998e722fffc89ff8c2d00eaf35e491f3fada16fb56c6360f63d16d79","impliedFormat":99},{"version":"158bbed689d3ac1c39dda7afd9f94993157dd07551729805b191422a5afc2e89","signature":"c4b01fc816c556f2479d264535644a9a4ba578e241027c21b2a2229b7647887e","impliedFormat":99},{"version":"e24d67437856c921a9a40f7fbac38ac576439e6616eb698fb769279ecbc7802a","impliedFormat":99},{"version":"c6037e63de131905e0c593e931b48732e126100eb84d4b48fb496f222d1f9ef9","signature":"c87cd07810cf18ff00240875c8e7b3249bb5e1dd15418193d27265586ba69179","impliedFormat":99},{"version":"024b88f42c3710684b8176eae19b7556ed437cafeebf43eb31552589f7651ef7","signature":"b338c41818e59749b93f43406018eaa613a8ced869ad63873f2cea90643af5a1","affectsGlobalScope":true,"impliedFormat":99}],"root":[[61,68],[70,78]],"options":{"composite":true,"declaration":true,"declarationDir":"./esm","declarationMap":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"importHelpers":true,"module":199,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"outDir":"./esm","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":9},"fileIdsList":[[60,61,62,63,65],[60,61,62,66],[60,61,62,63,65,66],[60],[60,64],[60,63],[60,64,67,76,77],[60,64,67,68,76],[60,64,67,68,69],[60,64,67,68],[60,71],[60,71,72,73],[60,64,67,71],[60,70,74,75],[61,62,63,65],[61,62,66],[64],[63],[64,67,76,77],[64,67,76],[67],[71],[64,67,71]],"referencedMap":[[66,1],[63,2],[67,3],[61,4],[65,5],[62,6],[78,7],[77,8],[68,4],[70,9],[71,10],[72,11],[74,12],[73,13],[76,14],[75,10],[64,4]],"exportedModulesMap":[[66,15],[63,16],[67,3],[65,17],[62,18],[78,19],[77,20],[70,21],[71,21],[72,22],[74,12],[73,23],[76,14],[75,21]],"semanticDiagnosticsPerFile":[60,58,59,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,55,53,54,56,10,1,11,57,69,66,63,67,61,65,62,78,77,68,70,71,72,74,73,76,75,64],"latestChangedDtsFile":"./esm/struct.d.ts"},"version":"5.0.3"}
|