porffor 0.37.19 → 0.37.20
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.
@@ -1,38 +1,6 @@
|
|
1
1
|
const underlyingKeys: any[] = new Array(0);
|
2
2
|
const underlyingVals: any[] = new Array(0);
|
3
|
-
export const
|
4
|
-
const t: i32 = Porffor.rawType(obj);
|
5
|
-
if (t == Porffor.TYPES.object) return obj;
|
6
|
-
|
7
|
-
if (Porffor.fastAnd(t > 0x05, t != Porffor.TYPES.string, t != Porffor.TYPES.bytestring, t != Porffor.TYPES.undefined)) {
|
8
|
-
let idx: i32 = underlyingKeys.indexOf(obj);
|
9
|
-
if (idx == -1) {
|
10
|
-
const underlying: object = {};
|
11
|
-
|
12
|
-
if (t == Porffor.TYPES.function) {
|
13
|
-
const flags: i32 = __Porffor_funcLut_flags(obj);
|
14
|
-
if (flags & 0b10) { // constructor
|
15
|
-
// set prototype and prototype.constructor if function and constructor
|
16
|
-
const proto = {};
|
17
|
-
const key1: bytestring = 'prototype';
|
18
|
-
__Porffor_object_expr_initWithFlags(underlying, key1, proto, 0b1000);
|
19
|
-
|
20
|
-
const key2: bytestring = 'constructor';
|
21
|
-
__Porffor_object_expr_initWithFlags(proto, key2, obj, 0b1010);
|
22
|
-
}
|
23
|
-
}
|
24
|
-
|
25
|
-
Porffor.array.fastPush(underlyingVals, underlying);
|
26
|
-
idx = Porffor.array.fastPush(underlyingKeys, obj) - 1;
|
27
|
-
}
|
28
|
-
|
29
|
-
return underlyingVals[idx];
|
30
|
-
}
|
31
|
-
|
32
|
-
return obj;
|
33
|
-
};
|
34
|
-
|
35
|
-
export const __Porffor_object_makeObject = (obj: any): any => {
|
3
|
+
export const __Porffor_object_underlying = (obj: any): any => {
|
36
4
|
const t: i32 = Porffor.rawType(obj);
|
37
5
|
if (t == Porffor.TYPES.object) return obj;
|
38
6
|
|
@@ -18,7 +18,7 @@ import type {} from './porffor.d.ts';
|
|
18
18
|
|
19
19
|
export const __Porffor_object_preventExtensions = (obj: any): void => {
|
20
20
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) {
|
21
|
-
obj =
|
21
|
+
obj = __Porffor_object_underlying(obj);
|
22
22
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) return;
|
23
23
|
}
|
24
24
|
|
@@ -29,7 +29,7 @@ export const __Porffor_object_preventExtensions = (obj: any): void => {
|
|
29
29
|
|
30
30
|
export const __Porffor_object_isInextensible = (obj: any): boolean => {
|
31
31
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) {
|
32
|
-
obj =
|
32
|
+
obj = __Porffor_object_underlying(obj);
|
33
33
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) return false;
|
34
34
|
}
|
35
35
|
|
@@ -40,7 +40,7 @@ export const __Porffor_object_isInextensible = (obj: any): boolean => {
|
|
40
40
|
|
41
41
|
export const __Porffor_object_overrideAllFlags = (obj: any, overrideOr: i32, overrideAnd: i32): void => {
|
42
42
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) {
|
43
|
-
obj =
|
43
|
+
obj = __Porffor_object_underlying(obj);
|
44
44
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) return;
|
45
45
|
}
|
46
46
|
|
@@ -58,7 +58,7 @@ export const __Porffor_object_overrideAllFlags = (obj: any, overrideOr: i32, ove
|
|
58
58
|
|
59
59
|
export const __Porffor_object_checkAllFlags = (obj: any, dataAnd: i32, accessorAnd: i32, dataExpected: i32, accessorExpected: i32): boolean => {
|
60
60
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) {
|
61
|
-
obj =
|
61
|
+
obj = __Porffor_object_underlying(obj);
|
62
62
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) return false;
|
63
63
|
}
|
64
64
|
|
@@ -124,7 +124,7 @@ export const __Porffor_object_accessorSet = (entryPtr: i32): Function => {
|
|
124
124
|
export const __Porffor_object_lookup = (obj: any, target: any): i32 => {
|
125
125
|
if (Porffor.wasm`local.get ${obj}` == 0) return -1;
|
126
126
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) {
|
127
|
-
obj =
|
127
|
+
obj = __Porffor_object_underlying(obj);
|
128
128
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) return -1;
|
129
129
|
}
|
130
130
|
|
@@ -195,7 +195,7 @@ return`;
|
|
195
195
|
}
|
196
196
|
}
|
197
197
|
|
198
|
-
if (trueType != Porffor.TYPES.object) obj =
|
198
|
+
if (trueType != Porffor.TYPES.object) obj = __Porffor_object_underlying(obj);
|
199
199
|
|
200
200
|
if (Porffor.wasm`local.get ${obj}` == 0) throw new TypeError('Cannot get property of null');
|
201
201
|
|
@@ -291,7 +291,7 @@ export const __Porffor_object_writeKey = (ptr: i32, key: any): void => {
|
|
291
291
|
|
292
292
|
export const __Porffor_object_set = (obj: any, key: any, value: any): any => {
|
293
293
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) {
|
294
|
-
obj =
|
294
|
+
obj = __Porffor_object_underlying(obj);
|
295
295
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) return value;
|
296
296
|
}
|
297
297
|
|
@@ -379,7 +379,7 @@ export const __Porffor_object_setStrict = (obj: any, key: any, value: any): any
|
|
379
379
|
if (Porffor.wasm`local.get ${obj}` == 0) throw new TypeError('Cannot set property of null');
|
380
380
|
|
381
381
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) {
|
382
|
-
obj =
|
382
|
+
obj = __Porffor_object_underlying(obj);
|
383
383
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) return value;
|
384
384
|
}
|
385
385
|
|
@@ -463,7 +463,7 @@ export const __Porffor_object_setStrict = (obj: any, key: any, value: any): any
|
|
463
463
|
|
464
464
|
export const __Porffor_object_define = (obj: any, key: any, value: any, flags: i32): void => {
|
465
465
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) {
|
466
|
-
obj =
|
466
|
+
obj = __Porffor_object_underlying(obj);
|
467
467
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) return;
|
468
468
|
}
|
469
469
|
|
@@ -549,7 +549,7 @@ export const __Porffor_object_delete = (obj: any, key: any): boolean => {
|
|
549
549
|
}
|
550
550
|
}
|
551
551
|
|
552
|
-
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj =
|
552
|
+
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_underlying(obj);
|
553
553
|
if (Porffor.rawType(obj) != Porffor.TYPES.object) {
|
554
554
|
// todo: support non-pure objects
|
555
555
|
return true;
|
@@ -614,7 +614,7 @@ export const __Porffor_object_deleteStrict = (obj: any, key: any): boolean => {
|
|
614
614
|
}
|
615
615
|
}
|
616
616
|
|
617
|
-
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj =
|
617
|
+
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_underlying(obj);
|
618
618
|
if (Porffor.rawType(obj) != Porffor.TYPES.object) {
|
619
619
|
// todo: support non-pure objects
|
620
620
|
return true;
|
@@ -701,7 +701,7 @@ export const __Porffor_object_isObjectOrSymbol = (arg: any): boolean => {
|
|
701
701
|
|
702
702
|
// used for { foo: 5 }
|
703
703
|
export const __Porffor_object_expr_init = (obj: any, key: any, value: any): void => {
|
704
|
-
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj =
|
704
|
+
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_underlying(obj);
|
705
705
|
let entryPtr: i32 = __Porffor_object_lookup(obj, key);
|
706
706
|
if (entryPtr == -1) {
|
707
707
|
// add new entry
|
@@ -726,7 +726,7 @@ export const __Porffor_object_expr_init = (obj: any, key: any, value: any): void
|
|
726
726
|
};
|
727
727
|
|
728
728
|
export const __Porffor_object_expr_initWithFlags = (obj: any, key: any, value: any, flags: i32): void => {
|
729
|
-
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj =
|
729
|
+
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_underlying(obj);
|
730
730
|
let entryPtr: i32 = __Porffor_object_lookup(obj, key);
|
731
731
|
if (entryPtr == -1) {
|
732
732
|
// add new entry
|
@@ -751,7 +751,7 @@ export const __Porffor_object_expr_initWithFlags = (obj: any, key: any, value: a
|
|
751
751
|
|
752
752
|
// used for { get foo() {} }
|
753
753
|
export const __Porffor_object_expr_get = (obj: any, key: any, get: any): void => {
|
754
|
-
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj =
|
754
|
+
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_underlying(obj);
|
755
755
|
let entryPtr: i32 = __Porffor_object_lookup(obj, key);
|
756
756
|
let set: any = undefined;
|
757
757
|
if (entryPtr == -1) {
|
@@ -781,7 +781,7 @@ export const __Porffor_object_expr_get = (obj: any, key: any, get: any): void =>
|
|
781
781
|
|
782
782
|
// used for { set foo(v) {} }
|
783
783
|
export const __Porffor_object_expr_set = (obj: any, key: any, set: any): void => {
|
784
|
-
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj =
|
784
|
+
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_underlying(obj);
|
785
785
|
let entryPtr: i32 = __Porffor_object_lookup(obj, key);
|
786
786
|
let get: any = undefined;
|
787
787
|
if (entryPtr == -1) {
|
@@ -812,7 +812,7 @@ export const __Porffor_object_expr_set = (obj: any, key: any, set: any): void =>
|
|
812
812
|
|
813
813
|
// used for { foo: 5 }
|
814
814
|
export const __Porffor_object_class_value = (obj: any, key: any, value: any): void => {
|
815
|
-
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj =
|
815
|
+
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_underlying(obj);
|
816
816
|
let entryPtr: i32 = __Porffor_object_lookup(obj, key);
|
817
817
|
if (entryPtr == -1) {
|
818
818
|
// add new entry
|
@@ -843,7 +843,7 @@ export const __Porffor_object_class_value = (obj: any, key: any, value: any): vo
|
|
843
843
|
|
844
844
|
// used for { foo() {} }
|
845
845
|
export const __Porffor_object_class_method = (obj: any, key: any, value: any): void => {
|
846
|
-
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj =
|
846
|
+
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_underlying(obj);
|
847
847
|
let entryPtr: i32 = __Porffor_object_lookup(obj, key);
|
848
848
|
if (entryPtr == -1) {
|
849
849
|
// add new entry
|
@@ -874,7 +874,7 @@ export const __Porffor_object_class_method = (obj: any, key: any, value: any): v
|
|
874
874
|
|
875
875
|
// used for { get foo() {} }
|
876
876
|
export const __Porffor_object_class_get = (obj: any, key: any, get: any): void => {
|
877
|
-
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj =
|
877
|
+
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_underlying(obj);
|
878
878
|
let entryPtr: i32 = __Porffor_object_lookup(obj, key);
|
879
879
|
let set: any = undefined;
|
880
880
|
if (entryPtr == -1) {
|
@@ -909,7 +909,7 @@ export const __Porffor_object_class_get = (obj: any, key: any, get: any): void =
|
|
909
909
|
|
910
910
|
// used for { set foo(v) {} }
|
911
911
|
export const __Porffor_object_class_set = (obj: any, key: any, set: any): void => {
|
912
|
-
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj =
|
912
|
+
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) obj = __Porffor_object_underlying(obj);
|
913
913
|
let entryPtr: i32 = __Porffor_object_lookup(obj, key);
|
914
914
|
let get: any = undefined;
|
915
915
|
if (entryPtr == -1) {
|
@@ -78,7 +78,7 @@ local.set ${key}`;
|
|
78
78
|
}
|
79
79
|
}
|
80
80
|
|
81
|
-
obj =
|
81
|
+
obj = __Porffor_object_underlying(obj);
|
82
82
|
if (Porffor.rawType(obj) == Porffor.TYPES.object) {
|
83
83
|
const objKeys: any[] = __Object_keys(obj);
|
84
84
|
for (const x of objKeys) Porffor.array.fastPush(out, x);
|
@@ -132,7 +132,7 @@ local.set ${val+1}`;
|
|
132
132
|
}
|
133
133
|
}
|
134
134
|
|
135
|
-
obj =
|
135
|
+
obj = __Porffor_object_underlying(obj);
|
136
136
|
if (Porffor.rawType(obj) == Porffor.TYPES.object) {
|
137
137
|
const objVals: any[] = __Object_values(obj);
|
138
138
|
for (const x of objVals) Porffor.array.fastPush(out, x);
|
@@ -195,7 +195,7 @@ export const __Object_prototype_hasOwnProperty = (_this: any, prop: any) => {
|
|
195
195
|
return Porffor.object.lookup(_this, p) != -1;
|
196
196
|
}
|
197
197
|
|
198
|
-
const obj: any =
|
198
|
+
const obj: any = __Porffor_object_underlying(_this);
|
199
199
|
if (Porffor.rawType(obj) == Porffor.TYPES.object) {
|
200
200
|
if (Porffor.object.lookup(obj, p) != -1) return true;
|
201
201
|
}
|
@@ -288,7 +288,7 @@ export const __Object_prototype_propertyIsEnumerable = (_this: any, prop: any) =
|
|
288
288
|
return Porffor.object.isEnumerable(entryPtr);
|
289
289
|
}
|
290
290
|
|
291
|
-
const obj: any =
|
291
|
+
const obj: any = __Porffor_object_underlying(_this);
|
292
292
|
if (Porffor.rawType(obj) == Porffor.TYPES.object) {
|
293
293
|
const entryPtr: i32 = Porffor.object.lookup(obj, p);
|
294
294
|
if (entryPtr != -1) return Porffor.object.isEnumerable(entryPtr);
|
@@ -437,7 +437,7 @@ export const __Object_getOwnPropertyDescriptors = (obj: any): any => {
|
|
437
437
|
const out: object = {};
|
438
438
|
|
439
439
|
if (Porffor.rawType(obj) != Porffor.TYPES.object) {
|
440
|
-
obj =
|
440
|
+
obj = __Porffor_object_underlying(obj);
|
441
441
|
if (Porffor.rawType(obj) != Porffor.TYPES.object) return out;
|
442
442
|
}
|
443
443
|
|
@@ -513,7 +513,7 @@ local.set ${key}`;
|
|
513
513
|
}
|
514
514
|
}
|
515
515
|
|
516
|
-
obj =
|
516
|
+
obj = __Porffor_object_underlying(obj);
|
517
517
|
if (Porffor.rawType(obj) == Porffor.TYPES.object) {
|
518
518
|
const objKeys: any[] = __Object_getOwnPropertyNames(obj);
|
519
519
|
for (const x of objKeys) Porffor.array.fastPush(out, x);
|
@@ -527,7 +527,7 @@ export const __Object_getOwnPropertySymbols = (obj: any): any[] => {
|
|
527
527
|
if (obj == null) throw new TypeError('Argument is nullish, expected object');
|
528
528
|
const out: any[] = Porffor.allocate();
|
529
529
|
|
530
|
-
obj =
|
530
|
+
obj = __Porffor_object_underlying(obj);
|
531
531
|
const t: i32 = Porffor.rawType(obj);
|
532
532
|
if (t == Porffor.TYPES.object) {
|
533
533
|
let ptr: i32 = Porffor.wasm`local.get ${obj}` + 5;
|
@@ -146,7 +146,7 @@ local.set ${key}`;
|
|
146
146
|
}
|
147
147
|
}
|
148
148
|
|
149
|
-
target =
|
149
|
+
target = __Porffor_object_underlying(target);
|
150
150
|
if (Porffor.rawType(target) == Porffor.TYPES.object) {
|
151
151
|
const objKeys: any[] = __Reflect_ownKeys(target);
|
152
152
|
for (const x of objKeys) Porffor.array.fastPush(out, x);
|
@@ -2,19 +2,12 @@
|
|
2
2
|
import { number } from './embedding.js';
|
3
3
|
|
4
4
|
export const BuiltinFuncs = function() {
|
5
|
-
this.
|
6
|
-
wasm:(_,{allocPage,glbl,builtin})=>[[32,1],[184],[34,2],[68,7],[97],[4,64],[32,0],[32,1],[15],[11],[32,2],[68,5],[100],[32,2],[68,67],[98],[113],[32,2],[68,195],[98],[113],[32,2],[68,128],[98],[113],[4,64],...glbl(35,'underlyingKeys',124),[33,4],[65,208,0],[33,5],[32,4],[32,5],[32,0],[32,1],[68,0],[65,128,1],[16,builtin('__Array_prototype_indexOf')],[33,6],[34,3],[68,-1],[97],[4,64],[16,builtin('__Porffor_allocate')],[184],[33,7],[32,2],[68,6],[97],[4,64],[32,0],[252,2],[16,builtin('__Porffor_funcLut_flags')],[183],[34,8],[68,2],[16,builtin('f64_&')],[252,3],[4,64],[16,builtin('__Porffor_allocate')],[184],[33,9],[65,7],[33,10],...number(allocPage(_,'bytestring:
|
5
|
+
this.__Porffor_object_underlying = {
|
6
|
+
wasm:(_,{allocPage,glbl,builtin})=>[[32,1],[184],[34,2],[68,7],[97],[4,64],[32,0],[32,1],[15],[11],[32,2],[68,5],[100],[32,2],[68,67],[98],[113],[32,2],[68,195],[98],[113],[32,2],[68,128],[98],[113],[4,64],...glbl(35,'underlyingKeys',124),[33,4],[65,208,0],[33,5],[32,4],[32,5],[32,0],[32,1],[68,0],[65,128,1],[16,builtin('__Array_prototype_indexOf')],[33,6],[34,3],[68,-1],[97],[4,64],[16,builtin('__Porffor_allocate')],[184],[33,7],[32,2],[68,6],[97],[4,64],[32,0],[252,2],[16,builtin('__Porffor_funcLut_flags')],[183],[34,8],[68,2],[16,builtin('f64_&')],[252,3],[4,64],[16,builtin('__Porffor_allocate')],[184],[33,9],[65,7],[33,10],...number(allocPage(_,'bytestring: __Porffor_object_underlying/key1','i8'),124),[33,11],[32,7],[252,2],[65,7],[32,11],[252,2],[65,195,1],[32,9],[32,10],[65,8],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,6],[183],[26],...number(allocPage(_,'bytestring: __Porffor_object_underlying/key2','i8'),124),[33,12],[32,9],[252,2],[32,10],[32,12],[252,2],[65,195,1],[32,0],[32,1],[65,10],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,6],[183],[26],[11],[11],...glbl(35,'underlyingVals',124),[65,208,0],[32,7],[65,7],[16,builtin('__Porffor_array_fastPush')],[33,6],[26],...glbl(35,'underlyingKeys',124),[65,208,0],[32,0],[32,1],[16,builtin('__Porffor_array_fastPush')],[33,6],[68,1],[161],[33,3],[11],...glbl(35,'underlyingVals',124),[33,13],[32,3],[34,14],[252,3],[65,9],[108],[32,13],[252,3],[106],[34,15],[43,0,4],[32,15],[45,0,12],[34,6],[15],[11],[32,0],[32,1],[15]],
|
7
7
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
8
8
|
locals:[124,124,124,127,127,124,124,124,127,124,124,124,124,127],localNames:["obj","obj#type","t","idx","#proto_target","#proto_target#type","#last_type","underlying","flags","proto","proto#type","key1","key2","#member_obj","#member_prop","#loadArray_offset"],
|
9
9
|
usedTypes:[80,7,195],
|
10
|
-
globalInits:{underlyingKeys:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingKeys','f64'),124),...glbl(36,'underlyingKeys',124),...glbl(35,'underlyingKeys',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],underlyingVals:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingVals','f64'),124),...glbl(36,'underlyingVals',124),...glbl(35,'underlyingVals',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},data:{"bytestring:
|
11
|
-
};
|
12
|
-
this.__Porffor_object_makeObject = {
|
13
|
-
wasm:(_,{allocPage,glbl,builtin})=>[[32,1],[184],[34,2],[68,7],[97],[4,64],[32,0],[32,1],[15],[11],[32,2],[68,5],[100],[32,2],[68,67],[98],[113],[32,2],[68,195],[98],[113],[32,2],[68,128],[98],[113],[4,64],...glbl(35,'underlyingKeys',124),[33,4],[65,208,0],[33,5],[32,4],[32,5],[32,0],[32,1],[68,0],[65,128,1],[16,builtin('__Array_prototype_indexOf')],[33,6],[34,3],[68,-1],[97],[4,64],[16,builtin('__Porffor_allocate')],[184],[33,7],[32,2],[68,6],[97],[4,64],[32,0],[252,2],[16,builtin('__Porffor_funcLut_flags')],[183],[34,8],[68,2],[16,builtin('f64_&')],[252,3],[4,64],[16,builtin('__Porffor_allocate')],[184],[33,9],[65,7],[33,10],...number(allocPage(_,'bytestring: __Porffor_object_makeObject/key1','i8'),124),[33,11],[32,7],[252,2],[65,7],[32,11],[252,2],[65,195,1],[32,9],[32,10],[65,8],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,6],[183],[26],...number(allocPage(_,'bytestring: __Porffor_object_makeObject/key2','i8'),124),[33,12],[32,9],[252,2],[32,10],[32,12],[252,2],[65,195,1],[32,0],[32,1],[65,10],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,6],[183],[26],[11],[11],...glbl(35,'underlyingVals',124),[65,208,0],[32,7],[65,7],[16,builtin('__Porffor_array_fastPush')],[33,6],[26],...glbl(35,'underlyingKeys',124),[65,208,0],[32,0],[32,1],[16,builtin('__Porffor_array_fastPush')],[33,6],[68,1],[161],[33,3],[11],...glbl(35,'underlyingVals',124),[33,13],[32,3],[34,14],[252,3],[65,9],[108],[32,13],[252,3],[106],[34,15],[43,0,4],[32,15],[45,0,12],[34,6],[15],[11],[32,0],[32,1],[15]],
|
14
|
-
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
15
|
-
locals:[124,124,124,127,127,124,124,124,127,124,124,124,124,127],localNames:["obj","obj#type","t","idx","#proto_target","#proto_target#type","#last_type","underlying","flags","proto","proto#type","key1","key2","#member_obj","#member_prop","#loadArray_offset"],
|
16
|
-
usedTypes:[80,7,195],
|
17
|
-
globalInits:{underlyingKeys:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingKeys','f64'),124),...glbl(36,'underlyingKeys',124),...glbl(35,'underlyingKeys',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],underlyingVals:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingVals','f64'),124),...glbl(36,'underlyingVals',124),...glbl(35,'underlyingVals',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},data:{"bytestring: __Porffor_object_makeObject/key1":[9,0,0,0,112,114,111,116,111,116,121,112,101],"bytestring: __Porffor_object_makeObject/key2":[11,0,0,0,99,111,110,115,116,114,117,99,116,111,114]},
|
10
|
+
globalInits:{underlyingKeys:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingKeys','f64'),124),...glbl(36,'underlyingKeys',124),...glbl(35,'underlyingKeys',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],underlyingVals:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingVals','f64'),124),...glbl(36,'underlyingVals',124),...glbl(35,'underlyingVals',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},data:{"bytestring: __Porffor_object_underlying/key1":[9,0,0,0,112,114,111,116,111,116,121,112,101],"bytestring: __Porffor_object_underlying/key2":[11,0,0,0,99,111,110,115,116,114,117,99,116,111,114]},
|
18
11
|
};
|
19
12
|
this.__Porffor_strcmp = {
|
20
13
|
wasm:()=>[[32,0],[32,2],[70],[4,64],[65,1],[65,2],[15],[11],[32,0],[40,0,0],[33,4],[32,2],[40,0,0],[33,5],[32,4],[32,5],[71],[4,64],[65,0],[65,2],[15],[11],[32,1],[65,195,1],[70],[4,64],[32,3],[65,195,1],[70],[4,64],[32,0],[65,28],[107],[33,6],[32,2],[65,28],[107],[33,7],[32,0],[65,4],[107],[33,8],[32,2],[65,4],[107],[33,9],[32,4],[65,32],[78],[4,64],[3,64],[32,6],[32,4],[106],[253,0,0,0],[32,7],[32,4],[106],[253,0,0,0],[253,81],[32,6],[32,4],[106],[253,0,0,16],[32,7],[32,4],[106],[253,0,0,16],[253,81],[253,80],[253,83],[4,64],[65,0],[65,2],[15],[11],[32,4],[65,32],[107],[34,4],[65,32],[78],[13,0],[11],[11],[32,4],[65,8],[78],[4,64],[3,64],[32,8],[32,4],[106],[41,0,0],[32,9],[32,4],[106],[41,0,0],[82],[4,64],[65,0],[65,2],[15],[11],[32,4],[65,8],[107],[34,4],[65,8],[78],[13,0],[11],[11],[32,4],[65,2],[78],[4,64],[3,64],[32,0],[32,4],[106],[47,0,2],[32,2],[32,4],[106],[47,0,2],[71],[4,64],[65,0],[65,2],[15],[11],[32,4],[65,2],[107],[34,4],[65,2],[78],[13,0],[11],[11],[32,4],[65,1],[70],[4,64],[32,0],[45,0,4],[32,2],[45,0,4],[71],[4,64],[65,0],[65,2],[15],[11],[11],[65,1],[65,2],[15],[5],[65,0],[33,10],[3,64],[32,10],[32,4],[72],[4,64],[32,0],[32,10],[106],[45,0,4],[32,2],[32,10],[65,2],[108],[106],[47,0,4],[71],[4,64],[65,0],[65,2],[15],[11],[32,10],[65,1],[106],[33,10],[12,1],[11],[11],[65,1],[65,2],[15],[11],[5],[32,3],[65,195,1],[70],[4,64],[65,0],[33,10],[3,64],[32,10],[32,4],[72],[4,64],[32,0],[32,10],[65,2],[108],[106],[47,0,4],[32,2],[32,10],[106],[45,0,4],[71],[4,64],[65,0],[65,2],[15],[11],[32,10],[65,1],[106],[33,10],[12,1],[11],[11],[65,1],[65,2],[15],[5],[32,0],[65,4],[107],[33,11],[32,2],[65,4],[107],[33,12],[3,64],[32,11],[32,4],[65,2],[108],[106],[41,0,0],[32,12],[32,4],[65,2],[108],[106],[41,0,0],[82],[4,64],[65,0],[65,2],[15],[11],[32,4],[65,4],[107],[34,4],[65,4],[78],[13,0],[11],[65,0],[33,10],[3,64],[32,10],[32,4],[72],[4,64],[32,0],[32,10],[65,2],[108],[106],[47,0,4],[32,2],[32,10],[65,2],[108],[106],[47,0,4],[71],[4,64],[65,0],[65,2],[15],[11],[32,10],[65,1],[106],[33,10],[12,1],[11],[11],[65,1],[65,2],[15],[11],[11],[65,0],[65,128,1],[15]],
|
@@ -28,22 +21,22 @@ locals:[127,127,127,127,127],localNames:["a","a#type","b","b#type","al","bl","ou
|
|
28
21
|
usedTypes:[195,67],
|
29
22
|
};
|
30
23
|
this.__Porffor_object_preventExtensions = {
|
31
|
-
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
24
|
+
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,2],[252,2],[34,0],[32,2],[33,1],[26],[32,1],[65,7],[71],[4,64],[65,0],[65,128,1],[15],[11],[11],[32,0],[45,0,4],[34,3],[65,1],[114],[33,3],[32,0],[32,3],[58,0,4],[65,0],[65,128,1],[15]],
|
32
25
|
params:[127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
33
26
|
locals:[127,127],localNames:["obj","obj#type","#last_type","rootFlags"],
|
34
27
|
};
|
35
28
|
this.__Porffor_object_isInextensible = {
|
36
|
-
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
29
|
+
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,2],[252,2],[34,0],[32,2],[33,1],[26],[32,1],[65,7],[71],[4,64],[65,0],[65,2],[15],[11],[11],[32,0],[45,0,4],[65,1],[113],[34,3],[65,2],[15]],
|
37
30
|
params:[127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
38
31
|
locals:[127,127],localNames:["obj","obj#type","#last_type","out"],
|
39
32
|
};
|
40
33
|
this.__Porffor_object_overrideAllFlags = {
|
41
|
-
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
34
|
+
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[32,1],[65,7],[71],[4,64],[65,0],[65,128,1],[15],[11],[11],[32,0],[65,5],[106],[33,7],[32,0],[40,0,0],[33,8],[32,7],[32,8],[65,14],[108],[106],[33,9],[3,64],[32,7],[32,9],[72],[4,64],[32,7],[45,0,12],[34,10],[32,2],[114],[32,4],[113],[33,10],[32,7],[32,10],[58,0,12],[32,7],[65,14],[106],[34,7],[12,1],[11],[11],[65,0],[65,128,1],[15]],
|
42
35
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
43
36
|
locals:[127,127,127,127,127],localNames:["obj","obj#type","overrideOr","overrideOr#type","overrideAnd","overrideAnd#type","#last_type","ptr","size","endPtr","flags"],
|
44
37
|
};
|
45
38
|
this.__Porffor_object_checkAllFlags = {
|
46
|
-
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
39
|
+
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,10],[252,2],[34,0],[32,10],[33,1],[26],[32,1],[65,7],[71],[4,64],[65,0],[65,2],[15],[11],[11],[32,0],[65,5],[106],[33,11],[32,0],[40,0,0],[33,12],[32,11],[32,12],[65,14],[108],[106],[33,13],[3,64],[32,11],[32,13],[72],[4,64],[32,11],[45,0,12],[34,14],[65,1],[113],[4,64],[32,14],[32,4],[113],[32,8],[71],[4,64],[65,0],[65,2],[15],[11],[5],[32,14],[32,2],[113],[32,6],[71],[4,64],[65,0],[65,2],[15],[11],[11],[32,11],[65,14],[106],[34,11],[12,1],[11],[11],[65,1],[65,2],[15]],
|
47
40
|
params:[127,127,127,127,127,127,127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
48
41
|
locals:[127,127,127,127,127],localNames:["obj","obj#type","dataAnd","dataAnd#type","accessorAnd","accessorAnd#type","dataExpected","dataExpected#type","accessorExpected","accessorExpected#type","#last_type","ptr","size","endPtr","flags"],
|
49
42
|
};
|
@@ -63,13 +56,13 @@ params:[127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
|
63
56
|
locals:[127],localNames:["entryPtr","entryPtr#type","out"],
|
64
57
|
};
|
65
58
|
this.__Porffor_object_lookup = {
|
66
|
-
wasm:(_,{builtin})=>[[32,0],[69],[4,64],[65,127],[65,1],[15],[11],[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
59
|
+
wasm:(_,{builtin})=>[[32,0],[69],[4,64],[65,127],[65,1],[15],[11],[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,4],[252,2],[34,0],[32,4],[33,1],[26],[32,1],[65,7],[71],[4,64],[65,127],[65,1],[15],[11],[11],[32,3],[33,5],[32,0],[65,5],[106],[33,6],[32,0],[40,0,0],[33,7],[32,6],[32,7],[65,14],[108],[106],[33,8],[32,5],[65,195,1],[70],[4,64],[32,2],[33,9],[3,64],[32,6],[32,8],[72],[4,64],[2,64],[32,6],[40,0,0],[34,10],[69],[4,64],[12,2],[11],[32,10],[65,31],[118],[4,64],[12,1],[11],[32,10],[34,11],[183],[65,195,1],[32,9],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,6],[65,1],[15],[11],[11],[32,6],[65,14],[106],[34,6],[12,1],[11],[11],[5],[32,5],[65,195,0],[70],[4,64],[32,2],[33,9],[3,64],[32,6],[32,8],[72],[4,64],[2,64],[32,6],[40,0,0],[34,10],[69],[4,64],[12,2],[11],[32,10],[65,30],[118],[65,2],[70],[4,64],[32,10],[65,255,255,255,255,7],[113],[34,11],[183],[65,195,0],[32,9],[183],[65,195,0],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,6],[65,1],[15],[11],[11],[11],[32,6],[65,14],[106],[34,6],[12,1],[11],[11],[5],[32,2],[33,12],[3,64],[32,6],[32,8],[72],[4,64],[2,64],[32,6],[40,0,0],[34,10],[69],[4,64],[12,2],[11],[32,10],[65,30],[118],[65,3],[70],[4,64],[32,10],[65,255,255,255,255,3],[113],[34,13],[32,12],[70],[4,64],[32,6],[65,1],[15],[11],[11],[11],[32,6],[65,14],[106],[34,6],[12,1],[11],[11],[11],[11],[65,127],[65,1],[15]],
|
67
60
|
params:[127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
68
61
|
locals:[127,127,127,127,127,127,127,127,127,127],localNames:["obj","obj#type","target","target#type","#last_type","targetType","ptr","size","endPtr","targetStr","keyRaw","keyStr","targetSym","keySym"],
|
69
62
|
usedTypes:[195,67,5],
|
70
63
|
};
|
71
64
|
this.__Porffor_object_get = {
|
72
|
-
wasm:(_,{t,allocPage,builtin,internalThrow})=>[[32,1],[34,4],[65,6],[70],[4,64],...number(allocPage(_,'bytestring: __Porffor_object_get/tmp1','i8'),127),[33,5],[32,2],[183],[32,3],[32,5],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[16,builtin('__Porffor_funcLut_name')],[33,6],[65,195,1],[33,7],[32,6],[184],[32,7],[15],[11],...number(allocPage(_,'bytestring: __Porffor_object_get/tmp2','i8'),127),[33,8],[32,2],[183],[32,3],[32,8],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[16,builtin('__Porffor_funcLut_length')],[34,6],[184],[65,1],[15],[11],[11],[32,4],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
65
|
+
wasm:(_,{t,allocPage,builtin,internalThrow})=>[[32,1],[34,4],[65,6],[70],[4,64],...number(allocPage(_,'bytestring: __Porffor_object_get/tmp1','i8'),127),[33,5],[32,2],[183],[32,3],[32,5],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[16,builtin('__Porffor_funcLut_name')],[33,6],[65,195,1],[33,7],[32,6],[184],[32,7],[15],[11],...number(allocPage(_,'bytestring: __Porffor_object_get/tmp2','i8'),127),[33,8],[32,2],[183],[32,3],[32,8],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[16,builtin('__Porffor_funcLut_length')],[34,6],[184],[65,1],[15],[11],[11],[32,4],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,9],[252,2],[34,0],[32,9],[33,1],[26],[11],[32,0],[69],[4,64],...internalThrow(_,'TypeError',`Cannot get property of null`),[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,9],[34,10],[65,127],[70],[4,64],[32,1],[65,7],[70],[4,64],...number(allocPage(_,'bytestring: __Porffor_object_get/protoKey','i8'),127),[33,11],[32,0],[33,12],[32,1],[33,13],[32,2],[183],[32,3],[32,11],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[69],[4,64],[3,64],[65,1],[4,64],[32,0],[32,1],[32,11],[65,195,1],[16,builtin('__Porffor_object_get')],[33,9],[252,2],[34,0],[32,9],[33,1],[26],[32,0],[33,14],[32,1],[33,15],[2,127],...t([0,128],()=>[[32,15],[69],[32,15],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,15],[65,7],[70],[4,64],[32,14],[69],[12,1],[11]]),[65,0],[11],[32,0],[32,12],[70],[114],[4,64],[12,1],[11],[32,0],[34,12],[32,1],[33,13],[26],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,9],[34,10],[65,127],[71],[4,64],[12,1],[11],[12,1],[11],[11],[5],[16,builtin('#get___Object_prototype')],[33,16],[32,4],[65,6],[70],[4,64],[16,builtin('#get___Function_prototype')],[33,16],[11],[32,16],[184],[65,7],[15],[11],[11],[32,10],[65,127],[70],[4,64],[68,0],[65,128,1],[15],[11],[11],[32,10],[47,0,12],[34,17],[65,1],[113],[4,64],[32,10],[65,1],[16,builtin('__Porffor_object_accessorGet')],[33,9],[34,18],[69],[4,64],[68,0],[65,128,1],[15],[11],[32,18],[16,builtin('__Porffor_funcLut_flags')],[34,19],[65,2],[113],[4,64],[68,0],[65,0],[32,0],[184],[32,1],[32,18],[17,2,0],[15],[5],[32,18],[17,0,0],[15],[11],[11],[32,10],[43,0,4],[32,17],[65,8],[118],[15]],
|
73
66
|
params:[127,127,127,127],typedParams:1,returns:[124,127],typedReturns:1,
|
74
67
|
locals:[127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127],localNames:["obj","obj#type","key","key#type","trueType","tmp1","o","t","tmp2","#last_type","entryPtr","protoKey","lastProto","lastProto#type","#logicinner_tmp","#typeswitch_tmp1","proto","tail","get","funcFlags"],
|
75
68
|
usedTypes:[195,7],
|
@@ -81,29 +74,29 @@ params:[127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
|
81
74
|
locals:[127],localNames:["ptr","ptr#type","key","key#type","keyEnc"],
|
82
75
|
};
|
83
76
|
this.__Porffor_object_set = {
|
84
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
77
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[32,1],[65,7],[71],[4,64],[32,4],[32,5],[15],[11],[11],[32,0],[69],[4,64],...internalThrow(_,'TypeError',`Cannot set property of null`),[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,6],[34,7],[65,127],[70],[4,64],[32,0],[32,1],[16,builtin('__Porffor_object_isInextensible')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[40,1,0],[12,1],[11]]),[32,9],[11],[4,64],[32,4],[32,5],[15],[11],[32,0],[40,0,0],[33,11],[32,0],[32,11],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,11],[65,14],[108],[106],[34,7],[65,1],[32,2],[32,3],[16,builtin('__Porffor_object_writeKey')],[33,6],[26],[65,14],[33,8],[5],[32,7],[47,0,12],[34,12],[65,1],[113],[4,64],[32,7],[65,1],[16,builtin('__Porffor_object_accessorSet')],[33,6],[34,13],[69],[4,64],[32,4],[32,5],[15],[11],[32,13],[16,builtin('__Porffor_funcLut_flags')],[34,14],[65,2],[113],[4,64],[68,0],[65,0],[32,0],[184],[65,7],[32,4],[32,5],[32,13],[17,3,0],[26],[26],[5],[32,4],[32,5],[32,13],[17,1,0],[26],[26],[11],[32,4],[32,5],[15],[11],[32,12],[65,8],[113],[69],[4,64],[32,4],[32,5],[15],[11],[32,12],[65,255,1],[113],[33,8],[11],[32,7],[32,4],[57,0,4],[32,7],[32,8],[32,5],[65,8],[116],[106],[59,0,12],[32,4],[32,5],[15]],
|
85
78
|
params:[127,127,127,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
86
79
|
locals:[127,127,127,127,127,127,127,127,127],localNames:["obj","obj#type","key","key#type","value","value#type","#last_type","entryPtr","flags","#logicinner_tmp","#typeswitch_tmp1","size","tail","set","funcFlags"],
|
87
80
|
};
|
88
81
|
this.__Porffor_object_setStrict = {
|
89
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[69],[4,64],...internalThrow(_,'TypeError',`Cannot set property of null`),[11],[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
82
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[69],[4,64],...internalThrow(_,'TypeError',`Cannot set property of null`),[11],[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[32,1],[65,7],[71],[4,64],[32,4],[32,5],[15],[11],[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,6],[34,7],[65,127],[70],[4,64],[32,0],[32,1],[16,builtin('__Porffor_object_isInextensible')],[33,6],[33,9],[32,6],[33,10],[2,127],...t([67,195],()=>[[32,10],[65,195,0],[70],[32,10],[65,195,1],[70],[114],[4,64],[32,9],[40,1,0],[12,1],[11]]),[32,9],[11],[4,64],...internalThrow(_,'TypeError',`Cannot add property to inextensible object`),[11],[32,0],[40,0,0],[33,11],[32,0],[32,11],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,11],[65,14],[108],[106],[34,7],[65,1],[32,2],[32,3],[16,builtin('__Porffor_object_writeKey')],[33,6],[26],[65,14],[33,8],[5],[32,7],[47,0,12],[34,12],[65,1],[113],[4,64],[32,7],[65,1],[16,builtin('__Porffor_object_accessorSet')],[33,6],[34,13],[69],[4,64],...internalThrow(_,'TypeError',`Cannot set property with no setter of object`),[11],[32,13],[16,builtin('__Porffor_funcLut_flags')],[34,14],[65,2],[113],[4,64],[68,0],[65,0],[32,0],[184],[65,7],[32,4],[32,5],[32,13],[17,3,0],[26],[26],[5],[32,4],[32,5],[32,13],[17,1,0],[26],[26],[11],[32,4],[32,5],[15],[11],[32,12],[65,8],[113],[69],[4,64],...internalThrow(_,'TypeError',`Cannot modify read-only property of object`),[11],[32,12],[65,255,1],[113],[33,8],[11],[32,7],[32,4],[57,0,4],[32,7],[32,8],[32,5],[65,8],[116],[106],[59,0,12],[32,4],[32,5],[15]],
|
90
83
|
params:[127,127,127,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
91
84
|
locals:[127,127,127,127,127,127,127,127,127],localNames:["obj","obj#type","key","key#type","value","value#type","#last_type","entryPtr","flags","#logicinner_tmp","#typeswitch_tmp1","size","tail","set","funcFlags"],
|
92
85
|
};
|
93
86
|
this.__Porffor_object_define = {
|
94
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
87
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,8],[252,2],[34,0],[32,8],[33,1],[26],[32,1],[65,7],[71],[4,64],[65,0],[65,128,1],[15],[11],[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,8],[34,9],[65,127],[70],[4,64],[32,0],[32,1],[16,builtin('__Porffor_object_isInextensible')],[33,8],[33,10],[32,8],[33,11],[2,127],...t([67,195],()=>[[32,11],[65,195,0],[70],[32,11],[65,195,1],[70],[114],[4,64],[32,10],[40,1,0],[12,1],[11]]),[32,10],[11],[4,64],...internalThrow(_,'TypeError',`Cannot define property, object is inextensible`),[11],[32,0],[40,0,0],[33,12],[32,0],[32,12],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,12],[65,14],[108],[106],[34,9],[65,1],[32,2],[32,3],[16,builtin('__Porffor_object_writeKey')],[33,8],[26],[5],[32,9],[47,0,12],[34,13],[65,2],[113],[69],[4,64],[65,0],[33,14],[32,13],[65,7],[113],[32,6],[65,7],[113],[71],[4,64],[65,1],[33,14],[11],[32,14],[69],[34,15],[4,127],[32,13],[65,9],[113],[69],[65,2],[33,8],[5],[32,15],[65,2],[33,8],[11],[33,10],[32,8],[33,11],[2,127],...t([67,195],()=>[[32,11],[65,195,0],[70],[32,11],[65,195,1],[70],[114],[4,64],[32,10],[40,1,0],[12,1],[11]]),[32,10],[11],[4,64],[32,6],[65,8],[113],[4,64],[65,1],[33,14],[5],[32,9],[43,0,4],[32,9],[45,0,13],[32,4],[32,5],[16,builtin('__Object_is')],[26],[252,3],[69],[33,14],[11],[11],[32,14],[4,64],...internalThrow(_,'TypeError',`Cannot redefine property`),[11],[11],[11],[32,9],[32,4],[57,0,4],[32,9],[32,6],[32,5],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
|
95
88
|
params:[127,127,127,127,124,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
96
89
|
locals:[127,127,127,127,127,127,127,127],localNames:["obj","obj#type","key","key#type","value","value#type","flags","flags#type","#last_type","entryPtr","#logicinner_tmp","#typeswitch_tmp1","size","tail","err","logictmp"],
|
97
90
|
};
|
98
91
|
this.__Porffor_object_delete = {
|
99
|
-
wasm:(_,{allocPage,builtin,internalThrow})=>[[32,0],[69],[4,64],...internalThrow(_,'TypeError',`Cannot delete property of null`),[11],[32,1],[65,6],[70],[4,64],...number(allocPage(_,'bytestring: __Porffor_object_delete/tmp1','i8'),127),[33,4],[32,2],[183],[32,3],[32,4],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[16,builtin('__Porffor_funcLut_deleteName')],[65,1],[65,2],[15],[11],...number(allocPage(_,'bytestring: __Porffor_object_delete/tmp2','i8'),127),[33,5],[32,2],[183],[32,3],[32,5],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[16,builtin('__Porffor_funcLut_deleteLength')],[65,1],[65,2],[15],[11],[11],[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
92
|
+
wasm:(_,{allocPage,builtin,internalThrow})=>[[32,0],[69],[4,64],...internalThrow(_,'TypeError',`Cannot delete property of null`),[11],[32,1],[65,6],[70],[4,64],...number(allocPage(_,'bytestring: __Porffor_object_delete/tmp1','i8'),127),[33,4],[32,2],[183],[32,3],[32,4],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[16,builtin('__Porffor_funcLut_deleteName')],[65,1],[65,2],[15],[11],...number(allocPage(_,'bytestring: __Porffor_object_delete/tmp2','i8'),127),[33,5],[32,2],[183],[32,3],[32,5],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[16,builtin('__Porffor_funcLut_deleteLength')],[65,1],[65,2],[15],[11],[11],[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[11],[32,1],[65,7],[71],[4,64],[65,1],[65,2],[15],[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,6],[34,7],[65,127],[70],[4,64],[65,1],[65,2],[15],[11],[32,7],[47,0,12],[34,8],[65,2],[113],[69],[4,64],[65,0],[65,2],[15],[11],[32,7],[32,0],[107],[65,14],[109],[33,9],[32,0],[40,0,0],[33,10],[32,0],[32,10],[65,1],[107],[34,10],[54,0,0],[32,10],[32,9],[74],[4,64],[32,7],[32,7],[65,14],[106],[32,10],[32,9],[107],[65,14],[108],[252,10,0,0],[11],[65,1],[65,2],[15]],
|
100
93
|
params:[127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
101
94
|
locals:[127,127,127,127,127,127,127],localNames:["obj","obj#type","key","key#type","tmp1","tmp2","#last_type","entryPtr","tail","ind","size"],
|
102
95
|
usedTypes:[195],
|
103
96
|
data:{"bytestring: __Porffor_object_delete/tmp1":[4,0,0,0,110,97,109,101],"bytestring: __Porffor_object_delete/tmp2":[6,0,0,0,108,101,110,103,116,104]},
|
104
97
|
};
|
105
98
|
this.__Porffor_object_deleteStrict = {
|
106
|
-
wasm:(_,{allocPage,builtin,internalThrow})=>[[32,0],[69],[4,64],...internalThrow(_,'TypeError',`Cannot delete property of null`),[11],[32,1],[65,6],[70],[4,64],...number(allocPage(_,'bytestring: __Porffor_object_deleteStrict/tmp1','i8'),127),[33,4],[32,2],[183],[32,3],[32,4],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[16,builtin('__Porffor_funcLut_deleteName')],[65,1],[65,2],[15],[11],...number(allocPage(_,'bytestring: __Porffor_object_deleteStrict/tmp2','i8'),127),[33,5],[32,2],[183],[32,3],[32,5],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[16,builtin('__Porffor_funcLut_deleteLength')],[65,1],[65,2],[15],[11],[11],[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
99
|
+
wasm:(_,{allocPage,builtin,internalThrow})=>[[32,0],[69],[4,64],...internalThrow(_,'TypeError',`Cannot delete property of null`),[11],[32,1],[65,6],[70],[4,64],...number(allocPage(_,'bytestring: __Porffor_object_deleteStrict/tmp1','i8'),127),[33,4],[32,2],[183],[32,3],[32,4],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[16,builtin('__Porffor_funcLut_deleteName')],[65,1],[65,2],[15],[11],...number(allocPage(_,'bytestring: __Porffor_object_deleteStrict/tmp2','i8'),127),[33,5],[32,2],[183],[32,3],[32,5],[183],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[16,builtin('__Porffor_funcLut_deleteLength')],[65,1],[65,2],[15],[11],[11],[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[11],[32,1],[65,7],[71],[4,64],[65,1],[65,2],[15],[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,6],[34,7],[65,127],[70],[4,64],[65,1],[65,2],[15],[11],[32,7],[47,0,12],[34,8],[65,2],[113],[69],[4,64],...internalThrow(_,'TypeError',`Cannot delete non-configurable property of object`),[11],[32,7],[32,0],[107],[65,14],[109],[33,9],[32,0],[40,0,0],[33,10],[32,0],[32,10],[65,1],[107],[34,10],[54,0,0],[32,10],[32,9],[74],[4,64],[32,7],[32,7],[65,14],[106],[32,10],[32,9],[107],[65,14],[108],[252,10,0,0],[11],[65,1],[65,2],[15]],
|
107
100
|
params:[127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
108
101
|
locals:[127,127,127,127,127,127,127],localNames:["obj","obj#type","key","key#type","tmp1","tmp2","#last_type","entryPtr","tail","ind","size"],
|
109
102
|
usedTypes:[195],
|
@@ -130,42 +123,42 @@ params:[127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
|
130
123
|
locals:[127],localNames:["arg","arg#type","t"],
|
131
124
|
};
|
132
125
|
this.__Porffor_object_expr_init = {
|
133
|
-
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
126
|
+
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,6],[34,7],[65,127],[70],[4,64],[32,0],[40,0,0],[33,8],[32,0],[32,8],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,8],[65,14],[108],[106],[34,7],[65,1],[32,2],[32,3],[16,builtin('__Porffor_object_writeKey')],[33,6],[26],[11],[32,7],[32,4],[57,0,4],[32,7],[65,14],[32,5],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
|
134
127
|
params:[127,127,127,127,124,127],typedParams:1,returns:[127,127],typedReturns:1,
|
135
128
|
locals:[127,127,127],localNames:["obj","obj#type","key","key#type","value","value#type","#last_type","entryPtr","size"],
|
136
129
|
};
|
137
130
|
this.__Porffor_object_expr_initWithFlags = {
|
138
|
-
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
131
|
+
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,8],[252,2],[34,0],[32,8],[33,1],[26],[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,8],[34,9],[65,127],[70],[4,64],[32,0],[40,0,0],[33,10],[32,0],[32,10],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,10],[65,14],[108],[106],[34,9],[65,1],[32,2],[32,3],[16,builtin('__Porffor_object_writeKey')],[33,8],[26],[11],[32,9],[32,4],[57,0,4],[32,9],[32,6],[32,5],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
|
139
132
|
params:[127,127,127,127,124,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
140
133
|
locals:[127,127,127],localNames:["obj","obj#type","key","key#type","value","value#type","flags","flags#type","#last_type","entryPtr","size"],
|
141
134
|
};
|
142
135
|
this.__Porffor_object_expr_get = {
|
143
|
-
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
136
|
+
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,6],[33,7],[65,0],[33,8],[65,128,1],[33,9],[32,7],[65,127],[70],[4,64],[32,0],[40,0,0],[33,10],[32,0],[32,10],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,10],[65,14],[108],[106],[34,7],[65,1],[32,2],[32,3],[16,builtin('__Porffor_object_writeKey')],[33,6],[26],[5],[32,7],[65,1],[16,builtin('__Porffor_object_accessorSet')],[34,6],[33,9],[33,8],[11],[32,7],[32,4],[32,5],[32,8],[32,9],[16,builtin('__Porffor_object_packAccessor')],[33,6],[57,0,4],[32,7],[65,15],[65,1],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
|
144
137
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
145
138
|
locals:[127,127,127,127,127],localNames:["obj","obj#type","key","key#type","get","get#type","#last_type","entryPtr","set","set#type","size"],
|
146
139
|
};
|
147
140
|
this.__Porffor_object_expr_set = {
|
148
|
-
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
141
|
+
wasm:(_,{builtin})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,6],[33,7],[65,0],[33,8],[65,128,1],[33,9],[32,7],[65,127],[70],[4,64],[32,0],[40,0,0],[33,10],[32,0],[32,10],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,10],[65,14],[108],[106],[34,7],[65,1],[32,2],[32,3],[16,builtin('__Porffor_object_writeKey')],[33,6],[26],[5],[32,7],[65,1],[16,builtin('__Porffor_object_accessorGet')],[34,6],[33,9],[33,8],[11],[32,7],[32,8],[32,9],[32,4],[32,5],[16,builtin('__Porffor_object_packAccessor')],[33,6],[57,0,4],[32,7],[65,15],[65,1],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
|
149
142
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
150
143
|
locals:[127,127,127,127,127],localNames:["obj","obj#type","key","key#type","set","set#type","#last_type","entryPtr","get","get#type","size"],
|
151
144
|
};
|
152
145
|
this.__Porffor_object_class_value = {
|
153
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
146
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,6],[34,7],[65,127],[70],[4,64],[32,0],[32,1],[16,builtin('__Porffor_object_isInextensible')],[33,6],[33,8],[32,6],[33,9],[2,127],...t([67,195],()=>[[32,9],[65,195,0],[70],[32,9],[65,195,1],[70],[114],[4,64],[32,8],[40,1,0],[12,1],[11]]),[32,8],[11],[4,64],...internalThrow(_,'TypeError',`Cannot define property, object is inextensible`),[11],[32,0],[40,0,0],[33,10],[32,0],[32,10],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,10],[65,14],[108],[106],[34,7],[65,1],[32,2],[32,3],[16,builtin('__Porffor_object_writeKey')],[33,6],[26],[11],[32,7],[32,4],[57,0,4],[32,7],[65,14],[32,5],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
|
154
147
|
params:[127,127,127,127,124,127],typedParams:1,returns:[127,127],typedReturns:1,
|
155
148
|
locals:[127,127,127,127,127],localNames:["obj","obj#type","key","key#type","value","value#type","#last_type","entryPtr","#logicinner_tmp","#typeswitch_tmp1","size"],
|
156
149
|
};
|
157
150
|
this.__Porffor_object_class_method = {
|
158
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
151
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,6],[34,7],[65,127],[70],[4,64],[32,0],[32,1],[16,builtin('__Porffor_object_isInextensible')],[33,6],[33,8],[32,6],[33,9],[2,127],...t([67,195],()=>[[32,9],[65,195,0],[70],[32,9],[65,195,1],[70],[114],[4,64],[32,8],[40,1,0],[12,1],[11]]),[32,8],[11],[4,64],...internalThrow(_,'TypeError',`Cannot define property, object is inextensible`),[11],[32,0],[40,0,0],[33,10],[32,0],[32,10],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,10],[65,14],[108],[106],[34,7],[65,1],[32,2],[32,3],[16,builtin('__Porffor_object_writeKey')],[33,6],[26],[11],[32,7],[32,4],[57,0,4],[32,7],[65,10],[32,5],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
|
159
152
|
params:[127,127,127,127,124,127],typedParams:1,returns:[127,127],typedReturns:1,
|
160
153
|
locals:[127,127,127,127,127],localNames:["obj","obj#type","key","key#type","value","value#type","#last_type","entryPtr","#logicinner_tmp","#typeswitch_tmp1","size"],
|
161
154
|
};
|
162
155
|
this.__Porffor_object_class_get = {
|
163
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
156
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,6],[33,7],[65,0],[33,8],[65,128,1],[33,9],[32,7],[65,127],[70],[4,64],[32,0],[32,1],[16,builtin('__Porffor_object_isInextensible')],[33,6],[33,10],[32,6],[33,11],[2,127],...t([67,195],()=>[[32,11],[65,195,0],[70],[32,11],[65,195,1],[70],[114],[4,64],[32,10],[40,1,0],[12,1],[11]]),[32,10],[11],[4,64],...internalThrow(_,'TypeError',`Cannot define property, object is inextensible`),[11],[32,0],[40,0,0],[33,12],[32,0],[32,12],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,12],[65,14],[108],[106],[34,7],[65,1],[32,2],[32,3],[16,builtin('__Porffor_object_writeKey')],[33,6],[26],[5],[32,7],[65,1],[16,builtin('__Porffor_object_accessorSet')],[34,6],[33,9],[33,8],[11],[32,7],[32,4],[32,5],[32,8],[32,9],[16,builtin('__Porffor_object_packAccessor')],[33,6],[57,0,4],[32,7],[65,11],[65,1],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
|
164
157
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
165
158
|
locals:[127,127,127,127,127,127,127],localNames:["obj","obj#type","key","key#type","get","get#type","#last_type","entryPtr","set","set#type","#logicinner_tmp","#typeswitch_tmp1","size"],
|
166
159
|
};
|
167
160
|
this.__Porffor_object_class_set = {
|
168
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('
|
161
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,7],[71],[4,64],[32,0],[184],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[34,0],[32,6],[33,1],[26],[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Porffor_object_lookup')],[33,6],[33,7],[65,0],[33,8],[65,128,1],[33,9],[32,7],[65,127],[70],[4,64],[32,0],[32,1],[16,builtin('__Porffor_object_isInextensible')],[33,6],[33,10],[32,6],[33,11],[2,127],...t([67,195],()=>[[32,11],[65,195,0],[70],[32,11],[65,195,1],[70],[114],[4,64],[32,10],[40,1,0],[12,1],[11]]),[32,10],[11],[4,64],...internalThrow(_,'TypeError',`Cannot define property, object is inextensible`),[11],[32,0],[40,0,0],[33,12],[32,0],[32,12],[65,1],[106],[54,0,0],[32,0],[65,5],[106],[32,12],[65,14],[108],[106],[34,7],[65,1],[32,2],[32,3],[16,builtin('__Porffor_object_writeKey')],[33,6],[26],[5],[32,7],[65,1],[16,builtin('__Porffor_object_accessorGet')],[34,6],[33,9],[33,8],[11],[32,7],[32,8],[32,9],[32,4],[32,5],[16,builtin('__Porffor_object_packAccessor')],[33,6],[57,0,4],[32,7],[65,11],[65,1],[65,8],[116],[106],[59,0,12],[65,0],[65,128,1],[15]],
|
169
162
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
170
163
|
locals:[127,127,127,127,127,127,127],localNames:["obj","obj#type","key","key#type","set","set#type","#last_type","entryPtr","get","get#type","#logicinner_tmp","#typeswitch_tmp1","size"],
|
171
164
|
};
|
@@ -1705,13 +1698,13 @@ usedTypes:[7],
|
|
1705
1698
|
constr:1,
|
1706
1699
|
};
|
1707
1700
|
this.__Object_keys = {
|
1708
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,2],[32,1],[33,3],[2,127],...t([0,128],()=>[[32,3],[65,0],[70],[32,3],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,3],[65,7],[70],[4,64],[32,2],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`Argument is nullish, expected object`),[11],[16,builtin('__Porffor_allocate')],[183],[33,4],[32,1],[184],[34,5],[68,7],[97],[4,64],[32,0],[68,5],[160],[34,6],[32,0],[252,2],[40,0,0],[183],[68,14],[162],[160],[33,7],[68,0],[33,8],[3,64],[32,6],[32,7],[99],[4,64],[2,64],[32,6],[252,2],[65,1],[16,builtin('__Porffor_object_isEnumerable')],[33,9],[183],[33,2],[32,9],[33,3],[2,124],...t([67,195],()=>[[32,3],[65,195,0],[70],[32,3],[65,195,1],[70],[114],[4,64],[32,2],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,2],[68,0],[97],[184],[11],[252,3],[4,64],[12,1],[11],[32,6],[252,3],[40,0,0],[34,12],[65,30],[118],[34,13],[4,127],[65,5],[65,195,0],[32,13],[65,3],[70],[27],[33,11],[32,12],[65,255,255,255,255,3],[113],[5],[65,195,1],[33,11],[32,12],[11],[184],[33,10],[32,4],[33,16],[32,8],[32,8],[68,1],[160],[33,8],[33,17],[32,16],[252,3],[32,17],[252,3],[65,9],[108],[106],[34,15],[32,10],[34,14],[57,0,4],[32,15],[32,11],[58,0,12],[11],[32,6],[68,14],[160],[34,6],[12,1],[11],[11],[32,4],[252,3],[34,19],[32,8],[34,18],[252,3],[54,1,0],[5],[32,5],[68,80],[97],[32,5],[68,195],[97],[114],[32,5],[68,67],[97],[114],[4,64],[32,0],[252,3],[40,1,0],[184],[33,20],[32,4],[252,3],[34,19],[32,20],[34,18],[252,3],[54,1,0],[68,0],[33,8],[3,64],[32,8],[32,20],[99],[4,64],[32,4],[33,16],[32,8],[33,17],[32,16],[252,3],[32,17],[252,3],[65,9],[108],[106],[34,15],[32,8],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,9],[34,14],[57,0,4],[32,15],[32,9],[58,0,12],[32,8],[68,1],[160],[33,8],[12,1],[11],[11],[11],[32,0],[32,1],[16,builtin('
|
1701
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,2],[32,1],[33,3],[2,127],...t([0,128],()=>[[32,3],[65,0],[70],[32,3],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,3],[65,7],[70],[4,64],[32,2],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`Argument is nullish, expected object`),[11],[16,builtin('__Porffor_allocate')],[183],[33,4],[32,1],[184],[34,5],[68,7],[97],[4,64],[32,0],[68,5],[160],[34,6],[32,0],[252,2],[40,0,0],[183],[68,14],[162],[160],[33,7],[68,0],[33,8],[3,64],[32,6],[32,7],[99],[4,64],[2,64],[32,6],[252,2],[65,1],[16,builtin('__Porffor_object_isEnumerable')],[33,9],[183],[33,2],[32,9],[33,3],[2,124],...t([67,195],()=>[[32,3],[65,195,0],[70],[32,3],[65,195,1],[70],[114],[4,64],[32,2],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,2],[68,0],[97],[184],[11],[252,3],[4,64],[12,1],[11],[32,6],[252,3],[40,0,0],[34,12],[65,30],[118],[34,13],[4,127],[65,5],[65,195,0],[32,13],[65,3],[70],[27],[33,11],[32,12],[65,255,255,255,255,3],[113],[5],[65,195,1],[33,11],[32,12],[11],[184],[33,10],[32,4],[33,16],[32,8],[32,8],[68,1],[160],[33,8],[33,17],[32,16],[252,3],[32,17],[252,3],[65,9],[108],[106],[34,15],[32,10],[34,14],[57,0,4],[32,15],[32,11],[58,0,12],[11],[32,6],[68,14],[160],[34,6],[12,1],[11],[11],[32,4],[252,3],[34,19],[32,8],[34,18],[252,3],[54,1,0],[5],[32,5],[68,80],[97],[32,5],[68,195],[97],[114],[32,5],[68,67],[97],[114],[4,64],[32,0],[252,3],[40,1,0],[184],[33,20],[32,4],[252,3],[34,19],[32,20],[34,18],[252,3],[54,1,0],[68,0],[33,8],[3,64],[32,8],[32,20],[99],[4,64],[32,4],[33,16],[32,8],[33,17],[32,16],[252,3],[32,17],[252,3],[65,9],[108],[106],[34,15],[32,8],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,9],[34,14],[57,0,4],[32,15],[32,9],[58,0,12],[32,8],[68,1],[160],[33,8],[12,1],[11],[11],[11],[32,0],[32,1],[16,builtin('__Porffor_object_underlying')],[34,9],[33,1],[33,0],[32,1],[184],[68,7],[97],[4,64],[32,0],[32,1],[16,builtin('__Object_keys')],[33,9],[34,21],[252,3],[33,22],[65,208,0],[33,25],[65,0],[33,24],[32,25],[65,208,0],[70],[32,25],[65,19],[70],[114],[32,25],[65,195,0],[70],[114],[32,25],[65,195,1],[70],[114],[32,25],[65,216,0],[78],[32,25],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,22],[40,1,0],[34,23],[4,64],[32,25],[33,3],[2,64],...t([19],()=>[[32,3],[65,19],[70],[4,64],[3,64],[32,22],[43,0,4],[33,26],[32,22],[45,0,12],[33,27],[32,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,22],[65,9],[106],[33,22],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,3],[65,195,0],[70],[4,64],[65,195,0],[33,27],[16,builtin('__Porffor_allocate')],[34,30],[65,1],[54,0,0],[3,64],[32,30],[32,22],[47,0,4],[59,0,4],[32,30],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,22],[65,2],[106],[33,22],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,3],[65,208,0],[70],[4,64],[3,64],[32,22],[43,0,4],[33,26],[32,22],[45,0,12],[33,27],[32,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,22],[65,9],[106],[33,22],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,3],[65,216,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[106],[45,0,4],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,3],[65,217,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[106],[44,0,4],[183],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,3],[65,218,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[106],[45,0,4],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,3],[65,219,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,2],[108],[106],[47,0,4],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,3],[65,220,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,2],[108],[106],[46,0,4],[183],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,3],[65,221,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,4],[108],[106],[40,0,4],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,3],[65,222,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,4],[108],[106],[40,0,4],[183],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,3],[65,223,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,4],[108],[106],[42,0,4],[187],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,3],[65,224,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,8],[108],[106],[43,0,4],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,3],[65,195,1],[70],[4,64],[65,195,1],[33,27],[16,builtin('__Porffor_allocate')],[34,30],[65,1],[54,0,0],[3,64],[32,30],[32,22],[32,24],[106],[45,0,4],[58,0,4],[32,30],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],[11],[11],[32,4],[65,208,0],[15]],
|
1709
1702
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1710
1703
|
locals:[124,127,124,124,124,124,124,127,124,127,127,127,124,127,124,124,124,127,124,124,127,127,127,127,124,127,124,127,127],localNames:["obj","obj#type","#logicinner_tmp","#typeswitch_tmp1","out","t","ptr","endPtr","i","#last_type","key","key#type","raw","msb","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","__length_setter_tmp","__member_setter_ptr_tmp","len","objKeys","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_itertype0","#forof_tmp0","#forof_tmp0#type","x","x#type","#forof_allocd"],
|
1711
1704
|
usedTypes:[80,67,195],
|
1712
1705
|
};
|
1713
1706
|
this.__Object_values = {
|
1714
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,2],[32,1],[33,3],[2,127],...t([0,128],()=>[[32,3],[65,0],[70],[32,3],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,3],[65,7],[70],[4,64],[32,2],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`Argument is nullish, expected object`),[11],[16,builtin('__Porffor_allocate')],[183],[33,4],[32,1],[184],[34,5],[68,7],[97],[4,64],[32,0],[68,5],[160],[34,6],[32,0],[252,2],[40,0,0],[183],[68,14],[162],[160],[33,7],[68,0],[33,8],[3,64],[32,6],[32,7],[99],[4,64],[2,64],[32,6],[252,2],[65,1],[16,builtin('__Porffor_object_isEnumerable')],[33,9],[183],[33,2],[32,9],[33,3],[2,124],...t([67,195],()=>[[32,3],[65,195,0],[70],[32,3],[65,195,1],[70],[114],[4,64],[32,2],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,2],[68,0],[97],[184],[11],[252,3],[4,64],[12,1],[11],[32,6],[252,3],[34,12],[43,0,4],[33,10],[32,12],[45,0,13],[33,11],[32,4],[33,15],[32,8],[32,8],[68,1],[160],[33,8],[33,16],[32,15],[252,3],[32,16],[252,3],[65,9],[108],[106],[34,14],[32,10],[34,13],[57,0,4],[32,14],[32,11],[58,0,12],[11],[32,6],[68,14],[160],[34,6],[12,1],[11],[11],[32,4],[252,3],[34,18],[32,8],[34,17],[252,3],[54,1,0],[5],[32,5],[68,80],[97],[32,5],[68,195],[97],[114],[32,5],[68,67],[97],[114],[4,64],[32,0],[252,3],[40,1,0],[184],[33,19],[32,4],[252,3],[34,18],[32,19],[34,17],[252,3],[54,1,0],[68,0],[33,8],[3,64],[32,8],[32,19],[99],[4,64],[2,64],[32,4],[33,15],[32,8],[33,16],[32,15],[252,3],[32,16],[252,3],[65,9],[108],[106],[34,14],[32,0],[33,15],[32,8],[33,20],[32,1],[33,3],[2,124],...t([67],()=>[[32,3],[65,195,0],[70],[4,64],[16,builtin('__Porffor_allocate')],[34,21],[65,1],[54,0,0],[32,21],[32,20],[252,3],[65,2],[108],[32,15],[252,3],[106],[47,0,4],[59,0,4],[32,21],[184],[65,195,0],[33,9],[12,1],[11]]),...t([80],()=>[[32,3],[65,208,0],[70],[4,64],[32,20],[252,3],[65,9],[108],[32,15],[252,3],[106],[34,22],[43,0,4],[32,22],[45,0,12],[33,9],[12,1],[11]]),...t([88],()=>[[32,3],[65,216,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([89],()=>[[32,3],[65,217,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[106],[44,0,4],[183],[65,1],[33,9],[12,1],[11]]),...t([90],()=>[[32,3],[65,218,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([91],()=>[[32,3],[65,219,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([92],()=>[[32,3],[65,220,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,9],[12,1],[11]]),...t([93],()=>[[32,3],[65,221,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([94],()=>[[32,3],[65,222,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,9],[12,1],[11]]),...t([95],()=>[[32,3],[65,223,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,9],[12,1],[11]]),...t([96],()=>[[32,3],[65,224,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,9],[12,1],[11]]),...t([128],()=>[[32,3],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot read property of undefined`),[68,0],[12,1],[11]]),...t([195],()=>[[32,3],[65,195,1],[70],[4,64],[16,builtin('__Porffor_allocate')],[34,21],[65,1],[54,0,0],[32,21],[32,20],[252,3],[32,15],[252,3],[106],[45,0,4],[58,0,4],[32,21],[184],[65,195,1],[33,9],[12,1],[11]]),[32,15],[252,3],[32,1],[32,20],[65,1],[16,builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[16,builtin('__Porffor_object_get')],[33,9],[11],[34,13],[57,0,4],[32,14],[32,9],[58,0,12],[11],[32,8],[68,1],[160],[33,8],[12,1],[11],[11],[11],[32,0],[32,1],[16,builtin('
|
1707
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,2],[32,1],[33,3],[2,127],...t([0,128],()=>[[32,3],[65,0],[70],[32,3],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,3],[65,7],[70],[4,64],[32,2],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`Argument is nullish, expected object`),[11],[16,builtin('__Porffor_allocate')],[183],[33,4],[32,1],[184],[34,5],[68,7],[97],[4,64],[32,0],[68,5],[160],[34,6],[32,0],[252,2],[40,0,0],[183],[68,14],[162],[160],[33,7],[68,0],[33,8],[3,64],[32,6],[32,7],[99],[4,64],[2,64],[32,6],[252,2],[65,1],[16,builtin('__Porffor_object_isEnumerable')],[33,9],[183],[33,2],[32,9],[33,3],[2,124],...t([67,195],()=>[[32,3],[65,195,0],[70],[32,3],[65,195,1],[70],[114],[4,64],[32,2],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,2],[68,0],[97],[184],[11],[252,3],[4,64],[12,1],[11],[32,6],[252,3],[34,12],[43,0,4],[33,10],[32,12],[45,0,13],[33,11],[32,4],[33,15],[32,8],[32,8],[68,1],[160],[33,8],[33,16],[32,15],[252,3],[32,16],[252,3],[65,9],[108],[106],[34,14],[32,10],[34,13],[57,0,4],[32,14],[32,11],[58,0,12],[11],[32,6],[68,14],[160],[34,6],[12,1],[11],[11],[32,4],[252,3],[34,18],[32,8],[34,17],[252,3],[54,1,0],[5],[32,5],[68,80],[97],[32,5],[68,195],[97],[114],[32,5],[68,67],[97],[114],[4,64],[32,0],[252,3],[40,1,0],[184],[33,19],[32,4],[252,3],[34,18],[32,19],[34,17],[252,3],[54,1,0],[68,0],[33,8],[3,64],[32,8],[32,19],[99],[4,64],[2,64],[32,4],[33,15],[32,8],[33,16],[32,15],[252,3],[32,16],[252,3],[65,9],[108],[106],[34,14],[32,0],[33,15],[32,8],[33,20],[32,1],[33,3],[2,124],...t([67],()=>[[32,3],[65,195,0],[70],[4,64],[16,builtin('__Porffor_allocate')],[34,21],[65,1],[54,0,0],[32,21],[32,20],[252,3],[65,2],[108],[32,15],[252,3],[106],[47,0,4],[59,0,4],[32,21],[184],[65,195,0],[33,9],[12,1],[11]]),...t([80],()=>[[32,3],[65,208,0],[70],[4,64],[32,20],[252,3],[65,9],[108],[32,15],[252,3],[106],[34,22],[43,0,4],[32,22],[45,0,12],[33,9],[12,1],[11]]),...t([88],()=>[[32,3],[65,216,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([89],()=>[[32,3],[65,217,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[106],[44,0,4],[183],[65,1],[33,9],[12,1],[11]]),...t([90],()=>[[32,3],[65,218,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([91],()=>[[32,3],[65,219,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([92],()=>[[32,3],[65,220,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,9],[12,1],[11]]),...t([93],()=>[[32,3],[65,221,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([94],()=>[[32,3],[65,222,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,9],[12,1],[11]]),...t([95],()=>[[32,3],[65,223,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,9],[12,1],[11]]),...t([96],()=>[[32,3],[65,224,0],[70],[4,64],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,9],[12,1],[11]]),...t([128],()=>[[32,3],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot read property of undefined`),[68,0],[12,1],[11]]),...t([195],()=>[[32,3],[65,195,1],[70],[4,64],[16,builtin('__Porffor_allocate')],[34,21],[65,1],[54,0,0],[32,21],[32,20],[252,3],[32,15],[252,3],[106],[45,0,4],[58,0,4],[32,21],[184],[65,195,1],[33,9],[12,1],[11]]),[32,15],[252,3],[32,1],[32,20],[65,1],[16,builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[16,builtin('__Porffor_object_get')],[33,9],[11],[34,13],[57,0,4],[32,14],[32,9],[58,0,12],[11],[32,8],[68,1],[160],[33,8],[12,1],[11],[11],[11],[32,0],[32,1],[16,builtin('__Porffor_object_underlying')],[34,9],[33,1],[33,0],[32,1],[184],[68,7],[97],[4,64],[32,0],[32,1],[16,builtin('__Object_values')],[33,9],[34,24],[252,3],[33,25],[65,208,0],[33,28],[65,0],[33,27],[32,28],[65,208,0],[70],[32,28],[65,19],[70],[114],[32,28],[65,195,0],[70],[114],[32,28],[65,195,1],[70],[114],[32,28],[65,216,0],[78],[32,28],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,25],[40,1,0],[34,26],[4,64],[32,28],[33,3],[2,64],...t([19],()=>[[32,3],[65,19],[70],[4,64],[3,64],[32,25],[43,0,4],[33,29],[32,25],[45,0,12],[33,30],[32,29],[33,31],[32,30],[33,32],[2,64],[32,4],[65,208,0],[32,31],[32,32],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,25],[65,9],[106],[33,25],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,3],[65,195,0],[70],[4,64],[65,195,0],[33,30],[16,builtin('__Porffor_allocate')],[34,33],[65,1],[54,0,0],[3,64],[32,33],[32,25],[47,0,4],[59,0,4],[32,33],[184],[34,29],[33,31],[32,30],[33,32],[2,64],[32,4],[65,208,0],[32,31],[32,32],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,25],[65,2],[106],[33,25],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,3],[65,208,0],[70],[4,64],[3,64],[32,25],[43,0,4],[33,29],[32,25],[45,0,12],[33,30],[32,29],[33,31],[32,30],[33,32],[2,64],[32,4],[65,208,0],[32,31],[32,32],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,25],[65,9],[106],[33,25],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,3],[65,216,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[106],[45,0,4],[184],[34,29],[33,31],[32,30],[33,32],[2,64],[32,4],[65,208,0],[32,31],[32,32],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,3],[65,217,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[106],[44,0,4],[183],[34,29],[33,31],[32,30],[33,32],[2,64],[32,4],[65,208,0],[32,31],[32,32],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,3],[65,218,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[106],[45,0,4],[184],[34,29],[33,31],[32,30],[33,32],[2,64],[32,4],[65,208,0],[32,31],[32,32],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,3],[65,219,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[65,2],[108],[106],[47,0,4],[184],[34,29],[33,31],[32,30],[33,32],[2,64],[32,4],[65,208,0],[32,31],[32,32],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,3],[65,220,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[65,2],[108],[106],[46,0,4],[183],[34,29],[33,31],[32,30],[33,32],[2,64],[32,4],[65,208,0],[32,31],[32,32],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,3],[65,221,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[65,4],[108],[106],[40,0,4],[184],[34,29],[33,31],[32,30],[33,32],[2,64],[32,4],[65,208,0],[32,31],[32,32],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,3],[65,222,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[65,4],[108],[106],[40,0,4],[183],[34,29],[33,31],[32,30],[33,32],[2,64],[32,4],[65,208,0],[32,31],[32,32],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,3],[65,223,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[65,4],[108],[106],[42,0,4],[187],[34,29],[33,31],[32,30],[33,32],[2,64],[32,4],[65,208,0],[32,31],[32,32],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,3],[65,224,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[65,8],[108],[106],[43,0,4],[34,29],[33,31],[32,30],[33,32],[2,64],[32,4],[65,208,0],[32,31],[32,32],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,3],[65,195,1],[70],[4,64],[65,195,1],[33,30],[16,builtin('__Porffor_allocate')],[34,33],[65,1],[54,0,0],[3,64],[32,33],[32,25],[32,27],[106],[45,0,4],[58,0,4],[32,33],[184],[34,29],[33,31],[32,30],[33,32],[2,64],[32,4],[65,208,0],[32,31],[32,32],[16,builtin('__Porffor_array_fastPush')],[33,9],[26],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],[11],[11],[32,4],[65,208,0],[15]],
|
1715
1708
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1716
1709
|
locals:[124,127,124,124,124,124,124,127,124,127,127,124,127,124,124,124,127,124,124,127,127,127,124,127,127,127,127,124,127,124,127,127],localNames:["obj","obj#type","#logicinner_tmp","#typeswitch_tmp1","out","t","ptr","endPtr","i","#last_type","val","val#type","ptr32","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","__length_setter_tmp","__member_setter_ptr_tmp","len","#member_prop","#member_allocd","#loadArray_offset","#swap","objVals","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_itertype0","#forof_tmp0","#forof_tmp0#type","x","x#type","#forof_allocd"],
|
1717
1710
|
usedTypes:[80,67,195],
|
@@ -1729,7 +1722,7 @@ locals:[124,127,127,127,127,124,127,124,127,127,124,127,124,127,124,124,124,127,
|
|
1729
1722
|
usedTypes:[7,67,195],
|
1730
1723
|
};
|
1731
1724
|
this.__Object_prototype_hasOwnProperty = {
|
1732
|
-
wasm:(_,{allocPage,builtin})=>[[32,2],[32,3],[16,builtin('__ecma262_ToPropertyKey')],[34,6],[33,5],[33,4],[32,1],[184],[34,7],[68,7],[97],[4,64],[32,0],[252,2],[32,1],[32,4],[252,2],[32,5],[16,builtin('__Porffor_object_lookup')],[33,6],[183],[68,-1],[98],[184],[65,2],[15],[11],[32,7],[68,6],[97],[4,64],...number(allocPage(_,'bytestring: __Object_prototype_hasOwnProperty/tmp1','i8'),124),[33,8],[32,4],[32,5],[32,8],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[252,2],[16,builtin('__Porffor_funcLut_isNameDeleted')],[183],[68,0],[97],[184],[65,2],[15],[11],...number(allocPage(_,'bytestring: __Object_prototype_hasOwnProperty/tmp2','i8'),124),[33,9],[32,4],[32,5],[32,9],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[252,2],[16,builtin('__Porffor_funcLut_isLengthDeleted')],[183],[68,0],[97],[184],[65,2],[15],[11],[32,0],[252,2],[32,1],[32,4],[252,2],[32,5],[16,builtin('__Porffor_object_lookup')],[33,6],[183],[68,-1],[98],[184],[65,2],[15],[11],[32,0],[32,1],[16,builtin('
|
1725
|
+
wasm:(_,{allocPage,builtin})=>[[32,2],[32,3],[16,builtin('__ecma262_ToPropertyKey')],[34,6],[33,5],[33,4],[32,1],[184],[34,7],[68,7],[97],[4,64],[32,0],[252,2],[32,1],[32,4],[252,2],[32,5],[16,builtin('__Porffor_object_lookup')],[33,6],[183],[68,-1],[98],[184],[65,2],[15],[11],[32,7],[68,6],[97],[4,64],...number(allocPage(_,'bytestring: __Object_prototype_hasOwnProperty/tmp1','i8'),124),[33,8],[32,4],[32,5],[32,8],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[252,2],[16,builtin('__Porffor_funcLut_isNameDeleted')],[183],[68,0],[97],[184],[65,2],[15],[11],...number(allocPage(_,'bytestring: __Object_prototype_hasOwnProperty/tmp2','i8'),124),[33,9],[32,4],[32,5],[32,9],[65,195,1],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[4,64],[32,0],[252,2],[16,builtin('__Porffor_funcLut_isLengthDeleted')],[183],[68,0],[97],[184],[65,2],[15],[11],[32,0],[252,2],[32,1],[32,4],[252,2],[32,5],[16,builtin('__Porffor_object_lookup')],[33,6],[183],[68,-1],[98],[184],[65,2],[15],[11],[32,0],[32,1],[16,builtin('__Porffor_object_underlying')],[34,6],[33,11],[33,10],[32,11],[184],[68,7],[97],[4,64],[32,10],[252,2],[32,11],[32,4],[252,2],[32,5],[16,builtin('__Porffor_object_lookup')],[33,6],[183],[68,-1],[98],[4,64],[68,1],[65,2],[15],[11],[11],[32,0],[32,1],[16,builtin('__Object_keys')],[33,6],[34,12],[65,208,0],[32,4],[32,5],[68,0],[65,128,1],[16,builtin('__Array_prototype_includes')],[34,6],[15]],
|
1733
1726
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1734
1727
|
locals:[124,127,127,124,124,124,124,127,124],localNames:["_this","_this#type","prop","prop#type","p","p#type","#last_type","t","tmp1","tmp2","obj","obj#type","keys"],
|
1735
1728
|
usedTypes:[195,80],
|
@@ -1766,7 +1759,7 @@ locals:[124,127,124,127,127,127,127,127,124,127,124,127,124,127,124,124,124,127,
|
|
1766
1759
|
usedTypes:[80,67,195],
|
1767
1760
|
};
|
1768
1761
|
this.__Object_prototype_propertyIsEnumerable = {
|
1769
|
-
wasm:(_,{builtin})=>[[32,2],[32,3],[16,builtin('__ecma262_ToPropertyKey')],[34,6],[33,5],[33,4],[32,1],[184],[68,7],[97],[4,64],[32,0],[252,2],[32,1],[32,4],[252,2],[32,5],[16,builtin('__Porffor_object_lookup')],[33,6],[183],[34,7],[68,-1],[97],[4,64],[68,0],[65,2],[15],[11],[32,7],[252,2],[65,1],[16,builtin('__Porffor_object_isEnumerable')],[33,6],[183],[32,6],[15],[11],[32,0],[32,1],[16,builtin('
|
1762
|
+
wasm:(_,{builtin})=>[[32,2],[32,3],[16,builtin('__ecma262_ToPropertyKey')],[34,6],[33,5],[33,4],[32,1],[184],[68,7],[97],[4,64],[32,0],[252,2],[32,1],[32,4],[252,2],[32,5],[16,builtin('__Porffor_object_lookup')],[33,6],[183],[34,7],[68,-1],[97],[4,64],[68,0],[65,2],[15],[11],[32,7],[252,2],[65,1],[16,builtin('__Porffor_object_isEnumerable')],[33,6],[183],[32,6],[15],[11],[32,0],[32,1],[16,builtin('__Porffor_object_underlying')],[34,6],[33,9],[33,8],[32,9],[184],[68,7],[97],[4,64],[32,8],[252,2],[32,9],[32,4],[252,2],[32,5],[16,builtin('__Porffor_object_lookup')],[33,6],[183],[34,7],[68,-1],[98],[4,64],[32,7],[252,2],[65,1],[16,builtin('__Porffor_object_isEnumerable')],[33,6],[183],[32,6],[15],[11],[11],[32,0],[32,1],[16,builtin('__Object_keys')],[33,6],[34,10],[65,208,0],[32,4],[32,5],[68,0],[65,128,1],[16,builtin('__Array_prototype_includes')],[34,6],[15]],
|
1770
1763
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1771
1764
|
locals:[124,127,127,124,124,127,124],localNames:["_this","_this#type","prop","prop#type","p","p#type","#last_type","entryPtr","obj","obj#type","keys"],
|
1772
1765
|
usedTypes:[80],
|
@@ -1813,19 +1806,19 @@ locals:[124,127,127,124,124,127,124,124,127,127,127,127,124,124,124,127,124,127,
|
|
1813
1806
|
usedTypes:[67,195,7],
|
1814
1807
|
};
|
1815
1808
|
this.__Object_getOwnPropertyDescriptors = {
|
1816
|
-
wasm:(_,{t,builtin,internalThrow})=>[[16,builtin('__Porffor_allocate')],[184],[33,2],[32,1],[184],[68,7],[98],[4,64],[32,0],[32,1],[16,builtin('
|
1809
|
+
wasm:(_,{t,builtin,internalThrow})=>[[16,builtin('__Porffor_allocate')],[184],[33,2],[32,1],[184],[68,7],[98],[4,64],[32,0],[32,1],[16,builtin('__Porffor_object_underlying')],[34,3],[33,1],[33,0],[32,1],[184],[68,7],[98],[4,64],[32,2],[65,7],[15],[11],[11],[32,0],[32,1],[16,builtin('__Reflect_ownKeys')],[33,3],[34,4],[252,3],[33,5],[65,208,0],[33,8],[65,0],[33,7],[32,8],[65,208,0],[70],[32,8],[65,19],[70],[114],[32,8],[65,195,0],[70],[114],[32,8],[65,195,1],[70],[114],[32,8],[65,216,0],[78],[32,8],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,5],[40,1,0],[34,6],[4,64],[32,8],[33,18],[2,64],...t([19],()=>[[32,18],[65,19],[70],[4,64],[3,64],[32,5],[43,0,4],[33,9],[32,5],[45,0,12],[33,10],[32,9],[33,11],[32,10],[33,12],[2,64],[32,2],[33,15],[32,11],[33,16],[32,15],[252,3],[65,7],[32,16],[32,12],[16,builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[32,0],[32,1],[32,11],[32,12],[16,builtin('__Object_getOwnPropertyDescriptor')],[34,3],[16,builtin('__Porffor_object_set')],[26],[26],[32,5],[65,9],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,18],[65,195,0],[70],[4,64],[65,195,0],[33,10],[16,builtin('__Porffor_allocate')],[34,19],[65,1],[54,0,0],[3,64],[32,19],[32,5],[47,0,4],[59,0,4],[32,19],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[32,2],[33,15],[32,11],[33,16],[32,15],[252,3],[65,7],[32,16],[32,12],[16,builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[32,0],[32,1],[32,11],[32,12],[16,builtin('__Object_getOwnPropertyDescriptor')],[34,3],[16,builtin('__Porffor_object_set')],[26],[26],[32,5],[65,2],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,18],[65,208,0],[70],[4,64],[3,64],[32,5],[43,0,4],[33,9],[32,5],[45,0,12],[33,10],[32,9],[33,11],[32,10],[33,12],[2,64],[32,2],[33,15],[32,11],[33,16],[32,15],[252,3],[65,7],[32,16],[32,12],[16,builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[32,0],[32,1],[32,11],[32,12],[16,builtin('__Object_getOwnPropertyDescriptor')],[34,3],[16,builtin('__Porffor_object_set')],[26],[26],[32,5],[65,9],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,18],[65,216,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[32,2],[33,15],[32,11],[33,16],[32,15],[252,3],[65,7],[32,16],[32,12],[16,builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[32,0],[32,1],[32,11],[32,12],[16,builtin('__Object_getOwnPropertyDescriptor')],[34,3],[16,builtin('__Porffor_object_set')],[26],[26],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,18],[65,217,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[44,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[32,2],[33,15],[32,11],[33,16],[32,15],[252,3],[65,7],[32,16],[32,12],[16,builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[32,0],[32,1],[32,11],[32,12],[16,builtin('__Object_getOwnPropertyDescriptor')],[34,3],[16,builtin('__Porffor_object_set')],[26],[26],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,18],[65,218,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[32,2],[33,15],[32,11],[33,16],[32,15],[252,3],[65,7],[32,16],[32,12],[16,builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[32,0],[32,1],[32,11],[32,12],[16,builtin('__Object_getOwnPropertyDescriptor')],[34,3],[16,builtin('__Porffor_object_set')],[26],[26],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,18],[65,219,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[47,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[32,2],[33,15],[32,11],[33,16],[32,15],[252,3],[65,7],[32,16],[32,12],[16,builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[32,0],[32,1],[32,11],[32,12],[16,builtin('__Object_getOwnPropertyDescriptor')],[34,3],[16,builtin('__Porffor_object_set')],[26],[26],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,18],[65,220,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[46,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[32,2],[33,15],[32,11],[33,16],[32,15],[252,3],[65,7],[32,16],[32,12],[16,builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[32,0],[32,1],[32,11],[32,12],[16,builtin('__Object_getOwnPropertyDescriptor')],[34,3],[16,builtin('__Porffor_object_set')],[26],[26],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,18],[65,221,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[32,2],[33,15],[32,11],[33,16],[32,15],[252,3],[65,7],[32,16],[32,12],[16,builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[32,0],[32,1],[32,11],[32,12],[16,builtin('__Object_getOwnPropertyDescriptor')],[34,3],[16,builtin('__Porffor_object_set')],[26],[26],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,18],[65,222,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[32,2],[33,15],[32,11],[33,16],[32,15],[252,3],[65,7],[32,16],[32,12],[16,builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[32,0],[32,1],[32,11],[32,12],[16,builtin('__Object_getOwnPropertyDescriptor')],[34,3],[16,builtin('__Porffor_object_set')],[26],[26],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,18],[65,223,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[42,0,4],[187],[34,9],[33,11],[32,10],[33,12],[2,64],[32,2],[33,15],[32,11],[33,16],[32,15],[252,3],[65,7],[32,16],[32,12],[16,builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[32,0],[32,1],[32,11],[32,12],[16,builtin('__Object_getOwnPropertyDescriptor')],[34,3],[16,builtin('__Porffor_object_set')],[26],[26],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,18],[65,224,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,8],[108],[106],[43,0,4],[34,9],[33,11],[32,10],[33,12],[2,64],[32,2],[33,15],[32,11],[33,16],[32,15],[252,3],[65,7],[32,16],[32,12],[16,builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[32,0],[32,1],[32,11],[32,12],[16,builtin('__Object_getOwnPropertyDescriptor')],[34,3],[16,builtin('__Porffor_object_set')],[26],[26],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,18],[65,195,1],[70],[4,64],[65,195,1],[33,10],[16,builtin('__Porffor_allocate')],[34,19],[65,1],[54,0,0],[3,64],[32,19],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,19],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[32,2],[33,15],[32,11],[33,16],[32,15],[252,3],[65,7],[32,16],[32,12],[16,builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[32,0],[32,1],[32,11],[32,12],[16,builtin('__Object_getOwnPropertyDescriptor')],[34,3],[16,builtin('__Porffor_object_set')],[26],[26],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],[32,2],[65,7],[15]],
|
1817
1810
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1818
1811
|
locals:[124,127,124,127,127,127,127,124,127,124,127,124,127,124,124,127,127,127],localNames:["obj","obj#type","out","#last_type","keys","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_itertype0","#forof_tmp0","#forof_tmp0#type","x","x#type","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#swap","#typeswitch_tmp1","#forof_allocd"],
|
1819
1812
|
usedTypes:[7,80,67,195],
|
1820
1813
|
};
|
1821
1814
|
this.__Object_getOwnPropertyNames = {
|
1822
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,2],[32,1],[33,3],[2,127],...t([0,128],()=>[[32,3],[65,0],[70],[32,3],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,3],[65,7],[70],[4,64],[32,2],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`Argument is nullish, expected object`),[11],[16,builtin('__Porffor_allocate')],[183],[33,4],[32,1],[184],[34,5],[68,7],[97],[4,64],[32,0],[68,5],[160],[34,6],[32,0],[252,2],[40,0,0],[183],[68,14],[162],[160],[33,7],[68,0],[33,8],[3,64],[32,6],[32,7],[99],[4,64],[2,64],[32,6],[252,3],[40,0,0],[34,11],[65,30],[118],[34,12],[4,127],[65,5],[65,195,0],[32,12],[65,3],[70],[27],[33,10],[32,11],[65,255,255,255,255,3],[113],[5],[65,195,1],[33,10],[32,11],[11],[184],[33,9],[32,10],[184],[68,5],[97],[4,64],[12,1],[11],[32,4],[33,15],[32,8],[32,8],[68,1],[160],[33,8],[33,16],[32,15],[252,3],[32,16],[252,3],[65,9],[108],[106],[34,14],[32,9],[34,13],[57,0,4],[32,14],[32,10],[58,0,12],[11],[32,6],[68,14],[160],[34,6],[12,1],[11],[11],[32,4],[252,3],[34,18],[32,8],[34,17],[252,3],[54,1,0],[5],[32,5],[68,80],[97],[32,5],[68,195],[97],[114],[32,5],[68,67],[97],[114],[4,64],[32,0],[252,3],[40,1,0],[184],[33,19],[32,4],[252,3],[34,18],[32,19],[34,17],[252,3],[54,1,0],[68,0],[33,8],[3,64],[32,8],[32,19],[99],[4,64],[32,4],[33,15],[32,8],[33,16],[32,15],[252,3],[32,16],[252,3],[65,9],[108],[106],[34,14],[32,8],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,20],[34,13],[57,0,4],[32,14],[32,20],[58,0,12],[32,8],[68,1],[160],[33,8],[12,1],[11],[11],[11],[32,0],[32,1],[16,builtin('
|
1815
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,2],[32,1],[33,3],[2,127],...t([0,128],()=>[[32,3],[65,0],[70],[32,3],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,3],[65,7],[70],[4,64],[32,2],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`Argument is nullish, expected object`),[11],[16,builtin('__Porffor_allocate')],[183],[33,4],[32,1],[184],[34,5],[68,7],[97],[4,64],[32,0],[68,5],[160],[34,6],[32,0],[252,2],[40,0,0],[183],[68,14],[162],[160],[33,7],[68,0],[33,8],[3,64],[32,6],[32,7],[99],[4,64],[2,64],[32,6],[252,3],[40,0,0],[34,11],[65,30],[118],[34,12],[4,127],[65,5],[65,195,0],[32,12],[65,3],[70],[27],[33,10],[32,11],[65,255,255,255,255,3],[113],[5],[65,195,1],[33,10],[32,11],[11],[184],[33,9],[32,10],[184],[68,5],[97],[4,64],[12,1],[11],[32,4],[33,15],[32,8],[32,8],[68,1],[160],[33,8],[33,16],[32,15],[252,3],[32,16],[252,3],[65,9],[108],[106],[34,14],[32,9],[34,13],[57,0,4],[32,14],[32,10],[58,0,12],[11],[32,6],[68,14],[160],[34,6],[12,1],[11],[11],[32,4],[252,3],[34,18],[32,8],[34,17],[252,3],[54,1,0],[5],[32,5],[68,80],[97],[32,5],[68,195],[97],[114],[32,5],[68,67],[97],[114],[4,64],[32,0],[252,3],[40,1,0],[184],[33,19],[32,4],[252,3],[34,18],[32,19],[34,17],[252,3],[54,1,0],[68,0],[33,8],[3,64],[32,8],[32,19],[99],[4,64],[32,4],[33,15],[32,8],[33,16],[32,15],[252,3],[32,16],[252,3],[65,9],[108],[106],[34,14],[32,8],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,20],[34,13],[57,0,4],[32,14],[32,20],[58,0,12],[32,8],[68,1],[160],[33,8],[12,1],[11],[11],[11],[32,0],[32,1],[16,builtin('__Porffor_object_underlying')],[34,20],[33,1],[33,0],[32,1],[184],[68,7],[97],[4,64],[32,0],[32,1],[16,builtin('__Object_getOwnPropertyNames')],[33,20],[34,21],[252,3],[33,22],[65,208,0],[33,25],[65,0],[33,24],[32,25],[65,208,0],[70],[32,25],[65,19],[70],[114],[32,25],[65,195,0],[70],[114],[32,25],[65,195,1],[70],[114],[32,25],[65,216,0],[78],[32,25],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,22],[40,1,0],[34,23],[4,64],[32,25],[33,3],[2,64],...t([19],()=>[[32,3],[65,19],[70],[4,64],[3,64],[32,22],[43,0,4],[33,26],[32,22],[45,0,12],[33,27],[32,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,20],[26],[32,22],[65,9],[106],[33,22],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,3],[65,195,0],[70],[4,64],[65,195,0],[33,27],[16,builtin('__Porffor_allocate')],[34,30],[65,1],[54,0,0],[3,64],[32,30],[32,22],[47,0,4],[59,0,4],[32,30],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,20],[26],[32,22],[65,2],[106],[33,22],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,3],[65,208,0],[70],[4,64],[3,64],[32,22],[43,0,4],[33,26],[32,22],[45,0,12],[33,27],[32,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,20],[26],[32,22],[65,9],[106],[33,22],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,3],[65,216,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[106],[45,0,4],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,20],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,3],[65,217,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[106],[44,0,4],[183],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,20],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,3],[65,218,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[106],[45,0,4],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,20],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,3],[65,219,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,2],[108],[106],[47,0,4],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,20],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,3],[65,220,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,2],[108],[106],[46,0,4],[183],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,20],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,3],[65,221,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,4],[108],[106],[40,0,4],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,20],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,3],[65,222,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,4],[108],[106],[40,0,4],[183],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,20],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,3],[65,223,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,4],[108],[106],[42,0,4],[187],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,20],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,3],[65,224,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,8],[108],[106],[43,0,4],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,20],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,3],[65,195,1],[70],[4,64],[65,195,1],[33,27],[16,builtin('__Porffor_allocate')],[34,30],[65,1],[54,0,0],[3,64],[32,30],[32,22],[32,24],[106],[45,0,4],[58,0,4],[32,30],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,4],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,20],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],[11],[11],[32,4],[65,208,0],[15]],
|
1823
1816
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1824
1817
|
locals:[124,127,124,124,124,124,124,124,127,127,127,124,127,124,124,124,127,124,127,124,127,127,127,127,124,127,124,127,127],localNames:["obj","obj#type","#logicinner_tmp","#typeswitch_tmp1","out","t","ptr","endPtr","i","key","key#type","raw","msb","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","__length_setter_tmp","__member_setter_ptr_tmp","len","#last_type","objKeys","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_itertype0","#forof_tmp0","#forof_tmp0#type","x","x#type","#forof_allocd"],
|
1825
1818
|
usedTypes:[80,67,195],
|
1826
1819
|
};
|
1827
1820
|
this.__Object_getOwnPropertySymbols = {
|
1828
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,2],[32,1],[33,3],[2,127],...t([0,128],()=>[[32,3],[65,0],[70],[32,3],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,3],[65,7],[70],[4,64],[32,2],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`Argument is nullish, expected object`),[11],[16,builtin('__Porffor_allocate')],[183],[33,4],[32,0],[32,1],[16,builtin('
|
1821
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,2],[32,1],[33,3],[2,127],...t([0,128],()=>[[32,3],[65,0],[70],[32,3],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,3],[65,7],[70],[4,64],[32,2],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`Argument is nullish, expected object`),[11],[16,builtin('__Porffor_allocate')],[183],[33,4],[32,0],[32,1],[16,builtin('__Porffor_object_underlying')],[34,5],[33,1],[33,0],[32,1],[184],[34,6],[68,7],[97],[4,64],[32,0],[68,5],[160],[34,7],[32,0],[252,2],[40,0,0],[183],[68,14],[162],[160],[33,8],[68,0],[33,9],[3,64],[32,7],[32,8],[99],[4,64],[2,64],[32,7],[252,3],[40,0,0],[34,12],[65,30],[118],[34,13],[4,127],[65,5],[65,195,0],[32,13],[65,3],[70],[27],[33,11],[32,12],[65,255,255,255,255,3],[113],[5],[65,195,1],[33,11],[32,12],[11],[184],[33,10],[32,11],[184],[68,5],[98],[4,64],[12,1],[11],[32,4],[33,16],[32,9],[32,9],[68,1],[160],[33,9],[33,17],[32,16],[252,3],[32,17],[252,3],[65,9],[108],[106],[34,15],[32,10],[34,14],[57,0,4],[32,15],[32,11],[58,0,12],[11],[32,7],[68,14],[160],[34,7],[12,1],[11],[11],[32,4],[252,3],[34,19],[32,9],[34,18],[252,3],[54,1,0],[11],[32,4],[65,208,0],[15]],
|
1829
1822
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1830
1823
|
locals:[124,127,124,127,124,124,124,124,124,127,127,127,124,127,124,124,124,127],localNames:["obj","obj#type","#logicinner_tmp","#typeswitch_tmp1","out","#last_type","t","ptr","endPtr","i","key","key#type","raw","msb","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","__length_setter_tmp","__member_setter_ptr_tmp"],
|
1831
1824
|
usedTypes:[80],
|
@@ -2173,7 +2166,7 @@ params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
|
2173
2166
|
locals:[127,124,127],localNames:["target","target#type","proto","proto#type","#last_type","#logicinner_tmp","#typeswitch_tmp1"],
|
2174
2167
|
};
|
2175
2168
|
this.__Reflect_ownKeys = {
|
2176
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[252,2],[32,1],[16,builtin('__Porffor_object_isObject')],[33,2],[183],[33,3],[32,2],[33,4],[2,124],...t([67,195],()=>[[32,4],[65,195,0],[70],[32,4],[65,195,1],[70],[114],[4,64],[32,3],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,3],[68,0],[97],[184],[11],[252,3],[4,64],...internalThrow(_,'TypeError',`Target is a non-object`),[11],[16,builtin('__Porffor_allocate')],[183],[33,5],[32,1],[184],[34,6],[68,7],[97],[4,64],[32,0],[68,5],[160],[34,7],[32,0],[252,2],[40,0,0],[183],[68,14],[162],[160],[33,8],[68,0],[33,9],[3,64],[32,7],[32,8],[99],[4,64],[32,7],[252,3],[40,0,0],[34,12],[65,30],[118],[34,13],[4,127],[65,5],[65,195,0],[32,13],[65,3],[70],[27],[33,11],[32,12],[65,255,255,255,255,3],[113],[5],[65,195,1],[33,11],[32,12],[11],[184],[33,10],[32,5],[33,16],[32,9],[32,9],[68,1],[160],[33,9],[33,17],[32,16],[252,3],[32,17],[252,3],[65,9],[108],[106],[34,15],[32,10],[34,14],[57,0,4],[32,15],[32,11],[58,0,12],[32,7],[68,14],[160],[34,7],[12,1],[11],[11],[32,5],[252,3],[34,19],[32,9],[34,18],[252,3],[54,1,0],[5],[32,6],[68,80],[97],[32,6],[68,195],[97],[114],[32,6],[68,67],[97],[114],[4,64],...internalThrow(_,'ReferenceError',`obj is not defined`),[65,0],[40,1,0],[184],[33,20],[32,5],[252,3],[34,19],[32,20],[34,18],[252,3],[54,1,0],[68,0],[33,9],[3,64],[32,9],[32,20],[99],[4,64],[32,5],[33,16],[32,9],[33,17],[32,16],[252,3],[32,17],[252,3],[65,9],[108],[106],[34,15],[32,9],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,2],[34,14],[57,0,4],[32,15],[32,2],[58,0,12],[32,9],[68,1],[160],[33,9],[12,1],[11],[11],[11],[32,0],[32,1],[16,builtin('
|
2169
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[252,2],[32,1],[16,builtin('__Porffor_object_isObject')],[33,2],[183],[33,3],[32,2],[33,4],[2,124],...t([67,195],()=>[[32,4],[65,195,0],[70],[32,4],[65,195,1],[70],[114],[4,64],[32,3],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,3],[68,0],[97],[184],[11],[252,3],[4,64],...internalThrow(_,'TypeError',`Target is a non-object`),[11],[16,builtin('__Porffor_allocate')],[183],[33,5],[32,1],[184],[34,6],[68,7],[97],[4,64],[32,0],[68,5],[160],[34,7],[32,0],[252,2],[40,0,0],[183],[68,14],[162],[160],[33,8],[68,0],[33,9],[3,64],[32,7],[32,8],[99],[4,64],[32,7],[252,3],[40,0,0],[34,12],[65,30],[118],[34,13],[4,127],[65,5],[65,195,0],[32,13],[65,3],[70],[27],[33,11],[32,12],[65,255,255,255,255,3],[113],[5],[65,195,1],[33,11],[32,12],[11],[184],[33,10],[32,5],[33,16],[32,9],[32,9],[68,1],[160],[33,9],[33,17],[32,16],[252,3],[32,17],[252,3],[65,9],[108],[106],[34,15],[32,10],[34,14],[57,0,4],[32,15],[32,11],[58,0,12],[32,7],[68,14],[160],[34,7],[12,1],[11],[11],[32,5],[252,3],[34,19],[32,9],[34,18],[252,3],[54,1,0],[5],[32,6],[68,80],[97],[32,6],[68,195],[97],[114],[32,6],[68,67],[97],[114],[4,64],...internalThrow(_,'ReferenceError',`obj is not defined`),[65,0],[40,1,0],[184],[33,20],[32,5],[252,3],[34,19],[32,20],[34,18],[252,3],[54,1,0],[68,0],[33,9],[3,64],[32,9],[32,20],[99],[4,64],[32,5],[33,16],[32,9],[33,17],[32,16],[252,3],[32,17],[252,3],[65,9],[108],[106],[34,15],[32,9],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,2],[34,14],[57,0,4],[32,15],[32,2],[58,0,12],[32,9],[68,1],[160],[33,9],[12,1],[11],[11],[11],[32,0],[32,1],[16,builtin('__Porffor_object_underlying')],[34,2],[33,1],[33,0],[32,1],[184],[68,7],[97],[4,64],[32,0],[32,1],[16,builtin('__Reflect_ownKeys')],[33,2],[34,21],[252,3],[33,22],[65,208,0],[33,25],[65,0],[33,24],[32,25],[65,208,0],[70],[32,25],[65,19],[70],[114],[32,25],[65,195,0],[70],[114],[32,25],[65,195,1],[70],[114],[32,25],[65,216,0],[78],[32,25],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,22],[40,1,0],[34,23],[4,64],[32,25],[33,4],[2,64],...t([19],()=>[[32,4],[65,19],[70],[4,64],[3,64],[32,22],[43,0,4],[33,26],[32,22],[45,0,12],[33,27],[32,26],[33,28],[32,27],[33,29],[2,64],[32,5],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,2],[26],[32,22],[65,9],[106],[33,22],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[65,195,0],[33,27],[16,builtin('__Porffor_allocate')],[34,30],[65,1],[54,0,0],[3,64],[32,30],[32,22],[47,0,4],[59,0,4],[32,30],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,5],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,2],[26],[32,22],[65,2],[106],[33,22],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,4],[65,208,0],[70],[4,64],[3,64],[32,22],[43,0,4],[33,26],[32,22],[45,0,12],[33,27],[32,26],[33,28],[32,27],[33,29],[2,64],[32,5],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,2],[26],[32,22],[65,9],[106],[33,22],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,4],[65,216,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[106],[45,0,4],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,5],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,2],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,4],[65,217,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[106],[44,0,4],[183],[34,26],[33,28],[32,27],[33,29],[2,64],[32,5],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,2],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,4],[65,218,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[106],[45,0,4],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,5],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,2],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,4],[65,219,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,2],[108],[106],[47,0,4],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,5],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,2],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,4],[65,220,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,2],[108],[106],[46,0,4],[183],[34,26],[33,28],[32,27],[33,29],[2,64],[32,5],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,2],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,4],[65,221,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,4],[108],[106],[40,0,4],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,5],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,2],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,4],[65,222,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,4],[108],[106],[40,0,4],[183],[34,26],[33,28],[32,27],[33,29],[2,64],[32,5],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,2],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,4],[65,223,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,4],[108],[106],[42,0,4],[187],[34,26],[33,28],[32,27],[33,29],[2,64],[32,5],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,2],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,4],[65,224,0],[70],[4,64],[65,1],[33,27],[3,64],[32,22],[40,0,4],[32,24],[65,8],[108],[106],[43,0,4],[34,26],[33,28],[32,27],[33,29],[2,64],[32,5],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,2],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[65,195,1],[33,27],[16,builtin('__Porffor_allocate')],[34,30],[65,1],[54,0,0],[3,64],[32,30],[32,22],[32,24],[106],[45,0,4],[58,0,4],[32,30],[184],[34,26],[33,28],[32,27],[33,29],[2,64],[32,5],[65,208,0],[32,28],[32,29],[16,builtin('__Porffor_array_fastPush')],[33,2],[26],[32,24],[65,1],[106],[34,24],[32,23],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],[11],[11],[32,5],[65,208,0],[15]],
|
2177
2170
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2178
2171
|
locals:[127,124,127,124,124,124,124,124,124,127,127,127,124,127,124,124,124,127,124,124,127,127,127,127,124,127,124,127,127],localNames:["target","target#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","out","t","ptr","endPtr","i","key","key#type","raw","msb","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","__length_setter_tmp","__member_setter_ptr_tmp","len","objKeys","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_itertype0","#forof_tmp0","#forof_tmp0#type","x","x#type","#forof_allocd"],
|
2179
2172
|
usedTypes:[80,67,195],
|
package/package.json
CHANGED