porffor 0.55.23 → 0.55.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiler/builtins/_internal_object.ts +24 -22
- package/compiler/builtins/console.ts +1 -1
- package/compiler/builtins/object.ts +15 -11
- package/compiler/builtins/object_prototypeWithHidden.js +1 -1
- package/compiler/builtins_precompiled.js +23 -21
- package/compiler/codegen.js +19 -73
- package/package.json +1 -1
- package/r.cjs +5 -4
- package/runner/flamegraph.js +13 -13
- package/runner/index.js +1 -1
@@ -182,8 +182,8 @@ export const __Porffor_object_accessorSet = (entryPtr: i32): Function|undefined
|
|
182
182
|
|
183
183
|
export const __Porffor_object_hash = (key: any): i32 => {
|
184
184
|
if (Porffor.wasm`local.get ${key+1}` == Porffor.TYPES.symbol) {
|
185
|
-
// symbol, hash is just
|
186
|
-
return
|
185
|
+
// symbol, hash is unused so just return 0
|
186
|
+
return 0;
|
187
187
|
}
|
188
188
|
|
189
189
|
// bytestring or string, fnv-1a hash (custom variant)
|
@@ -386,26 +386,28 @@ export const __Porffor_object_lookup = (obj: any, target: any, targetHash: i32):
|
|
386
386
|
}
|
387
387
|
}
|
388
388
|
} else {
|
389
|
-
if (targetHash == 0) targetHash = __Porffor_object_hash(target);
|
390
389
|
for (; ptr < endPtr; ptr += 18) {
|
391
|
-
|
392
|
-
|
393
|
-
// todo: is below needed anymore?
|
394
|
-
if (hash == 0) {
|
395
|
-
if (out) break; // ran out of keys
|
396
|
-
out = true;
|
397
|
-
}
|
398
|
-
|
399
|
-
if (hash == targetHash) {
|
390
|
+
if (Porffor.wasm.i32.load(ptr, 0, 0) == targetHash) {
|
400
391
|
const key: i32 = Porffor.wasm.i32.load(ptr, 0, 4);
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
392
|
+
Porffor.wasm`
|
393
|
+
local.get ${key}
|
394
|
+
i32.const 2147483647
|
395
|
+
i32.and
|
396
|
+
|
397
|
+
i32.const 67 ;; bytestring
|
398
|
+
i32.const 195 ;; string
|
399
|
+
local.get ${key}
|
400
|
+
i32.const 30
|
401
|
+
i32.shr_u
|
402
|
+
select
|
403
|
+
|
404
|
+
local.get ${target}
|
405
|
+
local.get ${target+1}
|
406
|
+
call __Porffor_strcmp
|
407
|
+
if 64
|
408
|
+
local.get ${ptr}
|
409
|
+
return
|
410
|
+
end`;
|
409
411
|
}
|
410
412
|
}
|
411
413
|
}
|
@@ -801,7 +803,7 @@ export const __Porffor_object_delete = (obj: any, key: any): boolean => {
|
|
801
803
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) return true;
|
802
804
|
}
|
803
805
|
|
804
|
-
const entryPtr: i32 = __Porffor_object_lookup(obj, key);
|
806
|
+
const entryPtr: i32 = __Porffor_object_lookup(obj, key, __Porffor_object_hash(key));
|
805
807
|
if (entryPtr == -1) {
|
806
808
|
// not found, stop
|
807
809
|
return true;
|
@@ -851,7 +853,7 @@ export const __Porffor_object_deleteStrict = (obj: any, key: any): boolean => {
|
|
851
853
|
if (Porffor.wasm`local.get ${obj+1}` != Porffor.TYPES.object) return true;
|
852
854
|
}
|
853
855
|
|
854
|
-
const entryPtr: i32 = __Porffor_object_lookup(obj, key);
|
856
|
+
const entryPtr: i32 = __Porffor_object_lookup(obj, key, __Porffor_object_hash(key));
|
855
857
|
if (entryPtr == -1) {
|
856
858
|
// not found, stop
|
857
859
|
return true;
|
@@ -181,7 +181,7 @@ export const __Porffor_print = (arg: any, colors: boolean = true, depth: number
|
|
181
181
|
|
182
182
|
case Porffor.TYPES.function:
|
183
183
|
Porffor.printStatic('[Function ');
|
184
|
-
__Porffor_printString(__Porffor_funcLut_name(arg));
|
184
|
+
__Porffor_printString(__Porffor_funcLut_name(arg) || '(anonymous)');
|
185
185
|
Porffor.printStatic(']');
|
186
186
|
return;
|
187
187
|
|
@@ -143,16 +143,17 @@ export const __Object_fromEntries = (iterable: any): object => {
|
|
143
143
|
|
144
144
|
|
145
145
|
export const __Object_prototype_hasOwnProperty = (_this: any, prop: any) => {
|
146
|
+
if (_this == null) throw new TypeError('Argument is nullish, expected object');
|
146
147
|
const p: any = ecma262.ToPropertyKey(prop);
|
147
148
|
|
148
149
|
const t: i32 = Porffor.rawType(_this);
|
149
150
|
if (t == Porffor.TYPES.object) {
|
150
|
-
return Porffor.object.lookup(_this, p) != -1;
|
151
|
+
return Porffor.object.lookup(_this, p, __Porffor_object_hash(p)) != -1;
|
151
152
|
}
|
152
153
|
|
153
154
|
const obj: any = __Porffor_object_underlying(_this);
|
154
155
|
if (Porffor.rawType(obj) == Porffor.TYPES.object) {
|
155
|
-
if (Porffor.object.lookup(obj, p) != -1) return true;
|
156
|
+
if (Porffor.object.lookup(obj, p, __Porffor_object_hash(p)) != -1) return true;
|
156
157
|
}
|
157
158
|
|
158
159
|
const keys: any[] = __Object_keys(_this);
|
@@ -172,7 +173,7 @@ export const __Porffor_object_in = (obj: any, prop: any): boolean => {
|
|
172
173
|
|
173
174
|
let lastProto = obj;
|
174
175
|
while (true) {
|
175
|
-
obj = Porffor.object.getPrototypeWithHidden(obj);
|
176
|
+
obj = Porffor.object.getPrototypeWithHidden(obj, Porffor.rawType(obj));
|
176
177
|
if (Porffor.fastOr(obj == null, Porffor.wasm`local.get ${obj}` == Porffor.wasm`local.get ${lastProto}`)) break;
|
177
178
|
|
178
179
|
if (__Object_prototype_hasOwnProperty(obj, prop)) return true;
|
@@ -193,7 +194,7 @@ export const __Porffor_object_instanceof = (obj: any, constr: any, checkProto: a
|
|
193
194
|
|
194
195
|
let lastProto = obj;
|
195
196
|
while (true) {
|
196
|
-
obj = Porffor.object.getPrototypeWithHidden(obj);
|
197
|
+
obj = Porffor.object.getPrototypeWithHidden(obj, Porffor.rawType(obj));
|
197
198
|
if (Porffor.fastOr(obj == null, Porffor.wasm`local.get ${obj}` == Porffor.wasm`local.get ${lastProto}`)) break;
|
198
199
|
|
199
200
|
if (obj === checkProto) return true;
|
@@ -235,10 +236,12 @@ export const __Porffor_object_assignAll = (target: any, source: any): any => {
|
|
235
236
|
|
236
237
|
|
237
238
|
export const __Object_prototype_propertyIsEnumerable = (_this: any, prop: any) => {
|
239
|
+
if (_this == null) throw new TypeError('Argument is nullish, expected object');
|
240
|
+
|
238
241
|
const p: any = ecma262.ToPropertyKey(prop);
|
239
242
|
|
240
243
|
if (Porffor.rawType(_this) == Porffor.TYPES.object) {
|
241
|
-
const entryPtr: i32 = Porffor.object.lookup(_this, p);
|
244
|
+
const entryPtr: i32 = Porffor.object.lookup(_this, p, __Porffor_object_hash(p));
|
242
245
|
if (entryPtr == -1) return false;
|
243
246
|
|
244
247
|
return Porffor.object.isEnumerable(entryPtr);
|
@@ -246,7 +249,7 @@ export const __Object_prototype_propertyIsEnumerable = (_this: any, prop: any) =
|
|
246
249
|
|
247
250
|
const obj: any = __Porffor_object_underlying(_this);
|
248
251
|
if (Porffor.rawType(obj) == Porffor.TYPES.object) {
|
249
|
-
const entryPtr: i32 = Porffor.object.lookup(obj, p);
|
252
|
+
const entryPtr: i32 = Porffor.object.lookup(obj, p, __Porffor_object_hash(p));
|
250
253
|
if (entryPtr != -1) return Porffor.object.isEnumerable(entryPtr);
|
251
254
|
}
|
252
255
|
|
@@ -339,9 +342,10 @@ export const __Object_isSealed = (obj: any): boolean => {
|
|
339
342
|
|
340
343
|
|
341
344
|
export const __Object_getOwnPropertyDescriptor = (obj: any, prop: any): object|undefined => {
|
345
|
+
if (obj == null) throw new TypeError('Argument is nullish, expected object');
|
342
346
|
const p: any = ecma262.ToPropertyKey(prop);
|
343
347
|
|
344
|
-
const entryPtr: i32 = Porffor.object.lookup(obj, p);
|
348
|
+
const entryPtr: i32 = Porffor.object.lookup(obj, p, __Porffor_object_hash(p));
|
345
349
|
if (entryPtr == -1) {
|
346
350
|
if (Porffor.rawType(obj) == Porffor.TYPES.function) {
|
347
351
|
// hack: function .name and .length
|
@@ -636,7 +640,7 @@ export const __Object_groupBy = (items: any, callbackFn: any): object => {
|
|
636
640
|
|
637
641
|
export const __Object_getPrototypeOf = (obj: any): any => {
|
638
642
|
if (obj == null) throw new TypeError('Object is nullish, expected object');
|
639
|
-
return Porffor.object.getPrototypeWithHidden(obj);
|
643
|
+
return Porffor.object.getPrototypeWithHidden(obj, Porffor.rawType(obj));
|
640
644
|
};
|
641
645
|
|
642
646
|
export const __Object_setPrototypeOf = (obj: any, proto: any): any => {
|
@@ -653,7 +657,7 @@ export const __Object_prototype_isPrototypeOf = (_this: any, obj: any) => {
|
|
653
657
|
if (_this == null) throw new TypeError('This is nullish, expected object');
|
654
658
|
|
655
659
|
if (!Porffor.object.isObject(obj)) return false;
|
656
|
-
return _this == Porffor.object.getPrototypeWithHidden(obj);
|
660
|
+
return _this == Porffor.object.getPrototypeWithHidden(obj, Porffor.rawType(obj));
|
657
661
|
};
|
658
662
|
|
659
663
|
|
@@ -665,7 +669,7 @@ export const __Object_prototype_toString = (_this: any) => {
|
|
665
669
|
let ovr: any = obj.toString;
|
666
670
|
if (Porffor.rawType(ovr) == Porffor.TYPES.function && ovr != __Object_prototype_toString) return ovr.call(_this);
|
667
671
|
|
668
|
-
const entryPtr: i32 = Porffor.object.lookup(obj, 'toString');
|
672
|
+
const entryPtr: i32 = Porffor.object.lookup(obj, 'toString', __Porffor_object_hash('toString')); // todo: comptime
|
669
673
|
if (entryPtr != -1) {
|
670
674
|
ovr = Porffor.object.readValue(entryPtr);
|
671
675
|
if (Porffor.rawType(ovr) == Porffor.TYPES.function) return ovr.call(_this);
|
@@ -712,7 +716,7 @@ export const __Object_prototype_valueOf = (_this: any) => {
|
|
712
716
|
let ovr: any = obj.valueOf;
|
713
717
|
if (Porffor.rawType(ovr) == Porffor.TYPES.function && ovr != __Object_prototype_valueOf) return ovr.call(_this);
|
714
718
|
|
715
|
-
const entryPtr: i32 = Porffor.object.lookup(obj, 'valueOf');
|
719
|
+
const entryPtr: i32 = Porffor.object.lookup(obj, 'valueOf', __Porffor_object_hash('valueOf')); // todo: comptime
|
716
720
|
if (entryPtr != -1) {
|
717
721
|
ovr = Porffor.object.readValue(entryPtr);
|
718
722
|
if (Porffor.rawType(ovr) == Porffor.TYPES.function) return ovr.call(_this);
|
@@ -1,6 +1,6 @@
|
|
1
1
|
export default ({ TYPES, TYPE_NAMES }) => {
|
2
2
|
let out = `// @porf --valtype=i32
|
3
|
-
export const __Porffor_object_getPrototypeWithHidden = (obj: any, trueType: i32
|
3
|
+
export const __Porffor_object_getPrototypeWithHidden = (obj: any, trueType: i32): any => {
|
4
4
|
const objectProto: any = __Porffor_object_getPrototype(obj);
|
5
5
|
if (Porffor.rawType(objectProto) == Porffor.TYPES.empty) {
|
6
6
|
if (Porffor.comptime.flag\`hasFunc.#get___String_prototype\`) {
|
@@ -81,15 +81,15 @@ params:[127,127],typedParams:1,returns:[127,127],
|
|
81
81
|
locals:[127],localNames:["entryPtr","entryPtr#type","out"],
|
82
82
|
}
|
83
83
|
this.__Porffor_object_hash = {
|
84
|
-
wasm:()=>[[32,1],[65,5],[70],[4,64],[
|
84
|
+
wasm:()=>[[32,1],[65,5],[70],[4,64],[65,0],[15],[26],[11],[32,0],[33,2],[32,0],[40,0,0],[33,3],[65,197,187,242,136,120],[32,3],[115],[65,147,131,128,8],[108],[33,4],[32,1],[65,195,1],[70],[4,64],[32,2],[32,3],[106],[65,8],[107],[33,5],[3,64],[32,2],[32,5],[76],[4,64],[32,2],[41,0,4],[33,6],[32,4],[32,6],[66,32],[136],[167],[115],[65,147,131,128,8],[108],[32,6],[167],[115],[65,147,131,128,8],[108],[33,4],[32,2],[65,8],[106],[33,2],[12,1],[11],[11],[32,2],[41,0,4],[32,2],[32,5],[107],[65,8],[108],[173],[34,7],[134],[32,7],[136],[33,6],[32,4],[32,6],[66,32],[136],[167],[115],[65,147,131,128,8],[108],[32,6],[167],[115],[65,147,131,128,8],[108],[33,4],[5],[32,2],[32,3],[65,2],[108],[106],[65,8],[107],[33,5],[3,64],[32,2],[32,5],[76],[4,64],[32,2],[41,0,4],[33,6],[32,4],[32,6],[66,48],[136],[66,255,1],[131],[66,24],[134],[32,6],[66,32],[136],[66,255,1],[131],[66,16],[134],[132],[32,6],[66,16],[136],[66,255,1],[131],[66,8],[134],[132],[32,6],[66,255,1],[131],[132],[167],[115],[65,147,131,128,8],[108],[33,4],[32,2],[65,8],[106],[33,2],[12,1],[11],[11],[32,2],[41,0,4],[32,2],[32,5],[107],[65,8],[108],[173],[34,7],[134],[32,7],[136],[33,6],[32,4],[32,6],[66,48],[136],[66,255,1],[131],[66,24],[134],[32,6],[66,32],[136],[66,255,1],[131],[66,16],[134],[132],[32,6],[66,16],[136],[66,255,1],[131],[66,8],[134],[132],[32,6],[66,255,1],[131],[132],[167],[115],[65,147,131,128,8],[108],[33,4],[11],[32,4],[15]],
|
85
85
|
params:[127,127],typedParams:1,returns:[127],returnType:1,
|
86
86
|
locals:[127,127,127,127,126,126],localNames:["key","key#type","ptr","len","hash","endPtr","x","shift"],
|
87
87
|
}
|
88
88
|
this.__Porffor_object_lookup = {
|
89
|
-
wasm:(_,{builtin})=>[[32,0],[69],[4,64],[65,127],[15],[26],[11],[32,1],[65,7],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[33,0],[32,6],[34,1],[65,7],[71],[4,64],[65,127],[15],[26],[11],[11],[32,0],[65,8],[106],[34,7],[32,0],[47,0,0],[65,18],[108],[106],[33,8],[65,0],[33,9],[32,3],[65,5],[70],[4,64],[3,64],[32,7],[32,8],[72],[4,64],[2,64],[32,7],[40,0,4],[34,10],[69],[4,64],[32,9],[4,64],[12,3],[26],[11],[65,1],[33,9],[11],[32,10],[65,30],[118],[65,3],[70],[4,64],[32,10],[65,255,255,255,255,3],[113],[32,2],[70],[4,64],[32,7],[15],[26],[11],[11],[11],[32,7],[65,18],[106],[33,7],[12,1],[11],[11],[5],[
|
89
|
+
wasm:(_,{builtin})=>[[32,0],[69],[4,64],[65,127],[15],[26],[11],[32,1],[65,7],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__Porffor_object_underlying')],[33,6],[252,2],[33,0],[32,6],[34,1],[65,7],[71],[4,64],[65,127],[15],[26],[11],[11],[32,0],[65,8],[106],[34,7],[32,0],[47,0,0],[65,18],[108],[106],[33,8],[65,0],[33,9],[32,3],[65,5],[70],[4,64],[3,64],[32,7],[32,8],[72],[4,64],[2,64],[32,7],[40,0,4],[34,10],[69],[4,64],[32,9],[4,64],[12,3],[26],[11],[65,1],[33,9],[11],[32,10],[65,30],[118],[65,3],[70],[4,64],[32,10],[65,255,255,255,255,3],[113],[32,2],[70],[4,64],[32,7],[15],[26],[11],[11],[11],[32,7],[65,18],[106],[33,7],[12,1],[11],[11],[5],[3,64],[32,7],[32,8],[72],[4,64],[32,7],[40,0,0],[32,4],[70],[4,64],[32,7],[40,0,4],[34,10],[65,255,255,255,255,7],[113],[65,195,0],[65,195,1],[32,10],[65,30],[118],[27],[32,2],[32,3],[16,builtin('__Porffor_strcmp')],[4,64],[32,7],[15],[11],[11],[32,7],[65,18],[106],[33,7],[12,1],[11],[11],[11],[65,127],[15]],
|
90
90
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127],returnType:1,
|
91
|
-
locals:[127,127,127,127,127
|
92
|
-
usedTypes:[5
|
91
|
+
locals:[127,127,127,127,127],localNames:["obj","obj#type","target","target#type","targetHash","targetHash#type","#last_type","ptr","endPtr","out","key"],
|
92
|
+
usedTypes:[5],
|
93
93
|
}
|
94
94
|
this.__Porffor_object_readValue = {
|
95
95
|
wasm:()=>[[32,0],[43,0,8],[32,0],[45,0,17],[15]],
|
@@ -129,13 +129,13 @@ locals:[127,127,127,127,127,127],localNames:["obj","obj#type","key","key#type","
|
|
129
129
|
usesTag:1,
|
130
130
|
}
|
131
131
|
this.__Porffor_object_delete = {
|
132
|
-
wasm:(_,{builtin,internalThrow})=>[[32,0],[69],[4,64],...internalThrow(_,'TypeError',`Cannot delete property of null`),[26],[11],[32,1],[65,7],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__Porffor_object_underlying')],[33,4],[252,2],[33,0],[32,4],[34,1],[65,7],[71],[4,64],[65,1],[15],[26],[11],[11],[32,0],[32,1],[32,2],[32,3],[
|
132
|
+
wasm:(_,{builtin,internalThrow})=>[[32,0],[69],[4,64],...internalThrow(_,'TypeError',`Cannot delete property of null`),[26],[11],[32,1],[65,7],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__Porffor_object_underlying')],[33,4],[252,2],[33,0],[32,4],[34,1],[65,7],[71],[4,64],[65,1],[15],[26],[11],[11],[32,0],[32,1],[32,2],[32,3],[32,2],[32,3],[16,builtin('__Porffor_object_hash')],[65,1],[16,builtin('__Porffor_object_lookup')],[34,5],[65,127],[70],[4,64],[65,1],[15],[26],[11],[32,5],[47,0,16],[34,6],[65,2],[113],[69],[4,64],[65,0],[15],[26],[11],[32,5],[32,0],[107],[65,18],[109],[33,7],[32,0],[47,0,0],[33,8],[32,0],[32,8],[65,1],[107],[34,8],[59,0,0],[32,8],[32,7],[74],[4,64],[32,5],[32,5],[65,18],[106],[32,8],[32,7],[107],[65,18],[108],[252,10,0,0],[11],[65,1],[15]],
|
133
133
|
params:[127,127,127,127],typedParams:1,returns:[127],returnType:2,
|
134
134
|
locals:[127,127,127,127,127],localNames:["obj","obj#type","key","key#type","#last_type","entryPtr","tail","ind","size"],
|
135
135
|
usesTag:1,
|
136
136
|
}
|
137
137
|
this.__Porffor_object_deleteStrict = {
|
138
|
-
wasm:(_,{builtin,internalThrow})=>[[32,0],[69],[4,64],...internalThrow(_,'TypeError',`Cannot delete property of null`),[26],[11],[32,1],[65,7],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__Porffor_object_underlying')],[33,4],[252,2],[33,0],[32,4],[34,1],[65,7],[71],[4,64],[65,1],[15],[26],[11],[11],[32,0],[32,1],[32,2],[32,3],[
|
138
|
+
wasm:(_,{builtin,internalThrow})=>[[32,0],[69],[4,64],...internalThrow(_,'TypeError',`Cannot delete property of null`),[26],[11],[32,1],[65,7],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__Porffor_object_underlying')],[33,4],[252,2],[33,0],[32,4],[34,1],[65,7],[71],[4,64],[65,1],[15],[26],[11],[11],[32,0],[32,1],[32,2],[32,3],[32,2],[32,3],[16,builtin('__Porffor_object_hash')],[65,1],[16,builtin('__Porffor_object_lookup')],[34,5],[65,127],[70],[4,64],[65,1],[15],[26],[11],[32,5],[47,0,16],[34,6],[65,2],[113],[69],[4,64],...internalThrow(_,'TypeError',`Cannot delete non-configurable property of object`),[26],[11],[32,5],[32,0],[107],[65,18],[109],[33,7],[32,0],[47,0,0],[33,8],[32,0],[32,8],[65,1],[107],[34,8],[59,0,0],[32,8],[32,7],[74],[4,64],[32,5],[32,5],[65,18],[106],[32,8],[32,7],[107],[65,18],[108],[252,10,0,0],[11],[65,1],[15]],
|
139
139
|
params:[127,127,127,127],typedParams:1,returns:[127],returnType:2,
|
140
140
|
locals:[127,127,127,127,127],localNames:["obj","obj#type","key","key#type","#last_type","entryPtr","tail","ind","size"],
|
141
141
|
usesTag:1,
|
@@ -886,9 +886,9 @@ usedTypes:[67,195],
|
|
886
886
|
usesTag:1,usesImports:1,
|
887
887
|
}
|
888
888
|
this.__Porffor_print = {
|
889
|
-
wasm:(_,{t,makeString,builtin,internalThrow})=>[[32,3],[65,128,1],[70],[4,64],[68,1],[33,2],[65,2],[33,3],[11],[32,5],[65,128,1],[70],[4,64],[68,0],[33,4],[65,1],[33,5],[11],[32,1],[33,6],[2,64],...t([1],()=>[[32,6],[65,1],[70],[4,64],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,51],[16,1],[68,109],[16,1],[11],[32,0],[16,0],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([2],()=>[[32,6],[65,2],[70],[4,64],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,51],[16,1],[68,109],[16,1],[11],[32,0],[33,7],[32,1],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,116],[16,1],[68,114],[16,1],[68,117],[16,1],[68,101],[16,1],[5],[68,102],[16,1],[68,97],[16,1],[68,108],[16,1],[68,115],[16,1],[68,101],[16,1],[11],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([195,67],()=>[[32,6],[65,195,1],[70],[32,6],[65,195,0],[70],[114],[4,64],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,50],[16,1],[68,109],[16,1],[11],[68,39],[16,1],[32,0],[32,1],[16,builtin('__Porffor_printString')],[33,9],[26],[68,39],[16,1],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([0,128],()=>[[32,6],[65,0],[70],[32,6],[65,128,1],[70],[114],[4,64],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,50],[16,1],[68,109],[16,1],[11],[68,117],[16,1],[68,110],[16,1],[68,100],[16,1],[68,101],[16,1],[68,102],[16,1],[68,105],[16,1],[68,110],[16,1],[68,101],[16,1],[68,100],[16,1],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,0],[33,7],[32,1],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[32,0],[32,1],[16,builtin('__Object_keys')],[34,10],[252,3],[40,1,0],[184],[68,0],[97],[4,64],[68,123],[16,1],[68,125],[16,1],[68,0],[65,128,1],[15],[26],[11],[68,123],[16,1],[68,10],[16,1],[32,10],[252,3],[40,1,0],[184],[68,1],[161],[33,11],[68,0],[33,12],[3,64],[32,12],[32,11],[101],[4,64],[2,64],[32,12],[33,16],[32,10],[33,15],[32,16],[252,3],[65,9],[108],[32,15],[252,3],[106],[34,17],[43,0,4],[32,17],[45,0,12],[34,9],[33,14],[33,13],[68,0],[33,18],[3,64],[32,18],[32,4],[101],[4,64],[68,32],[16,1],[68,32],[16,1],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[32,13],[32,14],[16,builtin('__Porffor_printString')],[33,9],[26],[68,58],[16,1],[68,32],[16,1],[32,0],[252,2],[32,1],[32,13],[32,14],[16,builtin('__ecma262_ToPropertyKey')],[33,9],[252,2],[32,9],[16,builtin('__Porffor_object_get')],[34,9],[32,2],[32,3],[32,4],[68,1],[160],[65,1],[16,builtin('__Porffor_print')],[33,9],[26],[32,12],[32,11],[98],[4,64],[68,44],[16,1],[68,10],[16,1],[11],[11],[32,12],[68,1],[160],[33,12],[12,1],[11],[11],[68,10],[16,1],[68,0],[33,18],[3,64],[32,18],[32,4],[99],[4,64],[68,32],[16,1],[68,32],[16,1],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[68,125],[16,1],[5],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,49],[16,1],[68,109],[16,1],[11],[68,110],[16,1],[68,117],[16,1],[68,108],[16,1],[68,108],[16,1],[11],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([6],()=>[[32,6],[65,6],[70],[4,64],[68,91],[16,1],[68,70],[16,1],[68,117],[16,1],[68,110],[16,1],[68,99],[16,1],[68,116],[16,1],[68,105],[16,1],[68,111],[16,1],[68,110],[16,1],[68,32],[16,1],[32,0],[252,2],[16,builtin('__Porffor_funcLut_name')],[183],[65,195,1],[16,builtin('__Porffor_printString')],[33,9],[26],[68,93],[16,1],[68,0],[65,128,1],[15],[11]]),...t([18],()=>[[32,6],[65,18],[70],[4,64],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,53],[16,1],[68,109],[16,1],[11],[32,0],[32,1],[16,builtin('__Date_prototype_toISOString')],[34,9],[16,builtin('__Porffor_printString')],[33,9],[26],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([5],()=>[[32,6],[65,5],[70],[4,64],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,50],[16,1],[68,109],[16,1],[11],[32,0],[32,1],[16,builtin('__Symbol_prototype_toString')],[34,9],[16,builtin('__Porffor_printString')],[33,9],[26],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([80],()=>[[32,6],[65,208,0],[70],[4,64],[32,0],[32,1],[32,2],[32,3],[68,0],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([88],()=>[[32,6],[65,216,0],[70],[4,64],[68,85],[16,1],[68,105],[16,1],[68,110],[16,1],[68,116],[16,1],[68,56],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([89],()=>[[32,6],[65,217,0],[70],[4,64],[68,73],[16,1],[68,110],[16,1],[68,116],[16,1],[68,56],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([90],()=>[[32,6],[65,218,0],[70],[4,64],[68,85],[16,1],[68,105],[16,1],[68,110],[16,1],[68,116],[16,1],[68,56],[16,1],[68,67],[16,1],[68,108],[16,1],[68,97],[16,1],[68,109],[16,1],[68,112],[16,1],[68,101],[16,1],[68,100],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([91],()=>[[32,6],[65,219,0],[70],[4,64],[68,85],[16,1],[68,105],[16,1],[68,110],[16,1],[68,116],[16,1],[68,49],[16,1],[68,54],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([92],()=>[[32,6],[65,220,0],[70],[4,64],[68,73],[16,1],[68,110],[16,1],[68,116],[16,1],[68,49],[16,1],[68,54],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([93],()=>[[32,6],[65,221,0],[70],[4,64],[68,85],[16,1],[68,105],[16,1],[68,110],[16,1],[68,116],[16,1],[68,51],[16,1],[68,50],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([94],()=>[[32,6],[65,222,0],[70],[4,64],[68,73],[16,1],[68,110],[16,1],[68,116],[16,1],[68,51],[16,1],[68,50],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([95],()=>[[32,6],[65,223,0],[70],[4,64],[68,70],[16,1],[68,108],[16,1],[68,111],[16,1],[68,97],[16,1],[68,116],[16,1],[68,51],[16,1],[68,50],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([96],()=>[[32,6],[65,224,0],[70],[4,64],[68,70],[16,1],[68,108],[16,1],[68,111],[16,1],[68,97],[16,1],[68,116],[16,1],[68,54],[16,1],[68,52],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([22,21],()=>[[32,6],[65,22],[70],[32,6],[65,21],[70],[114],[4,64],[32,1],[184],[68,22],[97],[4,64],[68,83],[16,1],[68,104],[16,1],[68,97],[16,1],[68,114],[16,1],[68,101],[16,1],[68,100],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[68,66],[16,1],[68,117],[16,1],[68,102],[16,1],[68,102],[16,1],[68,101],[16,1],[68,114],[16,1],[5],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[68,66],[16,1],[68,117],[16,1],[68,102],[16,1],[68,102],[16,1],[68,101],[16,1],[68,114],[16,1],[11],[68,32],[16,1],[68,123],[16,1],[68,10],[16,1],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,52],[16,1],[68,109],[16,1],[11],[68,32],[16,1],[68,32],[16,1],[68,91],[16,1],[68,85],[16,1],[68,105],[16,1],[68,110],[16,1],[68,116],[16,1],[68,56],[16,1],[68,67],[16,1],[68,111],[16,1],[68,110],[16,1],[68,116],[16,1],[68,101],[16,1],[68,110],[16,1],[68,116],[16,1],[68,115],[16,1],[68,93],[16,1],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,41],[16,1],[68,58],[16,1],[68,32],[16,1],[68,60],[16,1],[68,14],[65,6],[68,0],[65,7],[32,0],[32,1],[68,0],[65,128,1],[68,0],[65,128,1],[16,builtin('Uint8Array')],[33,19],[65,216,0],[33,20],[32,19],[252,3],[40,1,0],[184],[68,1],[161],[33,21],[65,1],[33,22],[68,0],[33,12],[3,64],[32,12],[32,21],[101],[4,64],[2,64],[32,12],[33,26],[32,19],[33,25],[32,20],[33,8],[2,124],...t([67],()=>[[32,8],[65,195,0],[70],[4,64],[65,8],[16,builtin('__Porffor_allocateBytes')],[34,27],[65,1],[54,0,0],[32,27],[32,26],[252,3],[65,2],[108],[32,25],[252,3],[106],[47,0,4],[59,0,4],[32,27],[184],[65,195,0],[33,9],[12,1],[11]]),...t([80],()=>[[32,8],[65,208,0],[70],[4,64],[32,26],[252,3],[65,9],[108],[32,25],[252,3],[106],[34,17],[43,0,4],[32,17],[45,0,12],[33,9],[12,1],[11]]),...t([88],()=>[[32,8],[65,216,0],[70],[4,64],[32,25],[252,3],[40,0,4],[32,26],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([89],()=>[[32,8],[65,217,0],[70],[4,64],[32,25],[252,3],[40,0,4],[32,26],[252,3],[106],[44,0,4],[183],[65,1],[33,9],[12,1],[11]]),...t([90],()=>[[32,8],[65,218,0],[70],[4,64],[32,25],[252,3],[40,0,4],[32,26],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([91],()=>[[32,8],[65,219,0],[70],[4,64],[32,25],[252,3],[40,0,4],[32,26],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([92],()=>[[32,8],[65,220,0],[70],[4,64],[32,25],[252,3],[40,0,4],[32,26],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,9],[12,1],[11]]),...t([93],()=>[[32,8],[65,221,0],[70],[4,64],[32,25],[252,3],[40,0,4],[32,26],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([94],()=>[[32,8],[65,222,0],[70],[4,64],[32,25],[252,3],[40,0,4],[32,26],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,9],[12,1],[11]]),...t([95],()=>[[32,8],[65,223,0],[70],[4,64],[32,25],[252,3],[40,0,4],[32,26],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,9],[12,1],[11]]),...t([96],()=>[[32,8],[65,224,0],[70],[4,64],[32,25],[252,3],[40,0,4],[32,26],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,9],[12,1],[11]]),...t([128],()=>[[32,8],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot read property of undefined`),[68,0],[12,1],[11]]),...t([195],()=>[[32,8],[65,195,1],[70],[4,64],[65,8],[16,builtin('__Porffor_allocateBytes')],[34,27],[65,1],[54,0,0],[32,27],[32,26],[252,3],[32,25],[252,3],[106],[45,0,4],[58,0,4],[32,27],[184],[65,195,1],[33,9],[12,1],[11]]),[32,25],[252,2],[32,20],[32,26],[65,1],[16,builtin('__ecma262_ToPropertyKey')],[33,28],[252,2],[32,28],[16,builtin('__Porffor_object_get')],[33,9],[11],[33,23],[32,9],[33,24],[32,23],[68,240],[16,builtin('f64_&')],[68,16],[163],[65,1],[16,builtin('__Porffor_printHexDigit')],[33,9],[26],[32,23],[68,15],[16,builtin('f64_&')],[65,1],[16,builtin('__Porffor_printHexDigit')],[33,9],[26],[32,12],[32,21],[98],[4,64],[68,32],[16,1],[11],[11],[32,12],[68,1],[160],[33,12],[12,1],[11],[11],[68,62],[16,1],[68,44],[16,1],[68,10],[16,1],[68,32],[16,1],[68,32],[16,1],[68,98],[16,1],[68,121],[16,1],[68,116],[16,1],[68,101],[16,1],[68,76],[16,1],[68,101],[16,1],[68,110],[16,1],[68,103],[16,1],[68,116],[16,1],[68,104],[16,1],[68,58],[16,1],[68,32],[16,1],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,51],[16,1],[68,109],[16,1],[11],...makeString(_,"byteLength",1),[33,30],[32,0],[33,29],[32,1],[33,8],[2,124],...t([21],()=>[[32,8],[65,21],[70],[4,64],[32,29],[65,21],[16,builtin('__ArrayBuffer_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([22],()=>[[32,8],[65,22],[70],[4,64],[32,29],[65,22],[16,builtin('__SharedArrayBuffer_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([23],()=>[[32,8],[65,23],[70],[4,64],[32,29],[65,23],[16,builtin('__DataView_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([88],()=>[[32,8],[65,216,0],[70],[4,64],[32,29],[65,216,0],[16,builtin('__Uint8Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([89],()=>[[32,8],[65,217,0],[70],[4,64],[32,29],[65,217,0],[16,builtin('__Int8Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([90],()=>[[32,8],[65,218,0],[70],[4,64],[32,29],[65,218,0],[16,builtin('__Uint8ClampedArray_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([91],()=>[[32,8],[65,219,0],[70],[4,64],[32,29],[65,219,0],[16,builtin('__Uint16Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([92],()=>[[32,8],[65,220,0],[70],[4,64],[32,29],[65,220,0],[16,builtin('__Int16Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([93],()=>[[32,8],[65,221,0],[70],[4,64],[32,29],[65,221,0],[16,builtin('__Uint32Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([94],()=>[[32,8],[65,222,0],[70],[4,64],[32,29],[65,222,0],[16,builtin('__Int32Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([95],()=>[[32,8],[65,223,0],[70],[4,64],[32,29],[65,223,0],[16,builtin('__Float32Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([96],()=>[[32,8],[65,224,0],[70],[4,64],[32,29],[65,224,0],[16,builtin('__Float64Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([128],()=>[[32,8],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot read property of undefined`),[68,0],[12,1],[11]]),[32,29],[252,2],[32,1],[32,30],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[33,9],[11],[16,0],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,10],[16,1],[68,125],[16,1],[68,0],[65,128,1],[15],[11]]),...t([23],()=>[[32,6],[65,23],[70],[4,64],[68,68],[16,1],[68,97],[16,1],[68,116],[16,1],[68,97],[16,1],[68,86],[16,1],[68,105],[16,1],[68,101],[16,1],[68,119],[16,1],[68,32],[16,1],[68,123],[16,1],[68,10],[16,1],[68,32],[16,1],[68,32],[16,1],[68,98],[16,1],[68,121],[16,1],[68,116],[16,1],[68,101],[16,1],[68,76],[16,1],[68,101],[16,1],[68,110],[16,1],[68,103],[16,1],[68,116],[16,1],[68,104],[16,1],[68,58],[16,1],[68,32],[16,1],[32,0],[32,1],[16,builtin('__DataView_prototype_byteLength$get')],[34,9],[32,2],[32,3],[68,0],[65,128,1],[16,builtin('__Porffor_print')],[33,9],[26],[68,44],[16,1],[68,10],[16,1],[68,32],[16,1],[68,32],[16,1],[68,98],[16,1],[68,121],[16,1],[68,116],[16,1],[68,101],[16,1],[68,79],[16,1],[68,102],[16,1],[68,102],[16,1],[68,115],[16,1],[68,101],[16,1],[68,116],[16,1],[68,58],[16,1],[68,32],[16,1],[32,0],[32,1],[16,builtin('__DataView_prototype_byteOffset$get')],[34,9],[32,2],[32,3],[68,0],[65,128,1],[16,builtin('__Porffor_print')],[33,9],[26],[68,44],[16,1],[68,10],[16,1],[68,32],[16,1],[68,32],[16,1],[68,98],[16,1],[68,117],[16,1],[68,102],[16,1],[68,102],[16,1],[68,101],[16,1],[68,114],[16,1],[68,58],[16,1],[68,32],[16,1],[32,0],[32,1],[16,builtin('__DataView_prototype_buffer$get')],[34,9],[32,2],[32,3],[68,0],[65,128,1],[16,builtin('__Porffor_print')],[33,9],[26],[68,10],[16,1],[68,125],[16,1],[68,0],[65,128,1],[15],[11]]),...t([35,20],()=>[[32,6],[65,35],[70],[32,6],[65,20],[70],[114],[4,64],[32,1],[184],[68,35],[97],[4,64],[68,87],[16,1],[68,101],[16,1],[68,97],[16,1],[68,107],[16,1],[68,77],[16,1],[68,97],[16,1],[68,112],[16,1],[5],[68,77],[16,1],[68,97],[16,1],[68,112],[16,1],[11],[68,40],[16,1],[32,0],[32,1],[16,builtin('__Map_prototype_keys')],[33,9],[34,31],[252,3],[40,1,0],[184],[68,1],[161],[34,32],[68,1],[160],[16,0],[68,41],[16,1],[68,32],[16,1],[68,123],[16,1],[68,32],[16,1],[68,0],[33,12],[3,64],[32,12],[32,32],[99],[4,64],[32,12],[33,36],[32,31],[33,35],[32,36],[252,3],[65,9],[108],[32,35],[252,3],[106],[34,17],[43,0,4],[32,17],[45,0,12],[34,9],[33,34],[34,33],[32,34],[32,2],[32,3],[68,0],[65,128,1],[16,builtin('__Porffor_print')],[33,9],[26],[68,32],[16,1],[68,61],[16,1],[68,62],[16,1],[68,32],[16,1],[32,0],[32,1],[32,33],[32,34],[16,builtin('__Map_prototype_get')],[34,9],[32,2],[32,3],[68,0],[65,128,1],[16,builtin('__Porffor_print')],[33,9],[26],[32,12],[32,32],[98],[4,64],[68,44],[16,1],[68,32],[16,1],[11],[32,12],[68,1],[160],[33,12],[12,1],[11],[11],[68,32],[16,1],[68,125],[16,1],[68,0],[65,128,1],[15],[11]]),...t([34,19],()=>[[32,6],[65,34],[70],[32,6],[65,19],[70],[114],[4,64],[32,1],[184],[68,34],[97],[4,64],[68,87],[16,1],[68,101],[16,1],[68,97],[16,1],[68,107],[16,1],[68,83],[16,1],[68,101],[16,1],[68,116],[16,1],[5],[68,83],[16,1],[68,101],[16,1],[68,116],[16,1],[11],[68,40],[16,1],[32,0],[32,1],[16,builtin('__Set_prototype_values')],[33,9],[34,37],[252,3],[40,1,0],[184],[68,1],[161],[34,38],[68,1],[160],[16,0],[68,41],[16,1],[68,32],[16,1],[68,123],[16,1],[68,32],[16,1],[68,0],[33,12],[3,64],[32,12],[32,38],[101],[4,64],[32,12],[33,40],[32,37],[33,39],[32,40],[252,3],[65,9],[108],[32,39],[252,3],[106],[34,17],[43,0,4],[32,17],[45,0,12],[34,9],[32,2],[32,3],[68,0],[65,128,1],[16,builtin('__Porffor_print')],[33,9],[26],[32,12],[32,38],[98],[4,64],[68,44],[16,1],[68,32],[16,1],[11],[32,12],[68,1],[160],[33,12],[12,1],[11],[11],[68,32],[16,1],[68,125],[16,1],[68,0],[65,128,1],[15],[11]]),...t([33],()=>[[32,6],[65,33],[70],[4,64],[68,87],[16,1],[68,101],[16,1],[68,97],[16,1],[68,107],[16,1],[68,82],[16,1],[68,101],[16,1],[68,102],[16,1],[68,32],[16,1],[68,123],[16,1],[68,125],[16,1],[68,0],[65,128,1],[15],[11]]),[11],[68,0],[65,128,1],[15]],
|
889
|
+
wasm:(_,{t,makeString,builtin,internalThrow})=>[[32,3],[65,128,1],[70],[4,64],[68,1],[33,2],[65,2],[33,3],[11],[32,5],[65,128,1],[70],[4,64],[68,0],[33,4],[65,1],[33,5],[11],[32,1],[33,6],[2,64],...t([1],()=>[[32,6],[65,1],[70],[4,64],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,51],[16,1],[68,109],[16,1],[11],[32,0],[16,0],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([2],()=>[[32,6],[65,2],[70],[4,64],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,51],[16,1],[68,109],[16,1],[11],[32,0],[33,7],[32,1],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,116],[16,1],[68,114],[16,1],[68,117],[16,1],[68,101],[16,1],[5],[68,102],[16,1],[68,97],[16,1],[68,108],[16,1],[68,115],[16,1],[68,101],[16,1],[11],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([195,67],()=>[[32,6],[65,195,1],[70],[32,6],[65,195,0],[70],[114],[4,64],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,50],[16,1],[68,109],[16,1],[11],[68,39],[16,1],[32,0],[32,1],[16,builtin('__Porffor_printString')],[33,9],[26],[68,39],[16,1],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([0,128],()=>[[32,6],[65,0],[70],[32,6],[65,128,1],[70],[114],[4,64],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,50],[16,1],[68,109],[16,1],[11],[68,117],[16,1],[68,110],[16,1],[68,100],[16,1],[68,101],[16,1],[68,102],[16,1],[68,105],[16,1],[68,110],[16,1],[68,101],[16,1],[68,100],[16,1],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,0],[33,7],[32,1],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[32,0],[32,1],[16,builtin('__Object_keys')],[34,10],[252,3],[40,1,0],[184],[68,0],[97],[4,64],[68,123],[16,1],[68,125],[16,1],[68,0],[65,128,1],[15],[26],[11],[68,123],[16,1],[68,10],[16,1],[32,10],[252,3],[40,1,0],[184],[68,1],[161],[33,11],[68,0],[33,12],[3,64],[32,12],[32,11],[101],[4,64],[2,64],[32,12],[33,16],[32,10],[33,15],[32,16],[252,3],[65,9],[108],[32,15],[252,3],[106],[34,17],[43,0,4],[32,17],[45,0,12],[34,9],[33,14],[33,13],[68,0],[33,18],[3,64],[32,18],[32,4],[101],[4,64],[68,32],[16,1],[68,32],[16,1],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[32,13],[32,14],[16,builtin('__Porffor_printString')],[33,9],[26],[68,58],[16,1],[68,32],[16,1],[32,0],[252,2],[32,1],[32,13],[32,14],[16,builtin('__ecma262_ToPropertyKey')],[33,9],[252,2],[32,9],[16,builtin('__Porffor_object_get')],[34,9],[32,2],[32,3],[32,4],[68,1],[160],[65,1],[16,builtin('__Porffor_print')],[33,9],[26],[32,12],[32,11],[98],[4,64],[68,44],[16,1],[68,10],[16,1],[11],[11],[32,12],[68,1],[160],[33,12],[12,1],[11],[11],[68,10],[16,1],[68,0],[33,18],[3,64],[32,18],[32,4],[99],[4,64],[68,32],[16,1],[68,32],[16,1],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[68,125],[16,1],[5],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,49],[16,1],[68,109],[16,1],[11],[68,110],[16,1],[68,117],[16,1],[68,108],[16,1],[68,108],[16,1],[11],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([6],()=>[[32,6],[65,6],[70],[4,64],[68,91],[16,1],[68,70],[16,1],[68,117],[16,1],[68,110],[16,1],[68,99],[16,1],[68,116],[16,1],[68,105],[16,1],[68,111],[16,1],[68,110],[16,1],[68,32],[16,1],[32,0],[252,2],[16,builtin('__Porffor_funcLut_name')],[183],[34,19],[252,3],[40,1,0],[69],[4,124],...makeString(_,"(anonymous)",1),[65,195,1],[33,9],[5],[32,19],[65,195,1],[33,9],[11],[32,9],[16,builtin('__Porffor_printString')],[33,9],[26],[68,93],[16,1],[68,0],[65,128,1],[15],[11]]),...t([18],()=>[[32,6],[65,18],[70],[4,64],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,53],[16,1],[68,109],[16,1],[11],[32,0],[32,1],[16,builtin('__Date_prototype_toISOString')],[34,9],[16,builtin('__Porffor_printString')],[33,9],[26],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([5],()=>[[32,6],[65,5],[70],[4,64],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,50],[16,1],[68,109],[16,1],[11],[32,0],[32,1],[16,builtin('__Symbol_prototype_toString')],[34,9],[16,builtin('__Porffor_printString')],[33,9],[26],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,0],[65,128,1],[15],[11]]),...t([80],()=>[[32,6],[65,208,0],[70],[4,64],[32,0],[32,1],[32,2],[32,3],[68,0],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([88],()=>[[32,6],[65,216,0],[70],[4,64],[68,85],[16,1],[68,105],[16,1],[68,110],[16,1],[68,116],[16,1],[68,56],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([89],()=>[[32,6],[65,217,0],[70],[4,64],[68,73],[16,1],[68,110],[16,1],[68,116],[16,1],[68,56],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([90],()=>[[32,6],[65,218,0],[70],[4,64],[68,85],[16,1],[68,105],[16,1],[68,110],[16,1],[68,116],[16,1],[68,56],[16,1],[68,67],[16,1],[68,108],[16,1],[68,97],[16,1],[68,109],[16,1],[68,112],[16,1],[68,101],[16,1],[68,100],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([91],()=>[[32,6],[65,219,0],[70],[4,64],[68,85],[16,1],[68,105],[16,1],[68,110],[16,1],[68,116],[16,1],[68,49],[16,1],[68,54],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([92],()=>[[32,6],[65,220,0],[70],[4,64],[68,73],[16,1],[68,110],[16,1],[68,116],[16,1],[68,49],[16,1],[68,54],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([93],()=>[[32,6],[65,221,0],[70],[4,64],[68,85],[16,1],[68,105],[16,1],[68,110],[16,1],[68,116],[16,1],[68,51],[16,1],[68,50],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([94],()=>[[32,6],[65,222,0],[70],[4,64],[68,73],[16,1],[68,110],[16,1],[68,116],[16,1],[68,51],[16,1],[68,50],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([95],()=>[[32,6],[65,223,0],[70],[4,64],[68,70],[16,1],[68,108],[16,1],[68,111],[16,1],[68,97],[16,1],[68,116],[16,1],[68,51],[16,1],[68,50],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([96],()=>[[32,6],[65,224,0],[70],[4,64],[68,70],[16,1],[68,108],[16,1],[68,111],[16,1],[68,97],[16,1],[68,116],[16,1],[68,54],[16,1],[68,52],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[32,0],[32,1],[32,2],[32,3],[68,1],[65,2],[16,builtin('__Porffor_printArray')],[33,9],[26],[68,0],[65,128,1],[15],[11]]),...t([22,21],()=>[[32,6],[65,22],[70],[32,6],[65,21],[70],[114],[4,64],[32,1],[184],[68,22],[97],[4,64],[68,83],[16,1],[68,104],[16,1],[68,97],[16,1],[68,114],[16,1],[68,101],[16,1],[68,100],[16,1],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[68,66],[16,1],[68,117],[16,1],[68,102],[16,1],[68,102],[16,1],[68,101],[16,1],[68,114],[16,1],[5],[68,65],[16,1],[68,114],[16,1],[68,114],[16,1],[68,97],[16,1],[68,121],[16,1],[68,66],[16,1],[68,117],[16,1],[68,102],[16,1],[68,102],[16,1],[68,101],[16,1],[68,114],[16,1],[11],[68,32],[16,1],[68,123],[16,1],[68,10],[16,1],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,52],[16,1],[68,109],[16,1],[11],[68,32],[16,1],[68,32],[16,1],[68,91],[16,1],[68,85],[16,1],[68,105],[16,1],[68,110],[16,1],[68,116],[16,1],[68,56],[16,1],[68,67],[16,1],[68,111],[16,1],[68,110],[16,1],[68,116],[16,1],[68,101],[16,1],[68,110],[16,1],[68,116],[16,1],[68,115],[16,1],[68,93],[16,1],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,41],[16,1],[68,58],[16,1],[68,32],[16,1],[68,60],[16,1],[68,14],[65,6],[68,0],[65,7],[32,0],[32,1],[68,0],[65,128,1],[68,0],[65,128,1],[16,builtin('Uint8Array')],[33,20],[65,216,0],[33,21],[32,20],[252,3],[40,1,0],[184],[68,1],[161],[33,22],[65,1],[33,23],[68,0],[33,12],[3,64],[32,12],[32,22],[101],[4,64],[2,64],[32,12],[33,27],[32,20],[33,26],[32,21],[33,8],[2,124],...t([67],()=>[[32,8],[65,195,0],[70],[4,64],[65,8],[16,builtin('__Porffor_allocateBytes')],[34,28],[65,1],[54,0,0],[32,28],[32,27],[252,3],[65,2],[108],[32,26],[252,3],[106],[47,0,4],[59,0,4],[32,28],[184],[65,195,0],[33,9],[12,1],[11]]),...t([80],()=>[[32,8],[65,208,0],[70],[4,64],[32,27],[252,3],[65,9],[108],[32,26],[252,3],[106],[34,17],[43,0,4],[32,17],[45,0,12],[33,9],[12,1],[11]]),...t([88],()=>[[32,8],[65,216,0],[70],[4,64],[32,26],[252,3],[40,0,4],[32,27],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([89],()=>[[32,8],[65,217,0],[70],[4,64],[32,26],[252,3],[40,0,4],[32,27],[252,3],[106],[44,0,4],[183],[65,1],[33,9],[12,1],[11]]),...t([90],()=>[[32,8],[65,218,0],[70],[4,64],[32,26],[252,3],[40,0,4],[32,27],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([91],()=>[[32,8],[65,219,0],[70],[4,64],[32,26],[252,3],[40,0,4],[32,27],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([92],()=>[[32,8],[65,220,0],[70],[4,64],[32,26],[252,3],[40,0,4],[32,27],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,9],[12,1],[11]]),...t([93],()=>[[32,8],[65,221,0],[70],[4,64],[32,26],[252,3],[40,0,4],[32,27],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,9],[12,1],[11]]),...t([94],()=>[[32,8],[65,222,0],[70],[4,64],[32,26],[252,3],[40,0,4],[32,27],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,9],[12,1],[11]]),...t([95],()=>[[32,8],[65,223,0],[70],[4,64],[32,26],[252,3],[40,0,4],[32,27],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,9],[12,1],[11]]),...t([96],()=>[[32,8],[65,224,0],[70],[4,64],[32,26],[252,3],[40,0,4],[32,27],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,9],[12,1],[11]]),...t([128],()=>[[32,8],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot read property of undefined`),[68,0],[12,1],[11]]),...t([195],()=>[[32,8],[65,195,1],[70],[4,64],[65,8],[16,builtin('__Porffor_allocateBytes')],[34,28],[65,1],[54,0,0],[32,28],[32,27],[252,3],[32,26],[252,3],[106],[45,0,4],[58,0,4],[32,28],[184],[65,195,1],[33,9],[12,1],[11]]),[32,26],[252,2],[32,21],[32,27],[65,1],[16,builtin('__ecma262_ToPropertyKey')],[33,29],[252,2],[32,29],[16,builtin('__Porffor_object_get')],[33,9],[11],[33,24],[32,9],[33,25],[32,24],[68,240],[16,builtin('f64_&')],[68,16],[163],[65,1],[16,builtin('__Porffor_printHexDigit')],[33,9],[26],[32,24],[68,15],[16,builtin('f64_&')],[65,1],[16,builtin('__Porffor_printHexDigit')],[33,9],[26],[32,12],[32,22],[98],[4,64],[68,32],[16,1],[11],[11],[32,12],[68,1],[160],[33,12],[12,1],[11],[11],[68,62],[16,1],[68,44],[16,1],[68,10],[16,1],[68,32],[16,1],[68,32],[16,1],[68,98],[16,1],[68,121],[16,1],[68,116],[16,1],[68,101],[16,1],[68,76],[16,1],[68,101],[16,1],[68,110],[16,1],[68,103],[16,1],[68,116],[16,1],[68,104],[16,1],[68,58],[16,1],[68,32],[16,1],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,51],[16,1],[68,51],[16,1],[68,109],[16,1],[11],...makeString(_,"byteLength",1),[33,31],[32,0],[33,30],[32,1],[33,8],[2,124],...t([21],()=>[[32,8],[65,21],[70],[4,64],[32,30],[65,21],[16,builtin('__ArrayBuffer_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([22],()=>[[32,8],[65,22],[70],[4,64],[32,30],[65,22],[16,builtin('__SharedArrayBuffer_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([23],()=>[[32,8],[65,23],[70],[4,64],[32,30],[65,23],[16,builtin('__DataView_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([88],()=>[[32,8],[65,216,0],[70],[4,64],[32,30],[65,216,0],[16,builtin('__Uint8Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([89],()=>[[32,8],[65,217,0],[70],[4,64],[32,30],[65,217,0],[16,builtin('__Int8Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([90],()=>[[32,8],[65,218,0],[70],[4,64],[32,30],[65,218,0],[16,builtin('__Uint8ClampedArray_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([91],()=>[[32,8],[65,219,0],[70],[4,64],[32,30],[65,219,0],[16,builtin('__Uint16Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([92],()=>[[32,8],[65,220,0],[70],[4,64],[32,30],[65,220,0],[16,builtin('__Int16Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([93],()=>[[32,8],[65,221,0],[70],[4,64],[32,30],[65,221,0],[16,builtin('__Uint32Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([94],()=>[[32,8],[65,222,0],[70],[4,64],[32,30],[65,222,0],[16,builtin('__Int32Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([95],()=>[[32,8],[65,223,0],[70],[4,64],[32,30],[65,223,0],[16,builtin('__Float32Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([96],()=>[[32,8],[65,224,0],[70],[4,64],[32,30],[65,224,0],[16,builtin('__Float64Array_prototype_byteLength$get')],[33,9],[12,1],[11]]),...t([128],()=>[[32,8],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot read property of undefined`),[68,0],[12,1],[11]]),[32,30],[252,2],[32,1],[32,31],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[33,9],[11],[16,0],[32,2],[33,7],[32,3],[33,8],[2,127],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[12,1],[11]]),[32,7],[252,3],[11],[4,64],[68,27],[16,1],[68,91],[16,1],[68,48],[16,1],[68,109],[16,1],[11],[68,10],[16,1],[68,125],[16,1],[68,0],[65,128,1],[15],[11]]),...t([23],()=>[[32,6],[65,23],[70],[4,64],[68,68],[16,1],[68,97],[16,1],[68,116],[16,1],[68,97],[16,1],[68,86],[16,1],[68,105],[16,1],[68,101],[16,1],[68,119],[16,1],[68,32],[16,1],[68,123],[16,1],[68,10],[16,1],[68,32],[16,1],[68,32],[16,1],[68,98],[16,1],[68,121],[16,1],[68,116],[16,1],[68,101],[16,1],[68,76],[16,1],[68,101],[16,1],[68,110],[16,1],[68,103],[16,1],[68,116],[16,1],[68,104],[16,1],[68,58],[16,1],[68,32],[16,1],[32,0],[32,1],[16,builtin('__DataView_prototype_byteLength$get')],[34,9],[32,2],[32,3],[68,0],[65,128,1],[16,builtin('__Porffor_print')],[33,9],[26],[68,44],[16,1],[68,10],[16,1],[68,32],[16,1],[68,32],[16,1],[68,98],[16,1],[68,121],[16,1],[68,116],[16,1],[68,101],[16,1],[68,79],[16,1],[68,102],[16,1],[68,102],[16,1],[68,115],[16,1],[68,101],[16,1],[68,116],[16,1],[68,58],[16,1],[68,32],[16,1],[32,0],[32,1],[16,builtin('__DataView_prototype_byteOffset$get')],[34,9],[32,2],[32,3],[68,0],[65,128,1],[16,builtin('__Porffor_print')],[33,9],[26],[68,44],[16,1],[68,10],[16,1],[68,32],[16,1],[68,32],[16,1],[68,98],[16,1],[68,117],[16,1],[68,102],[16,1],[68,102],[16,1],[68,101],[16,1],[68,114],[16,1],[68,58],[16,1],[68,32],[16,1],[32,0],[32,1],[16,builtin('__DataView_prototype_buffer$get')],[34,9],[32,2],[32,3],[68,0],[65,128,1],[16,builtin('__Porffor_print')],[33,9],[26],[68,10],[16,1],[68,125],[16,1],[68,0],[65,128,1],[15],[11]]),...t([35,20],()=>[[32,6],[65,35],[70],[32,6],[65,20],[70],[114],[4,64],[32,1],[184],[68,35],[97],[4,64],[68,87],[16,1],[68,101],[16,1],[68,97],[16,1],[68,107],[16,1],[68,77],[16,1],[68,97],[16,1],[68,112],[16,1],[5],[68,77],[16,1],[68,97],[16,1],[68,112],[16,1],[11],[68,40],[16,1],[32,0],[32,1],[16,builtin('__Map_prototype_keys')],[33,9],[34,32],[252,3],[40,1,0],[184],[68,1],[161],[34,33],[68,1],[160],[16,0],[68,41],[16,1],[68,32],[16,1],[68,123],[16,1],[68,32],[16,1],[68,0],[33,12],[3,64],[32,12],[32,33],[99],[4,64],[32,12],[33,37],[32,32],[33,36],[32,37],[252,3],[65,9],[108],[32,36],[252,3],[106],[34,17],[43,0,4],[32,17],[45,0,12],[34,9],[33,35],[34,34],[32,35],[32,2],[32,3],[68,0],[65,128,1],[16,builtin('__Porffor_print')],[33,9],[26],[68,32],[16,1],[68,61],[16,1],[68,62],[16,1],[68,32],[16,1],[32,0],[32,1],[32,34],[32,35],[16,builtin('__Map_prototype_get')],[34,9],[32,2],[32,3],[68,0],[65,128,1],[16,builtin('__Porffor_print')],[33,9],[26],[32,12],[32,33],[98],[4,64],[68,44],[16,1],[68,32],[16,1],[11],[32,12],[68,1],[160],[33,12],[12,1],[11],[11],[68,32],[16,1],[68,125],[16,1],[68,0],[65,128,1],[15],[11]]),...t([34,19],()=>[[32,6],[65,34],[70],[32,6],[65,19],[70],[114],[4,64],[32,1],[184],[68,34],[97],[4,64],[68,87],[16,1],[68,101],[16,1],[68,97],[16,1],[68,107],[16,1],[68,83],[16,1],[68,101],[16,1],[68,116],[16,1],[5],[68,83],[16,1],[68,101],[16,1],[68,116],[16,1],[11],[68,40],[16,1],[32,0],[32,1],[16,builtin('__Set_prototype_values')],[33,9],[34,38],[252,3],[40,1,0],[184],[68,1],[161],[34,39],[68,1],[160],[16,0],[68,41],[16,1],[68,32],[16,1],[68,123],[16,1],[68,32],[16,1],[68,0],[33,12],[3,64],[32,12],[32,39],[101],[4,64],[32,12],[33,41],[32,38],[33,40],[32,41],[252,3],[65,9],[108],[32,40],[252,3],[106],[34,17],[43,0,4],[32,17],[45,0,12],[34,9],[32,2],[32,3],[68,0],[65,128,1],[16,builtin('__Porffor_print')],[33,9],[26],[32,12],[32,39],[98],[4,64],[68,44],[16,1],[68,32],[16,1],[11],[32,12],[68,1],[160],[33,12],[12,1],[11],[11],[68,32],[16,1],[68,125],[16,1],[68,0],[65,128,1],[15],[11]]),...t([33],()=>[[32,6],[65,33],[70],[4,64],[68,87],[16,1],[68,101],[16,1],[68,97],[16,1],[68,107],[16,1],[68,82],[16,1],[68,101],[16,1],[68,102],[16,1],[68,32],[16,1],[68,123],[16,1],[68,125],[16,1],[68,0],[65,128,1],[15],[11]]),[11],[68,0],[65,128,1],[15]],
|
890
890
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],
|
891
|
-
locals:[127,124,127,127,124,124,124,124,127,124,124,127,124,124,127,124,127,124,127,124,124,127,127,124,124,124,124,124,127,124,124,124,124,124,124],localNames:["arg","arg#type","colors","colors#type","depth","depth#type","#typeswitch_tmp1","#logicinner_tmp","#typeswitch_tmp2","#last_type","keys","len","i","x","x#type","#member_obj_99","#member_prop_99","#loadArray_offset","j","buffer","buffer#type","bufferLen","bufferLen#type","ele","ele#type","#member_obj_100","#member_prop_100","#member_allocd","#swap","#member_obj_101","#member_prop_101","map","mapLen","key","key#type","#member_obj_102","#member_prop_102","set","setLen","#member_obj_103","#member_prop_103"],
|
891
|
+
locals:[127,124,127,127,124,124,124,124,127,124,124,127,124,124,124,127,124,127,124,127,124,124,127,127,124,124,124,124,124,127,124,124,124,124,124,124],localNames:["arg","arg#type","colors","colors#type","depth","depth#type","#typeswitch_tmp1","#logicinner_tmp","#typeswitch_tmp2","#last_type","keys","len","i","x","x#type","#member_obj_99","#member_prop_99","#loadArray_offset","j","logictmp","buffer","buffer#type","bufferLen","bufferLen#type","ele","ele#type","#member_obj_100","#member_prop_100","#member_allocd","#swap","#member_obj_101","#member_prop_101","map","mapLen","key","key#type","#member_obj_102","#member_prop_102","set","setLen","#member_obj_103","#member_prop_103"],
|
892
892
|
usedTypes:[80,195,88,67],
|
893
893
|
usesTag:1,usesImports:1,
|
894
894
|
}
|
@@ -2172,10 +2172,11 @@ usedTypes:[7,67,195,80],
|
|
2172
2172
|
usesTag:1,
|
2173
2173
|
}
|
2174
2174
|
this.__Object_prototype_hasOwnProperty = {
|
2175
|
-
wasm:(_,{builtin})=>[[32,2],[32,3],[16,builtin('__ecma262_ToPropertyKey')],[34,
|
2175
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,4],[32,1],[33,5],[2,127],...t([0,128],()=>[[32,5],[65,0],[70],[32,5],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,5],[65,7],[70],[4,64],[32,4],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`Argument is nullish, expected object`),[26],[11],[32,2],[32,3],[16,builtin('__ecma262_ToPropertyKey')],[34,8],[33,7],[33,6],[32,1],[184],[34,9],[68,7],[97],[4,64],[32,0],[252,2],[32,1],[32,6],[252,2],[32,7],[32,6],[252,2],[32,7],[16,builtin('__Porffor_object_hash')],[65,1],[16,builtin('__Porffor_object_lookup')],[183],[68,-1],[98],[184],[65,2],[15],[26],[11],[32,0],[32,1],[16,builtin('__Porffor_object_underlying')],[34,8],[33,11],[33,10],[32,11],[184],[68,7],[97],[4,64],[32,10],[252,2],[32,11],[32,6],[252,2],[32,7],[32,6],[252,2],[32,7],[16,builtin('__Porffor_object_hash')],[65,1],[16,builtin('__Porffor_object_lookup')],[183],[68,-1],[98],[4,64],[68,1],[65,2],[15],[26],[11],[11],[32,0],[32,1],[16,builtin('__Object_keys')],[34,12],[65,208,0],[32,6],[32,7],[68,0],[65,128,1],[16,builtin('__Array_prototype_includes')],[34,8],[15]],
|
2176
2176
|
params:[124,127,124,127],typedParams:1,returns:[124,127],
|
2177
|
-
locals:[124,127,127,124,124,127,124],localNames:["_this","_this#type","prop","prop#type","p","p#type","#last_type","t","obj","obj#type","keys"],
|
2177
|
+
locals:[124,127,124,127,127,124,124,127,124],localNames:["_this","_this#type","prop","prop#type","#logicinner_tmp","#typeswitch_tmp1","p","p#type","#last_type","t","obj","obj#type","keys"],
|
2178
2178
|
usedTypes:[80],
|
2179
|
+
usesTag:1,
|
2179
2180
|
}
|
2180
2181
|
this.__Object_hasOwn = {
|
2181
2182
|
wasm:(_,{builtin})=>[[32,0],[32,1],[32,2],[32,3],[16,builtin('__Object_prototype_hasOwnProperty')],[26],[15]],
|
@@ -2183,12 +2184,12 @@ params:[124,127,124,127],typedParams:1,returns:[124],returnType:2,
|
|
2183
2184
|
locals:[127],localNames:["obj","obj#type","prop","prop#type","#last_type"],
|
2184
2185
|
}
|
2185
2186
|
this.__Porffor_object_in = {
|
2186
|
-
wasm:(_,{t,builtin})=>[[32,0],[32,1],[32,2],[32,3],[16,builtin('__Object_prototype_hasOwnProperty')],[33,4],[33,5],[32,4],[33,6],[2,127],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,5],[252,3],[40,1,0],[12,1],[11]]),[32,5],[252,3],[11],[4,64],[68,1],[15],[26],[11],[32,0],[33,7],[32,1],[33,8],[3,64],[65,1],[4,64],[32,0],[252,2],[32,1],[
|
2187
|
+
wasm:(_,{t,builtin})=>[[32,0],[32,1],[32,2],[32,3],[16,builtin('__Object_prototype_hasOwnProperty')],[33,4],[33,5],[32,4],[33,6],[2,127],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,5],[252,3],[40,1,0],[12,1],[11]]),[32,5],[252,3],[11],[4,64],[68,1],[15],[26],[11],[32,0],[33,7],[32,1],[33,8],[3,64],[65,1],[4,64],[32,0],[252,2],[32,1],[32,1],[65,1],[16,builtin('__Porffor_object_getPrototypeWithHidden')],[33,4],[183],[33,0],[32,4],[33,1],[32,0],[33,5],[32,1],[33,6],[2,127],...t([0,128],()=>[[32,6],[65,0],[70],[32,6],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,5],[68,0],[97],[12,1],[11]]),[65,0],[11],[32,0],[32,7],[97],[114],[4,64],[12,1],[26],[11],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Object_prototype_hasOwnProperty')],[33,4],[33,5],[32,4],[33,6],[2,127],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,5],[252,3],[40,1,0],[12,1],[11]]),[32,5],[252,3],[11],[4,64],[68,1],[15],[26],[11],[32,0],[33,7],[32,1],[33,8],[12,1],[11],[11],[68,0],[15]],
|
2187
2188
|
params:[124,127,124,127],typedParams:1,returns:[124],returnType:2,
|
2188
2189
|
locals:[127,124,127,124,127],localNames:["obj","obj#type","prop","prop#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","lastProto","lastProto#type"],
|
2189
2190
|
}
|
2190
2191
|
this.__Porffor_object_instanceof = {
|
2191
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,3],[184],[68,6],[98],[4,64],...internalThrow(_,'TypeError',`instanceof right-hand side is not a function`),[26],[11],[32,4],[252,2],[32,5],[16,builtin('__Porffor_object_isObject')],[183],[68,0],[97],[4,64],[68,0],[15],[26],[11],[32,0],[33,6],[32,1],[33,7],[3,64],[65,1],[4,64],[32,0],[252,2],[32,1],[
|
2192
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,3],[184],[68,6],[98],[4,64],...internalThrow(_,'TypeError',`instanceof right-hand side is not a function`),[26],[11],[32,4],[252,2],[32,5],[16,builtin('__Porffor_object_isObject')],[183],[68,0],[97],[4,64],[68,0],[15],[26],[11],[32,0],[33,6],[32,1],[33,7],[3,64],[65,1],[4,64],[32,0],[252,2],[32,1],[32,1],[65,1],[16,builtin('__Porffor_object_getPrototypeWithHidden')],[33,8],[183],[33,0],[32,8],[33,1],[32,0],[33,9],[32,1],[33,10],[2,127],...t([0,128],()=>[[32,10],[65,0],[70],[32,10],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,10],[65,7],[70],[4,64],[32,9],[68,0],[97],[12,1],[11]]),[65,0],[11],[32,0],[32,6],[97],[114],[4,64],[12,1],[26],[11],[2,127],[32,0],[34,11],[32,4],[34,12],[32,1],[65,128,1],[114],[65,195,1],[70],[32,5],[65,128,1],[114],[65,195,1],[70],[114],[4,64],[32,11],[32,1],[32,12],[32,5],[16,builtin('__Porffor_compareStrings')],[252,3],[12,1],[11],[97],[11],[32,1],[65,128,1],[114],[32,5],[65,128,1],[114],[70],[113],[4,64],[68,1],[15],[26],[11],[32,0],[33,6],[32,1],[33,7],[12,1],[11],[11],[68,0],[15]],
|
2192
2193
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124],returnType:2,
|
2193
2194
|
locals:[124,127,127,124,127,124,124],localNames:["obj","obj#type","constr","constr#type","checkProto","checkProto#type","lastProto","lastProto#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","__tmpop_left","__tmpop_right"],
|
2194
2195
|
usesTag:1,
|
@@ -2208,10 +2209,11 @@ usedTypes:[80,67,195],
|
|
2208
2209
|
usesTag:1,
|
2209
2210
|
}
|
2210
2211
|
this.__Object_prototype_propertyIsEnumerable = {
|
2211
|
-
wasm:(_,{builtin})=>[[32,2],[32,3],[16,builtin('__ecma262_ToPropertyKey')],[34,
|
2212
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,4],[32,1],[33,5],[2,127],...t([0,128],()=>[[32,5],[65,0],[70],[32,5],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,5],[65,7],[70],[4,64],[32,4],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`Argument is nullish, expected object`),[26],[11],[32,2],[32,3],[16,builtin('__ecma262_ToPropertyKey')],[34,8],[33,7],[33,6],[32,1],[184],[68,7],[97],[4,64],[32,0],[252,2],[32,1],[32,6],[252,2],[32,7],[32,6],[252,2],[32,7],[16,builtin('__Porffor_object_hash')],[65,1],[16,builtin('__Porffor_object_lookup')],[183],[34,9],[68,-1],[97],[4,64],[68,0],[65,2],[15],[26],[11],[32,9],[252,2],[65,1],[16,builtin('__Porffor_object_isEnumerable')],[183],[65,2],[15],[26],[11],[32,0],[32,1],[16,builtin('__Porffor_object_underlying')],[34,8],[33,11],[33,10],[32,11],[184],[68,7],[97],[4,64],[32,10],[252,2],[32,11],[32,6],[252,2],[32,7],[32,6],[252,2],[32,7],[16,builtin('__Porffor_object_hash')],[65,1],[16,builtin('__Porffor_object_lookup')],[183],[34,9],[68,-1],[98],[4,64],[32,9],[252,2],[65,1],[16,builtin('__Porffor_object_isEnumerable')],[183],[65,2],[15],[26],[11],[11],[32,0],[32,1],[16,builtin('__Object_keys')],[34,12],[65,208,0],[32,6],[32,7],[68,0],[65,128,1],[16,builtin('__Array_prototype_includes')],[34,8],[15]],
|
2212
2213
|
params:[124,127,124,127],typedParams:1,returns:[124,127],
|
2213
|
-
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"],
|
2214
|
+
locals:[124,127,124,127,127,124,124,127,124],localNames:["_this","_this#type","prop","prop#type","#logicinner_tmp","#typeswitch_tmp1","p","p#type","#last_type","entryPtr","obj","obj#type","keys"],
|
2214
2215
|
usedTypes:[80],
|
2216
|
+
usesTag:1,
|
2215
2217
|
}
|
2216
2218
|
this.__Object_is = {
|
2217
2219
|
wasm:(_,{t,builtin})=>[[2,127],[32,0],[34,4],[32,2],[34,5],[32,1],[65,128,1],[114],[65,195,1],[70],[32,3],[65,128,1],[114],[65,195,1],[70],[114],[4,64],[32,4],[32,1],[32,5],[32,3],[16,builtin('__Porffor_compareStrings')],[252,3],[12,1],[11],[97],[11],[32,1],[65,128,1],[114],[32,3],[65,128,1],[114],[70],[113],[4,64],[32,0],[68,0],[97],[4,64],[68,1],[32,0],[163],[68,1],[32,2],[163],[97],[184],[15],[26],[11],[68,1],[15],[26],[11],[32,1],[184],[68,1],[97],[184],[34,6],[252,3],[4,124],[32,0],[16,builtin('__Number_isNaN')],[65,2],[33,7],[5],[32,6],[65,2],[33,7],[11],[33,8],[32,7],[33,9],[2,127],...t([67,195],()=>[[32,9],[65,195,0],[70],[32,9],[65,195,1],[70],[114],[4,64],[32,8],[252,3],[40,1,0],[12,1],[11]]),[32,8],[252,3],[11],[4,64],[32,2],[16,builtin('__Number_isNaN')],[15],[26],[11],[68,0],[15]],
|
@@ -2249,9 +2251,9 @@ params:[124,127],typedParams:1,returns:[124],returnType:2,
|
|
2249
2251
|
locals:[],localNames:["obj","obj#type"],
|
2250
2252
|
}
|
2251
2253
|
this.__Object_getOwnPropertyDescriptor = {
|
2252
|
-
wasm:(_,{t,makeString,builtin,internalThrow})=>[[32,2],[32,3],[16,builtin('__ecma262_ToPropertyKey')],[34,
|
2254
|
+
wasm:(_,{t,makeString,builtin,internalThrow})=>[[32,0],[33,4],[32,1],[33,5],[2,127],...t([0,128],()=>[[32,5],[65,0],[70],[32,5],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,5],[65,7],[70],[4,64],[32,4],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`Argument is nullish, expected object`),[26],[11],[32,2],[32,3],[16,builtin('__ecma262_ToPropertyKey')],[34,8],[33,7],[33,6],[32,0],[252,2],[32,1],[32,6],[252,2],[32,7],[32,6],[252,2],[32,7],[16,builtin('__Porffor_object_hash')],[65,1],[16,builtin('__Porffor_object_lookup')],[183],[34,9],[68,-1],[97],[4,64],[32,1],[184],[68,6],[97],[4,64],[32,6],[33,13],[32,0],[33,12],[32,1],[33,5],[2,124],...t([67],()=>[[32,5],[65,195,0],[70],[4,64],[65,8],[16,builtin('__Porffor_allocateBytes')],[34,14],[65,1],[54,0,0],[32,14],[32,13],[252,3],[65,2],[108],[32,12],[252,3],[106],[47,0,4],[59,0,4],[32,14],[184],[65,195,0],[33,8],[12,1],[11]]),...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,13],[252,3],[65,9],[108],[32,12],[252,3],[106],[34,15],[43,0,4],[32,15],[45,0,12],[33,8],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,12],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,12],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,12],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,12],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,12],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,12],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,12],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,12],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,12],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot read property of undefined`),[68,0],[12,1],[11]]),...t([195],()=>[[32,5],[65,195,1],[70],[4,64],[65,8],[16,builtin('__Porffor_allocateBytes')],[34,14],[65,1],[54,0,0],[32,14],[32,13],[252,3],[32,12],[252,3],[106],[45,0,4],[58,0,4],[32,14],[184],[65,195,1],[33,8],[12,1],[11]]),[32,12],[252,2],[32,1],[32,13],[32,7],[16,builtin('__ecma262_ToPropertyKey')],[33,16],[252,2],[32,16],[16,builtin('__Porffor_object_get')],[33,8],[11],[33,10],[32,8],[33,11],[32,10],[33,4],[32,11],[33,5],[2,127],...t([0,128],()=>[[32,5],[65,0],[70],[32,5],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,5],[65,7],[70],[4,64],[32,4],[68,0],[97],[12,1],[11]]),[65,0],[11],[69],[4,64],[16,builtin('__Porffor_allocate')],[184],[34,17],[33,19],...makeString(_,"writable",1),[33,20],[32,19],[252,2],[65,7],[32,20],[252,3],[65,195,1],[68,0],[65,2],[16,builtin('__Porffor_object_set')],[26],[26],[32,17],[33,21],...makeString(_,"enumerable",1),[33,22],[32,21],[252,2],[65,7],[32,22],[252,3],[65,195,1],[68,0],[65,2],[16,builtin('__Porffor_object_set')],[26],[26],[32,17],[33,23],...makeString(_,"configurable",1),[33,24],[32,23],[252,2],[65,7],[32,24],[252,3],[65,195,1],[68,1],[65,2],[16,builtin('__Porffor_object_set')],[26],[26],[32,17],[33,25],...makeString(_,"value",1),[33,26],[32,25],[252,2],[65,7],[32,26],[252,3],[65,195,1],[32,10],[32,11],[16,builtin('__Porffor_object_set')],[26],[26],[32,17],[65,7],[15],[26],[11],[11],[68,0],[65,128,1],[15],[26],[11],[32,9],[252,2],[47,0,16],[183],[33,27],[16,builtin('__Porffor_allocate')],[184],[34,17],[33,28],...makeString(_,"configurable",1),[33,29],[32,28],[252,2],[65,7],[32,29],[252,3],[65,195,1],[32,27],[68,2],[16,builtin('f64_&')],[153],[68,0],[100],[183],[65,2],[16,builtin('__Porffor_object_set')],[26],[26],[32,17],[33,30],...makeString(_,"enumerable",1),[33,31],[32,30],[252,2],[65,7],[32,31],[252,3],[65,195,1],[32,27],[68,4],[16,builtin('f64_&')],[153],[68,0],[100],[183],[65,2],[16,builtin('__Porffor_object_set')],[26],[26],[32,27],[68,1],[16,builtin('f64_&')],[252,3],[4,64],[32,17],[33,32],...makeString(_,"get",1),[33,33],[32,32],[252,2],[65,7],[32,33],[252,3],[65,195,1],[32,9],[252,2],[65,1],[16,builtin('__Porffor_object_accessorGet')],[33,8],[183],[32,8],[16,builtin('__Porffor_object_set')],[26],[26],[32,17],[33,34],...makeString(_,"set",1),[33,35],[32,34],[252,2],[65,7],[32,35],[252,3],[65,195,1],[32,9],[252,2],[65,1],[16,builtin('__Porffor_object_accessorSet')],[33,8],[183],[32,8],[16,builtin('__Porffor_object_set')],[26],[26],[32,17],[65,7],[15],[26],[11],[32,9],[252,2],[43,0,8],[33,36],[65,1],[33,37],[32,27],[252,3],[65,8],[118],[33,37],[32,17],[33,38],...makeString(_,"writable",1),[33,39],[32,38],[252,2],[65,7],[32,39],[252,3],[65,195,1],[32,27],[68,8],[16,builtin('f64_&')],[153],[68,0],[100],[183],[65,2],[16,builtin('__Porffor_object_set')],[26],[26],[32,17],[33,40],...makeString(_,"value",1),[33,41],[32,40],[252,2],[65,7],[32,41],[252,3],[65,195,1],[32,36],[32,37],[16,builtin('__Porffor_object_set')],[26],[26],[32,17],[65,7],[15]],
|
2253
2255
|
params:[124,127,124,127],typedParams:1,returns:[124,127],
|
2254
|
-
locals:[124,127,127,124,124,127,124,124,127,127,127,
|
2256
|
+
locals:[124,127,124,127,127,124,124,127,124,124,127,127,127,124,127,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,124,127,124,124,124,124],localNames:["obj","obj#type","prop","prop#type","#logicinner_tmp","#typeswitch_tmp1","p","p#type","#last_type","entryPtr","v","v#type","#member_obj_219","#member_prop_219","#member_allocd","#loadArray_offset","#swap","out","#member_setter_ptr_tmp","#member_obj_220","#member_prop_220","#member_obj_221","#member_prop_221","#member_obj_222","#member_prop_222","#member_obj_223","#member_prop_223","tail","#member_obj_224","#member_prop_224","#member_obj_225","#member_prop_225","#member_obj_226","#member_prop_226","#member_obj_227","#member_prop_227","value","value#type","#member_obj_228","#member_prop_228","#member_obj_229","#member_prop_229"],
|
2255
2257
|
usedTypes:[67,195,7],
|
2256
2258
|
usesTag:1,
|
2257
2259
|
}
|
@@ -2305,7 +2307,7 @@ usedTypes:[7,67,195,80],
|
|
2305
2307
|
table:1,usesTag:1,
|
2306
2308
|
}
|
2307
2309
|
this.__Object_getPrototypeOf = {
|
2308
|
-
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',`Object is nullish, expected object`),[26],[11],[32,0],[252,2],[32,1],[
|
2310
|
+
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',`Object is nullish, expected object`),[26],[11],[32,0],[252,2],[32,1],[32,1],[65,1],[16,builtin('__Porffor_object_getPrototypeWithHidden')],[33,4],[183],[32,4],[15]],
|
2309
2311
|
params:[124,127],typedParams:1,returns:[124,127],
|
2310
2312
|
locals:[124,127,127],localNames:["obj","obj#type","#logicinner_tmp","#typeswitch_tmp1","#last_type"],
|
2311
2313
|
usesTag:1,
|
@@ -2317,13 +2319,13 @@ locals:[124,127],localNames:["obj","obj#type","proto","proto#type","#logicinner_
|
|
2317
2319
|
usesTag:1,
|
2318
2320
|
}
|
2319
2321
|
this.__Object_prototype_isPrototypeOf = {
|
2320
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,4],[32,1],[33,5],[2,127],...t([0,128],()=>[[32,5],[65,0],[70],[32,5],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,5],[65,7],[70],[4,64],[32,4],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`This is nullish, expected object`),[26],[11],[32,2],[252,2],[32,3],[16,builtin('__Porffor_object_isObject')],[183],[68,0],[97],[4,64],[68,0],[65,2],[15],[26],[11],[2,127],[32,0],[34,7],[32,2],[252,2],[32,3],[
|
2322
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,4],[32,1],[33,5],[2,127],...t([0,128],()=>[[32,5],[65,0],[70],[32,5],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,5],[65,7],[70],[4,64],[32,4],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`This is nullish, expected object`),[26],[11],[32,2],[252,2],[32,3],[16,builtin('__Porffor_object_isObject')],[183],[68,0],[97],[4,64],[68,0],[65,2],[15],[26],[11],[2,127],[32,0],[34,7],[32,2],[252,2],[32,3],[32,3],[65,1],[16,builtin('__Porffor_object_getPrototypeWithHidden')],[33,6],[183],[34,8],[32,1],[65,128,1],[114],[65,195,1],[70],[32,6],[65,128,1],[114],[65,195,1],[70],[114],[4,64],[32,7],[32,1],[32,8],[32,6],[16,builtin('__Porffor_compareStrings')],[252,3],[12,1],[11],[97],[11],[184],[65,2],[15]],
|
2321
2323
|
params:[124,127,124,127],typedParams:1,returns:[124,127],
|
2322
2324
|
locals:[124,127,127,124,124],localNames:["_this","_this#type","obj","obj#type","#logicinner_tmp","#typeswitch_tmp1","#last_type","__tmpop_left","__tmpop_right"],
|
2323
2325
|
usesTag:1,
|
2324
2326
|
}
|
2325
2327
|
this.__Object_prototype_toString = {
|
2326
|
-
wasm:(_,{t,makeString,builtin,funcRef,internalThrow})=>[[32,1],[184],[68,7],[97],[4,64],[32,0],[34,2],[68,0],[97],[69],[4,64],...makeString(_,"toString",1),[33,6],[32,2],[34,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[33,3],[32,4],[184],[68,6],[97],[34,8],[4,127],[32,3],...funcRef('__Object_prototype_toString'),[98],[65,2],[33,7],[5],[32,8],[65,2],[33,7],[11],[4,64],[32,3],[33,11],[32,4],[33,12],[2,124],...t([6],()=>[[32,12],[65,6],[70],[4,64],[68,0],[65,128,1],[32,0],[34,9],[32,1],[34,10],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[252,3],[17,12,0],[33,7],[12,1],[11]]),...internalThrow(_,'TypeError',`ovr is not a function`),[68,0],[11],[32,7],[15],[26],[11],[32,2],[252,2],[65,7],[65,0],[65,195,1],[65,0],[65,
|
2328
|
+
wasm:(_,{t,makeString,builtin,funcRef,internalThrow})=>[[32,1],[184],[68,7],[97],[4,64],[32,0],[34,2],[68,0],[97],[69],[4,64],...makeString(_,"toString",1),[33,6],[32,2],[34,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[33,3],[32,4],[184],[68,6],[97],[34,8],[4,127],[32,3],...funcRef('__Object_prototype_toString'),[98],[65,2],[33,7],[5],[32,8],[65,2],[33,7],[11],[4,64],[32,3],[33,11],[32,4],[33,12],[2,124],...t([6],()=>[[32,12],[65,6],[70],[4,64],[68,0],[65,128,1],[32,0],[34,9],[32,1],[34,10],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[252,3],[17,12,0],[33,7],[12,1],[11]]),...internalThrow(_,'TypeError',`ovr is not a function`),[68,0],[11],[32,7],[15],[26],[11],[32,2],[252,2],[65,7],[65,0],[65,195,1],[65,0],[65,195,1],[16,builtin('__Porffor_object_hash')],[65,1],[16,builtin('__Porffor_object_lookup')],[183],[34,13],[68,-1],[98],[4,64],[32,13],[252,2],[65,1],[16,builtin('__Porffor_object_readValue')],[34,7],[33,4],[33,3],[32,4],[184],[68,6],[97],[4,64],[32,3],[33,14],[32,4],[33,12],[2,124],...t([6],()=>[[32,12],[65,6],[70],[4,64],[68,0],[65,128,1],[32,0],[34,9],[32,1],[34,10],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[32,14],[252,3],[17,12,0],[33,7],[12,1],[11]]),...internalThrow(_,'TypeError',`ovr is not a function`),[68,0],[11],[32,7],[15],[26],[5],[68,0],[65,128,1],[15],[26],[11],[11],[11],[11],[32,0],[68,0],[97],[32,1],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...makeString(_,"[object Undefined]",1),[65,195,1],[15],[26],[11],[32,0],[68,0],[97],[32,1],[65,128,1],[114],[65,7],[65,128,1],[114],[70],[113],[4,64],...makeString(_,"[object Null]",1),[65,195,1],[15],[26],[11],[32,1],[184],[34,15],[68,80],[97],[4,64],...makeString(_,"[object Array]",1),[65,195,1],[15],[26],[11],[32,15],[68,6],[97],[4,64],...makeString(_,"[object Function]",1),[65,195,1],[15],[26],[11],[32,15],[68,2],[97],[32,15],[68,37],[97],[114],[4,64],...makeString(_,"[object Boolean]",1),[65,195,1],[15],[26],[11],[32,15],[68,1],[97],[32,15],[68,38],[97],[114],[4,64],...makeString(_,"[object Number]",1),[65,195,1],[15],[26],[11],[32,15],[68,67],[97],[32,15],[68,195],[97],[114],[32,15],[68,39],[97],[114],[4,64],...makeString(_,"[object String]",1),[65,195,1],[15],[26],[11],[32,15],[68,18],[97],[4,64],...makeString(_,"[object Date]",1),[65,195,1],[15],[26],[11],[32,15],[68,17],[97],[4,64],...makeString(_,"[object RegExp]",1),[65,195,1],[15],[26],[11],...makeString(_,"[object Object]",1),[65,195,1],[15]],
|
2327
2329
|
params:[124,127],typedParams:1,returns:[124,127],
|
2328
2330
|
locals:[124,124,127,124,124,127,127,124,127,124,127,124,124,124],localNames:["_this","_this#type","obj","ovr","ovr#type","#member_obj_250","#member_prop_250","#last_type","logictmpi","#call_val","#call_type","#indirect_251_callee","#typeswitch_tmp1","entryPtr","#indirect_252_callee","t"],
|
2329
2331
|
usedTypes:[7,195],
|
@@ -2335,7 +2337,7 @@ params:[124,127],typedParams:1,returns:[124,127],
|
|
2335
2337
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
2336
2338
|
}
|
2337
2339
|
this.__Object_prototype_valueOf = {
|
2338
|
-
wasm:(_,{t,makeString,builtin,funcRef,internalThrow})=>[[32,1],[184],[68,7],[97],[4,64],[32,0],[34,2],[68,0],[97],[69],[4,64],...makeString(_,"valueOf",1),[33,6],[32,2],[34,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[33,3],[32,4],[184],[68,6],[97],[34,8],[4,127],[32,3],...funcRef('__Object_prototype_valueOf'),[98],[65,2],[33,7],[5],[32,8],[65,2],[33,7],[11],[4,64],[32,3],[33,11],[32,4],[33,12],[2,124],...t([6],()=>[[32,12],[65,6],[70],[4,64],[68,0],[65,128,1],[32,0],[34,9],[32,1],[34,10],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[252,3],[17,12,0],[33,7],[12,1],[11]]),...internalThrow(_,'TypeError',`ovr is not a function`),[68,0],[11],[32,7],[15],[26],[11],[32,2],[252,2],[65,7],[65,0],[65,195,1],[65,0],[65,
|
2340
|
+
wasm:(_,{t,makeString,builtin,funcRef,internalThrow})=>[[32,1],[184],[68,7],[97],[4,64],[32,0],[34,2],[68,0],[97],[69],[4,64],...makeString(_,"valueOf",1),[33,6],[32,2],[34,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[33,3],[32,4],[184],[68,6],[97],[34,8],[4,127],[32,3],...funcRef('__Object_prototype_valueOf'),[98],[65,2],[33,7],[5],[32,8],[65,2],[33,7],[11],[4,64],[32,3],[33,11],[32,4],[33,12],[2,124],...t([6],()=>[[32,12],[65,6],[70],[4,64],[68,0],[65,128,1],[32,0],[34,9],[32,1],[34,10],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[252,3],[17,12,0],[33,7],[12,1],[11]]),...internalThrow(_,'TypeError',`ovr is not a function`),[68,0],[11],[32,7],[15],[26],[11],[32,2],[252,2],[65,7],[65,0],[65,195,1],[65,0],[65,195,1],[16,builtin('__Porffor_object_hash')],[65,1],[16,builtin('__Porffor_object_lookup')],[183],[34,13],[68,-1],[98],[4,64],[32,13],[252,2],[65,1],[16,builtin('__Porffor_object_readValue')],[34,7],[33,4],[33,3],[32,4],[184],[68,6],[97],[4,64],[32,3],[33,14],[32,4],[33,12],[2,124],...t([6],()=>[[32,12],[65,6],[70],[4,64],[68,0],[65,128,1],[32,0],[34,9],[32,1],[34,10],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[68,0],[65,128,1],[32,14],[252,3],[17,12,0],[33,7],[12,1],[11]]),...internalThrow(_,'TypeError',`ovr is not a function`),[68,0],[11],[32,7],[15],[26],[5],[68,0],[65,128,1],[15],[26],[11],[11],[11],[11],[32,0],[32,1],[15]],
|
2339
2341
|
params:[124,127],typedParams:1,returns:[124,127],
|
2340
2342
|
locals:[124,124,127,124,124,127,127,124,127,124,127,124,124],localNames:["_this","_this#type","obj","ovr","ovr#type","#member_obj_253","#member_prop_253","#last_type","logictmpi","#call_val","#call_type","#indirect_254_callee","#typeswitch_tmp1","entryPtr","#indirect_255_callee"],
|
2341
2343
|
usedTypes:[7,195],
|
@@ -2355,7 +2357,7 @@ usedTypes:[80,7],
|
|
2355
2357
|
hasRestArgument:1,
|
2356
2358
|
}
|
2357
2359
|
this.__Porffor_object_getPrototypeWithHidden = {
|
2358
|
-
wasm:(_,{hasFunc,Valtype,Opcodes,builtin,generate})=>[[32,3],[65,128,1],[70],[4,64],[32,1],[33,2],[65,1],[33,3],[11],[32,0],[32,1],[16,builtin('__Porffor_object_getPrototype')],[34,6],[33,5],[33,4],[32,5],[69],[4,64],[null,()=>{if(hasFunc('#get___String_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"CallExpression","callee":{"type":"Identifier","name":"__Porffor_fastOr"},"arguments":[{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_string"}},{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_bytestring"}},{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_stringobject"}}],"optional":false},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__String_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Number_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"CallExpression","callee":{"type":"Identifier","name":"__Porffor_fastOr"},"arguments":[{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_number"}},{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_numberobject"}}],"optional":false},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Number_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Boolean_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"CallExpression","callee":{"type":"Identifier","name":"__Porffor_fastOr"},"arguments":[{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_boolean"}},{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_booleanobject"}}],"optional":false},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Boolean_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___BigInt_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_bigint"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__BigInt_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Symbol_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_symbol"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Symbol_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Function_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_function"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Function_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Object_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_object"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Object_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___RegExp_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_regexp"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__RegExp_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Date_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_date"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Date_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Set_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_set"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Set_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Map_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_map"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Map_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___ArrayBuffer_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_arraybuffer"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__ArrayBuffer_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___SharedArrayBuffer_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_sharedarraybuffer"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__SharedArrayBuffer_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___DataView_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_dataview"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__DataView_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Uint8Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_uint8array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Uint8Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Int8Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_int8array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Int8Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Uint8ClampedArray_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_uint8clampedarray"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Uint8ClampedArray_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Uint16Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_uint16array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Uint16Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Int16Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_int16array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Int16Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Uint32Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_uint32array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Uint32Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Int32Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_int32array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Int32Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Float32Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_float32array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Float32Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Float64Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_float64array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Float64Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___WeakRef_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_weakref"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__WeakRef_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___WeakSet_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_weakset"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__WeakSet_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___WeakMap_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_weakmap"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__WeakMap_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Promise_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_promise"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Promise_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Error_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_error"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Error_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___AggregateError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_aggregateerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__AggregateError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___TypeError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_typeerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__TypeError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___ReferenceError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_referenceerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__ReferenceError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___SyntaxError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_syntaxerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__SyntaxError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___RangeError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_rangeerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__RangeError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___EvalError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_evalerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__EvalError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___URIError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_urierror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__URIError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Test262Error_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_test262error"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Test262Error_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___TodoError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_todoerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__TodoError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get_____Porffor_Generator_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES___porffor_generator"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"____Porffor_Generator_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get_____Porffor_AsyncGenerator_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES___porffor_asyncgenerator"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"____Porffor_AsyncGenerator_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[16,builtin('#get___Object_prototype')],[65,7],[15],[26],[11],[32,4],[32,5],[15]],
|
2360
|
+
wasm:(_,{hasFunc,Valtype,Opcodes,builtin,generate})=>[[32,0],[32,1],[16,builtin('__Porffor_object_getPrototype')],[34,6],[33,5],[33,4],[32,5],[69],[4,64],[null,()=>{if(hasFunc('#get___String_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"CallExpression","callee":{"type":"Identifier","name":"__Porffor_fastOr"},"arguments":[{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_string"}},{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_bytestring"}},{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_stringobject"}}],"optional":false},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__String_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Number_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"CallExpression","callee":{"type":"Identifier","name":"__Porffor_fastOr"},"arguments":[{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_number"}},{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_numberobject"}}],"optional":false},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Number_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Boolean_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"CallExpression","callee":{"type":"Identifier","name":"__Porffor_fastOr"},"arguments":[{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_boolean"}},{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_booleanobject"}}],"optional":false},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Boolean_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___BigInt_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_bigint"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__BigInt_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Symbol_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_symbol"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Symbol_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Function_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_function"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Function_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Object_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_object"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Object_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___RegExp_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_regexp"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__RegExp_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Date_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_date"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Date_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Set_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_set"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Set_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Map_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_map"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Map_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___ArrayBuffer_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_arraybuffer"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__ArrayBuffer_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___SharedArrayBuffer_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_sharedarraybuffer"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__SharedArrayBuffer_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___DataView_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_dataview"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__DataView_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Uint8Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_uint8array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Uint8Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Int8Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_int8array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Int8Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Uint8ClampedArray_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_uint8clampedarray"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Uint8ClampedArray_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Uint16Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_uint16array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Uint16Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Int16Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_int16array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Int16Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Uint32Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_uint32array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Uint32Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Int32Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_int32array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Int32Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Float32Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_float32array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Float32Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Float64Array_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_float64array"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Float64Array_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___WeakRef_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_weakref"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__WeakRef_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___WeakSet_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_weakset"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__WeakSet_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___WeakMap_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_weakmap"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__WeakMap_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Promise_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_promise"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Promise_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Error_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_error"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Error_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___AggregateError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_aggregateerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__AggregateError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___TypeError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_typeerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__TypeError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___ReferenceError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_referenceerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__ReferenceError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___SyntaxError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_syntaxerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__SyntaxError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___RangeError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_rangeerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__RangeError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___EvalError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_evalerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__EvalError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___URIError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_urierror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__URIError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___Test262Error_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_test262error"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__Test262Error_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get___TodoError_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES_todoerror"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"__TodoError_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get_____Porffor_Generator_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES___porffor_generator"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"____Porffor_Generator_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[null,()=>{if(hasFunc('#get_____Porffor_AsyncGenerator_prototype')){const r=()=>{valtype=Prefs.valtype??'f64';valtypeBinary=Valtype[valtype];const valtypeInd=['i32','i64','f64'].indexOf(valtype);Opcodes.i32_to=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_s][valtypeInd];Opcodes.i32_to_u=[[],[Opcodes.i32_wrap_i64],Opcodes.i32_trunc_sat_f64_u][valtypeInd];Opcodes.i32_from=[[],[Opcodes.i64_extend_i32_s],[Opcodes.f64_convert_i32_s]][valtypeInd];Opcodes.i32_from_u=[[],[Opcodes.i64_extend_i32_u],[ Opcodes.f64_convert_i32_u]][valtypeInd]};const a=Prefs;Prefs={"treeshakeWasmImports":false,"alwaysMemory":true,"indirectCalls":true,"optUnused":true,"data":true,"passiveData":false,"rmUnusedTypes":false,"optTypes":true,"coctc":false,"valtype":"i32","module":true,"todoTime":"compile","truthy":"no_nan_negative","scopedPageNames":true,"funsafeNoUnlikelyProtoChecks":true,"zeroChecks":"charCodeAt","fastLength":true,"parseTypes":true,"activeData":true};r();const b=generate(_,{"type":"BlockStatement","body":[{"type":"IfStatement","test":{"type":"BinaryExpression","left":{"type":"Identifier","name":"trueType"},"operator":"==","right":{"type":"Identifier","name":"__Porffor_TYPES___porffor_asyncgenerator"}},"consequent":{"type":"ReturnStatement","argument":{"type":"Identifier","name":"____Porffor_AsyncGenerator_prototype"}},"alternate":null}]}).slice(0,-1);Prefs=a;r();return b;}return []}],[16,builtin('#get___Object_prototype')],[65,7],[15],[26],[11],[32,4],[32,5],[15]],
|
2359
2361
|
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
2360
2362
|
locals:[127,127,127],localNames:["obj","obj#type","trueType","trueType#type","objectProto","objectProto#type","#last_type"],
|
2361
2363
|
usedTypes:[7],
|
package/compiler/codegen.js
CHANGED
@@ -848,13 +848,6 @@ const truthy = (scope, wasm, type, intIn = false, intOut = false, forceTruthyMod
|
|
848
848
|
] ] ] : []),
|
849
849
|
|
850
850
|
[ 'default', def ]
|
851
|
-
|
852
|
-
// [ [ TYPES.boolean, TYPES.number, TYPES.object, TYPES.undefined, TYPES.empty ], def ],
|
853
|
-
// [ 'default', [
|
854
|
-
// // other types are always truthy
|
855
|
-
// ...(!useTmp ? [ [ Opcodes.drop ] ] : []),
|
856
|
-
// number(1, intOut ? Valtype.i32 : valtypeBinary)
|
857
|
-
// ] ]
|
858
851
|
], intOut ? Valtype.i32 : valtypeBinary)
|
859
852
|
];
|
860
853
|
};
|
@@ -921,13 +914,6 @@ const falsy = (scope, wasm, type, intIn = false, intOut = false, forceTruthyMode
|
|
921
914
|
] ] ] : []),
|
922
915
|
|
923
916
|
[ 'default', def ]
|
924
|
-
|
925
|
-
// [ [ TYPES.boolean, TYPES.number, TYPES.object, TYPES.undefined, TYPES.empty ], def ],
|
926
|
-
// [ 'default', [
|
927
|
-
// // other types are always truthy
|
928
|
-
// ...(!useTmp ? [ [ Opcodes.drop ] ] : []),
|
929
|
-
// number(0, intOut ? Valtype.i32 : valtypeBinary)
|
930
|
-
// ] ]
|
931
917
|
], intOut ? Valtype.i32 : valtypeBinary)
|
932
918
|
];
|
933
919
|
};
|
@@ -1723,7 +1709,6 @@ const getNodeType = (scope, node) => {
|
|
1723
1709
|
if (guess != null) out.guess = typeof guess === 'number' ? [ number(guess, Valtype.i32) ] : guess;
|
1724
1710
|
|
1725
1711
|
typeUsed(scope, knownType(scope, out));
|
1726
|
-
|
1727
1712
|
return out;
|
1728
1713
|
};
|
1729
1714
|
|
@@ -1891,8 +1876,6 @@ const aliasPrimObjsBC = bc => {
|
|
1891
1876
|
const add = (x, y) => {
|
1892
1877
|
if (bc[x] == null) return;
|
1893
1878
|
|
1894
|
-
// bc[`${x},${y}`] = original;
|
1895
|
-
|
1896
1879
|
// intentionally duplicate to avoid extra bc for prim objs as rarely used
|
1897
1880
|
bc[y] = bc[x];
|
1898
1881
|
};
|
@@ -3124,8 +3107,6 @@ const extractTypeAnnotation = decl => {
|
|
3124
3107
|
const typeName = type;
|
3125
3108
|
type = typeAnnoToPorfType(type);
|
3126
3109
|
|
3127
|
-
// if (decl.name) console.log(decl.name, { type, elementType });
|
3128
|
-
|
3129
3110
|
return { type, typeName, elementType };
|
3130
3111
|
};
|
3131
3112
|
|
@@ -3551,6 +3532,8 @@ const memberTmpNames = scope => {
|
|
3551
3532
|
|
3552
3533
|
// COCTC: cross-object compile-time cache
|
3553
3534
|
const coctcOffset = prop => {
|
3535
|
+
if (!Prefs.coctc) return 0;
|
3536
|
+
|
3554
3537
|
if (typeof prop === 'object') {
|
3555
3538
|
if (
|
3556
3539
|
prop.computed || prop.optional ||
|
@@ -3691,7 +3674,7 @@ const generateAssign = (scope, decl, _global, _name, valueUnused = false) => {
|
|
3691
3674
|
// todo/perf: use i32 object (and prop?) locals
|
3692
3675
|
const { objectTmp, propertyTmp, objectGet, propertyGet } = memberTmpNames(scope);
|
3693
3676
|
|
3694
|
-
const useCoctc =
|
3677
|
+
const useCoctc = coctcOffset(decl.left) > 0;
|
3695
3678
|
if (useCoctc) valueUnused = false;
|
3696
3679
|
|
3697
3680
|
// opt: do not mark prototype funcs as referenced to optimize this in them
|
@@ -4137,7 +4120,7 @@ const generateUnary = (scope, decl) => {
|
|
4137
4120
|
const property = getProperty(decl.argument);
|
4138
4121
|
if (property.value === 'length' || property.value === 'name') scope.noFastFuncMembers = true;
|
4139
4122
|
|
4140
|
-
const useCoctc =
|
4123
|
+
const useCoctc = coctcOffset(decl.argument) > 0;
|
4141
4124
|
const objectTmp = useCoctc && localTmp(scope, '#coctc_object', Valtype.i32);
|
4142
4125
|
|
4143
4126
|
const out = [
|
@@ -5658,7 +5641,7 @@ const generateMember = (scope, decl, _global, _name) => {
|
|
5658
5641
|
|
5659
5642
|
const out = [
|
5660
5643
|
...generate(scope, object),
|
5661
|
-
Opcodes.i32_to_u
|
5644
|
+
Opcodes.i32_to_u
|
5662
5645
|
];
|
5663
5646
|
|
5664
5647
|
if (Prefs.fastLength) {
|
@@ -5685,7 +5668,7 @@ const generateMember = (scope, decl, _global, _name) => {
|
|
5685
5668
|
...out,
|
5686
5669
|
[ Opcodes.local_set, tmp ],
|
5687
5670
|
|
5688
|
-
...
|
5671
|
+
...type,
|
5689
5672
|
number(TYPE_FLAGS.length, Valtype.i32),
|
5690
5673
|
[ Opcodes.i32_and ],
|
5691
5674
|
[ Opcodes.if, valtypeBinary ],
|
@@ -5707,6 +5690,8 @@ const generateMember = (scope, decl, _global, _name) => {
|
|
5707
5690
|
|
5708
5691
|
// todo/perf: use i32 object (and prop?) locals
|
5709
5692
|
const { objectTmp, propertyTmp, objectGet, propertyGet } = memberTmpNames(scope);
|
5693
|
+
const type = getNodeType(scope, object);
|
5694
|
+
const known = knownType(scope, type);
|
5710
5695
|
|
5711
5696
|
// todo: generate this array procedurally during builtinFuncs creation
|
5712
5697
|
if (['size', 'description', 'byteLength', 'byteOffset', 'buffer', 'detached', 'resizable', 'growable', 'maxByteLength'].includes(decl.property.name)) {
|
@@ -5714,7 +5699,6 @@ const generateMember = (scope, decl, _global, _name) => {
|
|
5714
5699
|
const bc = {};
|
5715
5700
|
const cands = Object.keys(builtinFuncs).filter(x => x.startsWith('__') && x.endsWith('_prototype_' + decl.property.name + '$get'));
|
5716
5701
|
|
5717
|
-
const known = knownType(scope, getNodeType(scope, object));
|
5718
5702
|
if (cands.length > 0) {
|
5719
5703
|
for (const x of cands) {
|
5720
5704
|
const type = TYPES[x.split('_prototype_')[0].slice(2).toLowerCase()];
|
@@ -5750,10 +5734,10 @@ const generateMember = (scope, decl, _global, _name) => {
|
|
5750
5734
|
if (known == null) extraBC = bc;
|
5751
5735
|
}
|
5752
5736
|
|
5753
|
-
const useCoctc =
|
5737
|
+
const useCoctc = coctcOffset(decl) > 0;
|
5754
5738
|
const coctcObjTmp = useCoctc && localTmp(scope, '#coctc_obj' + uniqId(), Valtype.i32);
|
5755
5739
|
|
5756
|
-
const out = typeSwitch(scope,
|
5740
|
+
const out = typeSwitch(scope, type, {
|
5757
5741
|
...(decl.computed ? {
|
5758
5742
|
[TYPES.array]: () => [
|
5759
5743
|
propertyGet,
|
@@ -5921,20 +5905,15 @@ const generateMember = (scope, decl, _global, _name) => {
|
|
5921
5905
|
|
5922
5906
|
[TYPES.undefined]: internalThrow(scope, 'TypeError', `Cannot read property of undefined`, true),
|
5923
5907
|
|
5924
|
-
// default: internalThrow(scope, 'TypeError', 'Unsupported member expression object', true)
|
5925
5908
|
default: () => [
|
5926
|
-
|
5927
|
-
|
5928
|
-
|
5929
|
-
|
5930
|
-
|
5931
|
-
|
5932
|
-
|
5933
|
-
|
5934
|
-
|
5935
|
-
objectGet,
|
5936
|
-
Opcodes.i32_to,
|
5937
|
-
...getNodeType(scope, object),
|
5909
|
+
...(useCoctc && known === TYPES.object ? [
|
5910
|
+
[ Opcodes.local_get, coctcObjTmp ],
|
5911
|
+
number(TYPES.object, Valtype.i32)
|
5912
|
+
] : [
|
5913
|
+
objectGet,
|
5914
|
+
Opcodes.i32_to,
|
5915
|
+
...type
|
5916
|
+
]),
|
5938
5917
|
|
5939
5918
|
...toPropertyKey(scope, [ propertyGet ], getNodeType(scope, property), decl.computed, true),
|
5940
5919
|
|
@@ -5954,7 +5933,7 @@ const generateMember = (scope, decl, _global, _name) => {
|
|
5954
5933
|
...generate(scope, object),
|
5955
5934
|
[ Opcodes.local_tee, objectTmp ],
|
5956
5935
|
|
5957
|
-
...nullish(scope, [],
|
5936
|
+
...nullish(scope, [], type, false, true),
|
5958
5937
|
[ Opcodes.if, Blocktype.void ],
|
5959
5938
|
...setLastType(scope, TYPES.undefined),
|
5960
5939
|
number(0),
|
@@ -6959,39 +6938,6 @@ export default program => {
|
|
6959
6938
|
f.wasm = f.returns.map(x => number(0, x));
|
6960
6939
|
}
|
6961
6940
|
|
6962
|
-
// // remove never generated functions
|
6963
|
-
// let indexDelta = 0;
|
6964
|
-
// const funcRemap = new Map();
|
6965
|
-
// for (let i = 0; i < funcs.length; i++) {
|
6966
|
-
// const f = funcs[i];
|
6967
|
-
// if (f.internal || f.wasm) {
|
6968
|
-
// if (indexDelta) {
|
6969
|
-
// funcRemap.set(f.index, f.index - indexDelta);
|
6970
|
-
// f.index -= indexDelta;
|
6971
|
-
// }
|
6972
|
-
// continue;
|
6973
|
-
// }
|
6974
|
-
|
6975
|
-
// funcs.splice(i--, 1);
|
6976
|
-
// indexDelta++;
|
6977
|
-
// }
|
6978
|
-
|
6979
|
-
// // remap call ops
|
6980
|
-
// if (indexDelta) for (let i = 0; i < funcs.length; i++) {
|
6981
|
-
// const wasm = funcs[i].wasm;
|
6982
|
-
// for (let j = 0; j < wasm.length; j++) {
|
6983
|
-
// const op = wasm[j];
|
6984
|
-
// if (op[0] === Opcodes.call) {
|
6985
|
-
// let idx = op[1];
|
6986
|
-
// wasm[j] = [ Opcodes.call, funcRemap.get(idx) ?? idx ];
|
6987
|
-
// }
|
6988
|
-
|
6989
|
-
// if (op[0] === Opcodes.const && op[2] === 'funcref') {
|
6990
|
-
// wasm[j] = [ Opcodes.const, funcRemap.get(op[1] + importedFuncs.length) - importedFuncs.length ];
|
6991
|
-
// }
|
6992
|
-
// }
|
6993
|
-
// }
|
6994
|
-
|
6995
6941
|
// add indirect funcs to end of funcs
|
6996
6942
|
for (let i = 0; i < indirectFuncs.length; i++) {
|
6997
6943
|
const f = indirectFuncs[i];
|
package/package.json
CHANGED
package/r.cjs
CHANGED
@@ -1,8 +1,9 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
let a = { b: { } };
|
2
|
+
a.b.foo = () => {};
|
3
|
+
a.b.bar = function () {};
|
4
|
+
a.b.baz = function baz() {};
|
5
5
|
|
6
|
+
console.log(a.b);
|
6
7
|
// let x = {};
|
7
8
|
// x.__proto__ = { wow() { console.log(0); } };
|
8
9
|
// Object.defineProperty(x, '__proto__', { value: { wow() { console.log(1); } } });
|
package/runner/flamegraph.js
CHANGED
@@ -55,7 +55,7 @@ const render = () => {
|
|
55
55
|
text += `${' '.repeat(32 - text.length)}┃ render: ${lastRenderTime.toFixed(2)}ms`;
|
56
56
|
|
57
57
|
if (end != null || Prefs.live) {
|
58
|
-
const btHeight =
|
58
|
+
const btHeight = 40;
|
59
59
|
const fgBottom = termHeight - btHeight - 10;
|
60
60
|
|
61
61
|
let lastEnds = [];
|
@@ -115,11 +115,11 @@ const render = () => {
|
|
115
115
|
(() => {
|
116
116
|
const perTime = 18;
|
117
117
|
let text = ' ' + 'name';
|
118
|
-
text += `${' '.repeat(
|
119
|
-
text += `${' '.repeat(
|
120
|
-
text += `${' '.repeat(
|
121
|
-
text += `${' '.repeat(
|
122
|
-
text += `${' '.repeat(
|
118
|
+
text += `${' '.repeat(60 - text.length)}┃ total`;
|
119
|
+
text += `${' '.repeat(60 + 5 + perTime - text.length)}┃ min`;
|
120
|
+
text += `${' '.repeat(60 + 5 + (perTime * 2) - text.length)}┃ avg`;
|
121
|
+
text += `${' '.repeat(60 + 5 + (perTime * 3) - text.length)}┃ max`;
|
122
|
+
text += `${' '.repeat(60 + 5 + (perTime * 4) - text.length)}┃ count`;
|
123
123
|
process.stdout.write(`\x1b[0m\x1b[2m${text.replaceAll('┃', '\x1b[0m\x1b[90m┃\x1b[0m\x1b[2m')}${' '.repeat(termWidth - text.length)}\x1b[0m`);
|
124
124
|
})();
|
125
125
|
|
@@ -134,13 +134,13 @@ const render = () => {
|
|
134
134
|
|
135
135
|
const perTime = 18;
|
136
136
|
let text = ' \x1b[1m' + func.name + '\x1b[22m';
|
137
|
-
text += `${' '.repeat(
|
138
|
-
text += `${' '.repeat(
|
139
|
-
text += `${' '.repeat(
|
140
|
-
text += `${' '.repeat(
|
141
|
-
text += `${' '.repeat(
|
142
|
-
text += `${' '.repeat(
|
143
|
-
process.stdout.write(`\x1b[${termHeight - btHeight + 2 + i};1H\x1b[0m${text.replaceAll('┃', '\x1b[90m┃\x1b[0m').replaceAll(
|
137
|
+
text += `${' '.repeat(69 - text.length)}┃ ${total.toFixed(2)}ms`;
|
138
|
+
text += `${' '.repeat(69 + perTime - text.length)}${((total / _total) * 100).toFixed(0)}%`;
|
139
|
+
text += `${' '.repeat(69 + 5 + perTime - text.length)}┃ ${min.toFixed(2)}ms`;
|
140
|
+
text += `${' '.repeat(69 + 5 + (perTime * 2) - text.length)}┃ ${avg.toFixed(2)}ms`;
|
141
|
+
text += `${' '.repeat(69 + 5 + (perTime * 3) - text.length)}┃ ${max.toFixed(2)}ms`;
|
142
|
+
text += `${' '.repeat(69 + 5 + (perTime * 4) - text.length)}┃ ${count}`;
|
143
|
+
process.stdout.write(`\x1b[${termHeight - btHeight + 2 + i};1H\x1b[0m${text.replaceAll('┃', '\x1b[90m┃\x1b[0m').replaceAll(/(\.[0-9][0-9])ms/g, '\x1b[2m$1ms\x1b[22m').replaceAll('%', '\x1b[2m%\x1b[22m')}${' '.repeat(termWidth - noAnsi(text).length)}`);
|
144
144
|
}
|
145
145
|
}
|
146
146
|
|