porffor 0.30.6 → 0.30.8
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 +34 -1
- package/compiler/builtins/object.ts +33 -6
- package/compiler/builtins/porffor.d.ts +1 -0
- package/compiler/builtins/reflect.ts +17 -0
- package/compiler/builtins.js +60 -0
- package/compiler/builtins_precompiled.js +36 -6
- package/compiler/codegen.js +96 -13
- package/package.json +1 -1
- package/runner/index.js +1 -1
@@ -391,7 +391,31 @@ local.set ${err}`;
|
|
391
391
|
0, 12);
|
392
392
|
};
|
393
393
|
|
394
|
-
export const __Porffor_object_delete = (obj:
|
394
|
+
export const __Porffor_object_delete = (obj: any, key: any): boolean => {
|
395
|
+
if (Porffor.wasm`local.get ${obj}` == 0) throw new TypeError('Cannot delete property of null');
|
396
|
+
|
397
|
+
if (Porffor.wasm`local.get ${obj+1}` == Porffor.TYPES.function) {
|
398
|
+
let tmp: bytestring = '';
|
399
|
+
tmp = 'name';
|
400
|
+
if (key == tmp) {
|
401
|
+
__Porffor_funcLut_deleteName(obj);
|
402
|
+
return true;
|
403
|
+
}
|
404
|
+
|
405
|
+
tmp = 'length';
|
406
|
+
if (key == tmp) {
|
407
|
+
__Porffor_funcLut_deleteLength(obj);
|
408
|
+
return true;
|
409
|
+
}
|
410
|
+
|
411
|
+
return true;
|
412
|
+
}
|
413
|
+
|
414
|
+
if (Porffor.rawType(obj) != Porffor.TYPES.object) {
|
415
|
+
// todo: support non-pure objects
|
416
|
+
return true;
|
417
|
+
}
|
418
|
+
|
395
419
|
const entryPtr: i32 = __Porffor_object_lookup(obj, key);
|
396
420
|
if (entryPtr == -1) {
|
397
421
|
// not found, stop
|
@@ -452,6 +476,15 @@ export const __Porffor_object_isObject = (arg: any): boolean => {
|
|
452
476
|
);
|
453
477
|
};
|
454
478
|
|
479
|
+
export const __Porffor_object_isObjectOrNull = (arg: any): boolean => {
|
480
|
+
const t: i32 = Porffor.wasm`local.get ${arg+1}`;
|
481
|
+
return Porffor.fastAnd(
|
482
|
+
t > 0x05,
|
483
|
+
t != Porffor.TYPES.string,
|
484
|
+
t != Porffor.TYPES.bytestring,
|
485
|
+
);
|
486
|
+
};
|
487
|
+
|
455
488
|
export const __Porffor_object_isObjectOrSymbol = (arg: any): boolean => {
|
456
489
|
const t: i32 = Porffor.wasm`local.get ${arg+1}`;
|
457
490
|
return Porffor.fastAnd(
|
@@ -174,10 +174,10 @@ export const __Object_prototype_hasOwnProperty = (_this: any, prop: any) => {
|
|
174
174
|
let tmp: bytestring = '';
|
175
175
|
|
176
176
|
tmp = 'name';
|
177
|
-
if (p == tmp) return
|
177
|
+
if (p == tmp) return !__Porffor_funcLut_isNameDeleted(_this);
|
178
178
|
|
179
179
|
tmp = 'length';
|
180
|
-
if (p == tmp) return
|
180
|
+
if (p == tmp) return !__Porffor_funcLut_isLengthDeleted(_this);
|
181
181
|
|
182
182
|
return false;
|
183
183
|
}
|
@@ -603,13 +603,12 @@ export const __Object_defineProperties = (target: any, props: any) => {
|
|
603
603
|
};
|
604
604
|
|
605
605
|
export const __Object_create = (proto: any, props: any) => {
|
606
|
-
if (!Porffor.object.
|
607
|
-
if (proto !== null) throw new TypeError('Prototype should be an object or null');
|
608
|
-
}
|
606
|
+
if (!Porffor.object.isObjectOrNull(proto)) throw new TypeError('Prototype should be an object or null');
|
609
607
|
|
610
608
|
const out: object = {};
|
611
609
|
|
612
|
-
//
|
610
|
+
// set prototype
|
611
|
+
out.__proto__ = proto;
|
613
612
|
|
614
613
|
if (props !== undefined) __Object_defineProperties(out, props);
|
615
614
|
|
@@ -635,6 +634,34 @@ export const __Object_groupBy = (items: any, callbackFn: any) => {
|
|
635
634
|
};
|
636
635
|
|
637
636
|
|
637
|
+
export const __Object_getPrototypeOf = (obj: any) => {
|
638
|
+
if (obj == null) throw new TypeError('Object is nullish, expected object');
|
639
|
+
|
640
|
+
// todo: support non-pure-objects
|
641
|
+
if (Porffor.rawType(obj) != Porffor.TYPES.object) {
|
642
|
+
return {};
|
643
|
+
}
|
644
|
+
|
645
|
+
return obj.__proto__;
|
646
|
+
};
|
647
|
+
|
648
|
+
export const __Object_setPrototypeOf = (obj: any, proto: any) => {
|
649
|
+
if (obj == null) throw new TypeError('Object is nullish, expected object');
|
650
|
+
if (!Porffor.object.isObjectOrNull(proto)) throw new TypeError('Prototype should be an object or null');
|
651
|
+
|
652
|
+
// todo: support non-pure-objects
|
653
|
+
if (Porffor.rawType(obj) != Porffor.TYPES.object) {
|
654
|
+
return obj;
|
655
|
+
}
|
656
|
+
|
657
|
+
// todo: throw when this fails?
|
658
|
+
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/setPrototypeOf#exceptions
|
659
|
+
obj.__proto__ = proto;
|
660
|
+
|
661
|
+
return obj;
|
662
|
+
};
|
663
|
+
|
664
|
+
|
638
665
|
export const __Object_prototype_toString = (_this: any) => {
|
639
666
|
let out: bytestring = Porffor.allocate();
|
640
667
|
|
@@ -66,6 +66,23 @@ export const __Reflect_preventExtensions = (target: any) => {
|
|
66
66
|
}
|
67
67
|
};
|
68
68
|
|
69
|
+
export const __Reflect_getPrototypeOf = (target: any) => {
|
70
|
+
if (!Porffor.object.isObject(target)) throw new TypeError('Target is a non-object');
|
71
|
+
|
72
|
+
return Object.getPrototypeOf(target);
|
73
|
+
};
|
74
|
+
|
75
|
+
export const __Reflect_setPrototypeOf = (target: any, proto: any) => {
|
76
|
+
if (!Porffor.object.isObject(target)) throw new TypeError('Target is a non-object');
|
77
|
+
|
78
|
+
try {
|
79
|
+
Object.setPrototypeOf(target, proto);
|
80
|
+
return true;
|
81
|
+
} catch {
|
82
|
+
return false;
|
83
|
+
}
|
84
|
+
};
|
85
|
+
|
69
86
|
export const __Reflect_ownKeys = (target: any) => {
|
70
87
|
if (!Porffor.object.isObject(target)) throw new TypeError('Target is a non-object');
|
71
88
|
|
package/compiler/builtins.js
CHANGED
@@ -1090,5 +1090,65 @@ export const BuiltinFuncs = function() {
|
|
1090
1090
|
table: true
|
1091
1091
|
};
|
1092
1092
|
|
1093
|
+
this.__Porffor_funcLut_deleteLength = {
|
1094
|
+
params: [ Valtype.i32 ],
|
1095
|
+
returns: [],
|
1096
|
+
wasm: (scope, { allocPage }) => [
|
1097
|
+
[ Opcodes.local_get, 0 ],
|
1098
|
+
...number(128, Valtype.i32),
|
1099
|
+
[ Opcodes.i32_mul ],
|
1100
|
+
...number(2, Valtype.i32),
|
1101
|
+
[ Opcodes.i32_add ],
|
1102
|
+
...number(0, Valtype.i32),
|
1103
|
+
[ Opcodes.i32_store16, 0, ...unsignedLEB128(allocPage(scope, 'func lut') * pageSize) ],
|
1104
|
+
|
1105
|
+
[ Opcodes.local_get, 0 ],
|
1106
|
+
...number(1, Valtype.i32),
|
1107
|
+
[ Opcodes.i32_store8, 0, ...unsignedLEB128(allocPage(scope, 'func length deletion table') * pageSize) ]
|
1108
|
+
],
|
1109
|
+
table: true
|
1110
|
+
};
|
1111
|
+
|
1112
|
+
this.__Porffor_funcLut_deleteName = {
|
1113
|
+
params: [ Valtype.i32 ],
|
1114
|
+
returns: [],
|
1115
|
+
wasm: (scope, { allocPage }) => [
|
1116
|
+
[ Opcodes.local_get, 0 ],
|
1117
|
+
...number(128, Valtype.i32),
|
1118
|
+
[ Opcodes.i32_mul ],
|
1119
|
+
...number(5, Valtype.i32),
|
1120
|
+
[ Opcodes.i32_add ],
|
1121
|
+
...number(0, Valtype.i32),
|
1122
|
+
[ Opcodes.i32_store, 0, ...unsignedLEB128(allocPage(scope, 'func lut') * pageSize) ],
|
1123
|
+
|
1124
|
+
[ Opcodes.local_get, 0 ],
|
1125
|
+
...number(1, Valtype.i32),
|
1126
|
+
[ Opcodes.i32_store8, 0, ...unsignedLEB128(allocPage(scope, 'func name deletion table') * pageSize) ],
|
1127
|
+
],
|
1128
|
+
table: true
|
1129
|
+
};
|
1130
|
+
|
1131
|
+
this.__Porffor_funcLut_isLengthDeleted = {
|
1132
|
+
params: [ Valtype.i32 ],
|
1133
|
+
returns: [ Valtype.i32 ],
|
1134
|
+
returnType: TYPES.boolean,
|
1135
|
+
wasm: (scope, { allocPage }) => [
|
1136
|
+
[ Opcodes.local_get, 0 ],
|
1137
|
+
[ Opcodes.i32_load8_u, 0, ...unsignedLEB128(allocPage(scope, 'func length deletion table') * pageSize) ]
|
1138
|
+
],
|
1139
|
+
table: true
|
1140
|
+
};
|
1141
|
+
|
1142
|
+
this.__Porffor_funcLut_isNameDeleted = {
|
1143
|
+
params: [ Valtype.i32 ],
|
1144
|
+
returns: [ Valtype.i32 ],
|
1145
|
+
returnType: TYPES.boolean,
|
1146
|
+
wasm: (scope, { allocPage }) => [
|
1147
|
+
[ Opcodes.local_get, 0 ],
|
1148
|
+
[ Opcodes.i32_load8_u, 0, ...unsignedLEB128(allocPage(scope, 'func name deletion table') * pageSize) ]
|
1149
|
+
],
|
1150
|
+
table: true
|
1151
|
+
};
|
1152
|
+
|
1093
1153
|
PrecompiledBuiltins.BuiltinFuncs.call(this);
|
1094
1154
|
};
|
@@ -75,10 +75,10 @@ export const BuiltinFuncs = function() {
|
|
75
75
|
locals: [127,127,127,127,127,127,127,127], localNames: ["obj","obj#type","key","key#type","value","value#type","flags","flags#type","entryPtr","#last_type","#logicinner_tmp","#typeswitch_tmp1","size","tail","err","logictmp"],
|
76
76
|
};
|
77
77
|
this.__Porffor_object_delete = {
|
78
|
-
wasm: (scope, {builtin}) => [[32,0],[65,7],[32,2],[32,3],[16, builtin('
|
78
|
+
wasm: (scope, {allocPage,builtin,internalThrow}) => [[32,0],[69],[4,64],...internalThrow(scope, 'TypeError', `Cannot delete property of null`),[11],[32,1],[65,6],[70],[4,64],...number(allocPage(scope, 'bytestring: __Porffor_object_delete/tmp', 'i8') * pageSize, 127),[34,4],[34,5],[65,4],[54,1,0],[32,5],[65,238,0],[58,0,4],[32,5],[65,225,0],[58,0,5],[32,5],[65,237,0],[58,0,6],[32,5],[65,229,0],[58,0,7],[32,5],[33,4],[32,2],[32,4],[33,8],[34,6],[32,8],[71],[4,127],[32,6],[40,0,0],[34,7],[32,8],[40,0,0],[32,3],[65,195,1],[70],[4,64],[32,6],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,6],[11],[65,195,1],[65,195,1],[70],[4,64],[32,8],[32,8],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,9],[32,7],[65,2],[108],[33,10],[3,64],[32,9],[32,6],[106],[47,0,4],[32,9],[32,8],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,9],[65,2],[106],[34,9],[32,10],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,0],[16, builtin('__Porffor_funcLut_deleteName')],[65,1],[65,2],[15],[11],[32,4],[34,5],[65,6],[54,1,0],[32,5],[65,236,0],[58,0,4],[32,5],[65,229,0],[58,0,5],[32,5],[65,238,0],[58,0,6],[32,5],[65,231,0],[58,0,7],[32,5],[65,244,0],[58,0,8],[32,5],[65,232,0],[58,0,9],[32,5],[33,4],[32,2],[32,4],[33,8],[34,6],[32,8],[71],[4,127],[32,6],[40,0,0],[34,7],[32,8],[40,0,0],[32,3],[65,195,1],[70],[4,64],[32,6],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,6],[11],[65,195,1],[65,195,1],[70],[4,64],[32,8],[32,8],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,9],[32,7],[65,2],[108],[33,10],[3,64],[32,9],[32,6],[106],[47,0,4],[32,9],[32,8],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,9],[65,2],[106],[34,9],[32,10],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,0],[16, builtin('__Porffor_funcLut_deleteLength')],[65,1],[65,2],[15],[11],[65,1],[65,2],[15],[11],[32,1],[65,7],[71],[4,64],[65,1],[65,2],[15],[11],[32,0],[32,1],[32,2],[32,3],[16, builtin('__Porffor_object_lookup')],[26],[34,11],[65,127],[70],[4,64],[65,1],[65,2],[15],[11],[32,11],[47,0,12],[34,13],[65,2],[113],[69],[4,64],[65,0],[65,2],[15],[11],[32,11],[32,0],[107],[65,14],[109],[33,14],[32,0],[40,0,0],[33,15],[32,0],[32,15],[65,1],[107],[34,15],[54,0,0],[32,15],[32,14],[74],[4,64],[32,11],[32,11],[65,14],[106],[32,15],[32,14],[107],[65,14],[108],[252,10,0,0],[11],[65,1],[65,2],[15]],
|
79
79
|
params: [127,127,127,127], typedParams: 1,
|
80
80
|
returns: [127,127], typedReturns: 1,
|
81
|
-
locals: [127,127,127,127,127], localNames: ["obj","obj#type","key","key#type","entryPtr","#last_type","tail","ind","size"],
|
81
|
+
locals: [127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["obj","obj#type","key","key#type","tmp","#makearray_pointer_tmp","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end","entryPtr","#last_type","tail","ind","size"],
|
82
82
|
};
|
83
83
|
this.__Porffor_object_isEnumerable = {
|
84
84
|
wasm: (scope, {}) => [[32,0],[45,0,12],[65,4],[113],[34,2],[65,2],[15]],
|
@@ -92,6 +92,12 @@ export const BuiltinFuncs = function() {
|
|
92
92
|
returns: [127,127], typedReturns: 1,
|
93
93
|
locals: [127], localNames: ["arg","arg#type","t"],
|
94
94
|
};
|
95
|
+
this.__Porffor_object_isObjectOrNull = {
|
96
|
+
wasm: (scope, {}) => [[32,1],[34,2],[65,5],[74],[32,2],[65,195,0],[71],[113],[32,2],[65,195,1],[71],[113],[65,2],[15]],
|
97
|
+
params: [127,127], typedParams: 1,
|
98
|
+
returns: [127,127], typedReturns: 1,
|
99
|
+
locals: [127], localNames: ["arg","arg#type","t"],
|
100
|
+
};
|
95
101
|
this.__Porffor_object_isObjectOrSymbol = {
|
96
102
|
wasm: (scope, {}) => [[32,1],[33,2],[32,0],[65,0],[71],[32,2],[65,4],[74],[113],[32,2],[65,195,0],[71],[113],[32,2],[65,195,1],[71],[113],[65,2],[15]],
|
97
103
|
params: [127,127], typedParams: 1,
|
@@ -1780,7 +1786,7 @@ export const BuiltinFuncs = function() {
|
|
1780
1786
|
locals: [124,127,127,127,124,127,124,127,127,124,127,124,127,124,124,124,127,127,127,127], localNames: ["iterable","iterable#type","out","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_tmp0","#forof_tmp0#type","x","x#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#member_prop","#loadArray_offset","#member_allocd","#swap","#forof_allocd"],
|
1781
1787
|
};
|
1782
1788
|
this.__Object_prototype_hasOwnProperty = {
|
1783
|
-
wasm: (scope, {allocPage,builtin}) => [[32,2],[32,3],[16, builtin('__ecma262_ToPropertyKey')],[33,5],[33,4],[32,1],[184],[34,7],[68,0,0,0,0,0,0,28,64],[97],[4,64],[32,0],[252,2],[32,1],[32,4],[252,2],[32,5],[16, builtin('__Porffor_object_lookup')],[33,6],[183],[68,0,0,0,0,0,0,240,191],[98],[184],[65,2],[15],[11],[32,7],[68,0,0,0,0,0,0,24,64],[97],[4,64],...number(allocPage(scope, 'bytestring: __Object_prototype_hasOwnProperty/tmp', 'i8') * pageSize, 124),[34,8],[252,3],[34,9],[65,4],[54,1,0],[32,9],[65,238,0],[58,0,4],[32,9],[65,225,0],[58,0,5],[32,9],[65,237,0],[58,0,6],[32,9],[65,229,0],[58,0,7],[32,9],[184],[33,8],[32,4],[32,8],[252,3],[33,12],[252,3],[34,10],[32,12],[71],[4,127],[32,10],[40,0,0],[34,11],[32,12],[40,0,0],[32,5],[65,195,1],[70],[4,64],[32,10],[32,11],[16, builtin('__Porffor_bytestringToString')],[33,10],[11],[65,195,1],[65,195,1],[70],[4,64],[32,12],[32,12],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,12],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,13],[32,11],[65,2],[108],[33,14],[3,64],[32,13],[32,10],[106],[47,0,4],[32,13],[32,12],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,13],[65,2],[106],[34,13],[32,14],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[68,0,0,0,0,0,0,
|
1789
|
+
wasm: (scope, {allocPage,builtin}) => [[32,2],[32,3],[16, builtin('__ecma262_ToPropertyKey')],[33,5],[33,4],[32,1],[184],[34,7],[68,0,0,0,0,0,0,28,64],[97],[4,64],[32,0],[252,2],[32,1],[32,4],[252,2],[32,5],[16, builtin('__Porffor_object_lookup')],[33,6],[183],[68,0,0,0,0,0,0,240,191],[98],[184],[65,2],[15],[11],[32,7],[68,0,0,0,0,0,0,24,64],[97],[4,64],...number(allocPage(scope, 'bytestring: __Object_prototype_hasOwnProperty/tmp', 'i8') * pageSize, 124),[34,8],[252,3],[34,9],[65,4],[54,1,0],[32,9],[65,238,0],[58,0,4],[32,9],[65,225,0],[58,0,5],[32,9],[65,237,0],[58,0,6],[32,9],[65,229,0],[58,0,7],[32,9],[184],[33,8],[32,4],[32,8],[252,3],[33,12],[252,3],[34,10],[32,12],[71],[4,127],[32,10],[40,0,0],[34,11],[32,12],[40,0,0],[32,5],[65,195,1],[70],[4,64],[32,10],[32,11],[16, builtin('__Porffor_bytestringToString')],[33,10],[11],[65,195,1],[65,195,1],[70],[4,64],[32,12],[32,12],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,12],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,13],[32,11],[65,2],[108],[33,14],[3,64],[32,13],[32,10],[106],[47,0,4],[32,13],[32,12],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,13],[65,2],[106],[34,13],[32,14],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,0],[252,2],[16, builtin('__Porffor_funcLut_isNameDeleted')],[183],[68,0,0,0,0,0,0,0,0],[97],[184],[65,2],[15],[11],[32,8],[252,3],[34,9],[65,6],[54,1,0],[32,9],[65,236,0],[58,0,4],[32,9],[65,229,0],[58,0,5],[32,9],[65,238,0],[58,0,6],[32,9],[65,231,0],[58,0,7],[32,9],[65,244,0],[58,0,8],[32,9],[65,232,0],[58,0,9],[32,9],[184],[33,8],[32,4],[32,8],[252,3],[33,12],[252,3],[34,10],[32,12],[71],[4,127],[32,10],[40,0,0],[34,11],[32,12],[40,0,0],[32,5],[65,195,1],[70],[4,64],[32,10],[32,11],[16, builtin('__Porffor_bytestringToString')],[33,10],[11],[65,195,1],[65,195,1],[70],[4,64],[32,12],[32,12],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,12],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,13],[32,11],[65,2],[108],[33,14],[3,64],[32,13],[32,10],[106],[47,0,4],[32,13],[32,12],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,13],[65,2],[106],[34,13],[32,14],[72],[13,0],[11],[65,1],[5],[65,1],[11],[4,64],[32,0],[252,2],[16, builtin('__Porffor_funcLut_isLengthDeleted')],[183],[68,0,0,0,0,0,0,0,0],[97],[184],[65,2],[15],[11],[68,0,0,0,0,0,0,0,0],[65,2],[15],[11],[32,0],[32,1],[16, builtin('__Object_keys')],[26],[34,15],[65,208,0],[32,4],[32,5],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('__Array_prototype_includes')],[34,6],[15]],
|
1784
1790
|
params: [124,127,124,127], typedParams: 1,
|
1785
1791
|
returns: [124,127], typedReturns: 1,
|
1786
1792
|
locals: [124,127,127,124,124,127,127,127,127,127,127,124], localNames: ["_this","_this#type","prop","prop#type","p","p#type","#last_type","t","tmp","#makearray_pointer_tmp","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end","keys"],
|
@@ -1883,18 +1889,30 @@ export const BuiltinFuncs = function() {
|
|
1883
1889
|
locals: [127,124,127,127,127,127,127,127,124,127,124,124,127,127,127], localNames: ["target","target#type","props","props#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","#forin_base_pointer0","#forin_length0","#forin_counter0","#forin_tmp0","#forin_tmp0#type","x","x#type","#member_obj","#member_prop","#loadArray_offset","#member_allocd","#swap"],
|
1884
1890
|
};
|
1885
1891
|
this.__Object_create = {
|
1886
|
-
wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,2],[32,1],[16, builtin('
|
1892
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,2],[32,1],[16, builtin('__Porffor_object_isObjectOrNull')],[33,4],[183],[33,5],[32,4],[33,6],[2,124],[32,6],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,5],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,6],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,5],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,5],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Prototype should be an object or null`),[11],[16, builtin('__Porffor_allocate')],[184],[34,7],[33,10],[16, builtin('__Porffor_allocate')],[34,12],[65,9],[54,1,0],[32,12],[65,223,0],[58,0,4],[32,12],[65,223,0],[58,0,5],[32,12],[65,240,0],[58,0,6],[32,12],[65,242,0],[58,0,7],[32,12],[65,239,0],[58,0,8],[32,12],[65,244,0],[58,0,9],[32,12],[65,239,0],[58,0,10],[32,12],[65,223,0],[58,0,11],[32,12],[65,223,0],[58,0,12],[32,12],[184],[33,11],[32,10],[252,3],[65,7],[32,11],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,13],[252,3],[32,13],[32,0],[32,1],[16, builtin('__Porffor_object_set')],[26],[26],[32,2],[68,0,0,0,0,0,0,0,0],[98],[32,3],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[4,64],[32,7],[65,7],[32,2],[32,3],[16, builtin('__Object_defineProperties')],[33,4],[26],[11],[32,7],[65,7],[15]],
|
1887
1893
|
params: [124,127,124,127], typedParams: 1,
|
1888
1894
|
returns: [124,127], typedReturns: 1,
|
1889
|
-
locals: [127,124,127,124], localNames: ["proto","proto#type","props","props#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","out"],
|
1895
|
+
locals: [127,124,127,124,124,127,124,124,127,127], localNames: ["proto","proto#type","props","props#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","out","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","#swap"],
|
1890
1896
|
};
|
1891
1897
|
this.__Object_groupBy = {
|
1892
|
-
wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[184],[33,4],[68,0,0,0,0,0,0,0,0],[33,5],[65,1],[33,6],[32,0],[252,3],[33,7],[65,0],[33,9],[32,1],[65,208,0],[70],[32,1],[65,19],[70],[114],[32,1],[65,195,0],[70],[114],[32,1],[65,195,1],[70],[114],[32,1],[65,216,0],[78],[32,1],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11],[32,7],[40,1,0],[34,8],[4,64],[32,1],[33,30],[2,64],[32,30],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,7],[43,0,4],[33,10],[32,7],[45,0,12],[33,11],[32,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,12,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,12,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,12],[57,0,4],[65,128,128,16],[32,13],[58,0,12],[68,0,0,0,0,0,0,16,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,7],[65,9],[106],[33,7],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,195,0],[33,11],[16, builtin('__Porffor_allocate')],[34,43],[65,1],[54,0,0],[3,64],[32,43],[32,7],[47,0,4],[59,0,4],[32,43],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,12,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,12,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,12],[57,0,4],[65,128,128,16],[32,13],[58,0,12],[68,0,0,0,0,0,0,16,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,7],[65,2],[106],[33,7],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,7],[43,0,4],[33,10],[32,7],[45,0,12],[33,11],[32,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,12,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,12,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,12],[57,0,4],[65,128,128,16],[32,13],[58,0,12],[68,0,0,0,0,0,0,16,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,7],[65,9],[106],[33,7],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[106],[45,0,4],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,12,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,12,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,12],[57,0,4],[65,128,128,16],[32,13],[58,0,12],[68,0,0,0,0,0,0,16,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[106],[44,0,4],[183],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,12,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,12,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,12],[57,0,4],[65,128,128,16],[32,13],[58,0,12],[68,0,0,0,0,0,0,16,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[106],[45,0,4],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,12,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,12,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,12],[57,0,4],[65,128,128,16],[32,13],[58,0,12],[68,0,0,0,0,0,0,16,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,2],[108],[106],[47,0,4],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,12,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,12,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,12],[57,0,4],[65,128,128,16],[32,13],[58,0,12],[68,0,0,0,0,0,0,16,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,2],[108],[106],[46,0,4],[183],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,12,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,12,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,12],[57,0,4],[65,128,128,16],[32,13],[58,0,12],[68,0,0,0,0,0,0,16,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,4],[108],[106],[40,0,4],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,12,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,12,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,12],[57,0,4],[65,128,128,16],[32,13],[58,0,12],[68,0,0,0,0,0,0,16,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,4],[108],[106],[40,0,4],[183],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,12,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,12,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,12],[57,0,4],[65,128,128,16],[32,13],[58,0,12],[68,0,0,0,0,0,0,16,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,4],[108],[106],[42,0,4],[187],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,12,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,12,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,12],[57,0,4],[65,128,128,16],[32,13],[58,0,12],[68,0,0,0,0,0,0,16,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,8],[108],[106],[43,0,4],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,12,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,12,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,12],[57,0,4],[65,128,128,16],[32,13],[58,0,12],[68,0,0,0,0,0,0,16,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,195,1],[33,11],[16, builtin('__Porffor_allocate')],[34,43],[65,1],[54,0,0],[3,64],[32,43],[32,7],[32,9],[106],[45,0,4],[58,0,4],[32,43],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,12,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,12,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,12],[57,0,4],[65,128,128,16],[32,13],[58,0,12],[68,0,0,0,0,0,0,16,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[11],[32,4],[65,7],[15]],
|
1898
|
+
wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[184],[33,4],[68,0,0,0,0,0,0,0,0],[33,5],[65,1],[33,6],[32,0],[252,3],[33,7],[65,0],[33,9],[32,1],[65,208,0],[70],[32,1],[65,19],[70],[114],[32,1],[65,195,0],[70],[114],[32,1],[65,195,1],[70],[114],[32,1],[65,216,0],[78],[32,1],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11],[32,7],[40,1,0],[34,8],[4,64],[32,1],[33,30],[2,64],[32,30],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,7],[43,0,4],[33,10],[32,7],[45,0,12],[33,11],[32,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,16,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,16,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,12],[57,0,4],[65,128,128,20],[32,13],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,7],[65,9],[106],[33,7],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,195,0],[33,11],[16, builtin('__Porffor_allocate')],[34,43],[65,1],[54,0,0],[3,64],[32,43],[32,7],[47,0,4],[59,0,4],[32,43],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,16,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,16,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,12],[57,0,4],[65,128,128,20],[32,13],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,7],[65,2],[106],[33,7],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,7],[43,0,4],[33,10],[32,7],[45,0,12],[33,11],[32,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,16,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,16,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,12],[57,0,4],[65,128,128,20],[32,13],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,7],[65,9],[106],[33,7],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[106],[45,0,4],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,16,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,16,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,12],[57,0,4],[65,128,128,20],[32,13],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[106],[44,0,4],[183],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,16,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,16,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,12],[57,0,4],[65,128,128,20],[32,13],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[106],[45,0,4],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,16,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,16,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,12],[57,0,4],[65,128,128,20],[32,13],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,2],[108],[106],[47,0,4],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,16,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,16,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,12],[57,0,4],[65,128,128,20],[32,13],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,2],[108],[106],[46,0,4],[183],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,16,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,16,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,12],[57,0,4],[65,128,128,20],[32,13],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,4],[108],[106],[40,0,4],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,16,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,16,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,12],[57,0,4],[65,128,128,20],[32,13],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,4],[108],[106],[40,0,4],[183],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,16,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,16,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,12],[57,0,4],[65,128,128,20],[32,13],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,4],[108],[106],[42,0,4],[187],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,16,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,16,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,12],[57,0,4],[65,128,128,20],[32,13],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,1],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,8],[108],[106],[43,0,4],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,16,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,16,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,12],[57,0,4],[65,128,128,20],[32,13],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,195,1],[33,11],[16, builtin('__Porffor_allocate')],[34,43],[65,1],[54,0,0],[3,64],[32,43],[32,7],[32,9],[106],[45,0,4],[58,0,4],[32,43],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,2],[33,29],[32,3],[33,30],[2,124],[32,30],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,12],[32,13],[33,16],[33,17],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,29],[252,3],[34,26],[65,128,1],[108],[65,4],[106],[45,0,128,128,16,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `callbackFn is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,16,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,28],[5],[32,26],[17,0,0],[33,28],[11],[11],[12,5],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,26],[17,3,0],[33,28],[5],[32,17],[32,16],[32,26],[17,1,0],[33,28],[11],[11],[12,4],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,26],[17,4,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,26],[17,2,0],[33,28],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,5,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,26],[17,3,0],[33,28],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,6,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,28],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,7,0],[33,28],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,28],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `callbackFn is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,14],[32,28],[33,15],[32,4],[65,7],[32,14],[32,15],[16, builtin('__Object_hasOwn')],[33,28],[33,31],[32,28],[33,30],[2,124],[32,30],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,30],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,31],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,31],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, builtin('__Porffor_allocate')],[183],[33,32],[32,4],[33,35],[32,14],[33,36],[32,35],[252,3],[65,7],[32,36],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[32,32],[65,208,0],[16, builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,35],[32,14],[33,38],[32,35],[252,3],[65,7],[32,38],[32,15],[16, builtin('__ecma262_ToPropertyKey')],[33,37],[252,3],[32,37],[16, builtin('__Porffor_object_get')],[33,28],[33,41],[32,28],[33,42],[32,28],[33,30],[2,124],[32,30],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,41],[32,42],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,12],[57,0,4],[65,128,128,20],[32,13],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, builtin('__Array_prototype_push')],[33,28],[12,1],[11],...internalThrow(scope, 'TypeError', `'push' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[11],[32,4],[65,7],[15]],
|
1893
1899
|
params: [124,127,124,127], typedParams: 1,
|
1894
1900
|
returns: [124,127], typedReturns: 1,
|
1895
1901
|
locals: [124,124,127,127,127,127,124,127,124,127,124,127,127,124,127,124,127,124,127,124,127,124,127,127,127,124,127,124,124,124,127,124,124,127,124,127,127,124,127,127], localNames: ["items","items#type","callbackFn","callbackFn#type","out","i","i#type","#forof_base_pointer1","#forof_length1","#forof_counter1","#forof_tmp1","#forof_tmp1#type","x","x#type","k","k#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp1","#logicinner_tmp","arr","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#swap","#member_prop","#loadArray_offset","#member_allocd","#proto_target","#proto_target#type","#forof_allocd"],
|
1896
1902
|
table: 1,
|
1897
1903
|
};
|
1904
|
+
this.__Object_getPrototypeOf = {
|
1905
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,2],[32,1],[33,3],[2,127],[32,3],[65,0],[70],[4,64,"TYPESWITCH|empty"],[65,1],[12,1],[11],[32,3],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,2],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,3],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,64],...internalThrow(scope, 'TypeError', `Object is nullish, expected object`),[11],[32,1],[184],[68,0,0,0,0,0,0,28,64],[98],[4,64],[16, builtin('__Porffor_allocate')],[184],[65,7],[15],[11],[32,0],[33,4],[65,128,128,24],[34,10],[65,9],[54,1,0],[32,10],[65,223,0],[58,0,4],[32,10],[65,223,0],[58,0,5],[32,10],[65,240,0],[58,0,6],[32,10],[65,242,0],[58,0,7],[32,10],[65,239,0],[58,0,8],[32,10],[65,244,0],[58,0,9],[32,10],[65,239,0],[58,0,10],[32,10],[65,223,0],[58,0,11],[32,10],[65,223,0],[58,0,12],[32,10],[184],[33,5],[32,1],[33,3],[2,124],[32,3],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,4],[252,3],[32,1],[32,5],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,9],[252,3],[32,9],[16, builtin('__Porffor_object_get')],[33,7],[12,1],[11],[32,3],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,4],[252,3],[32,1],[32,5],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,9],[252,3],[32,9],[16, builtin('__Porffor_object_get')],[33,7],[12,1],[11],[32,3],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[16, builtin('__Porffor_allocate')],[34,8],[65,1],[54,0,0],[32,8],[32,5],[252,3],[65,2],[108],[32,4],[252,3],[106],[47,0,4],[59,0,4],[32,8],[184],[65,195,0],[33,7],[12,1],[11],[32,3],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,5],[252,3],[65,9],[108],[32,4],[252,3],[106],[34,6],[43,0,4],[32,6],[45,0,12],[33,7],[12,1],[11],[32,3],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,4],[252,3],[40,0,4],[32,5],[252,3],[106],[45,0,4],[184],[65,1],[33,7],[12,1],[11],[32,3],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,4],[252,3],[40,0,4],[32,5],[252,3],[106],[44,0,4],[183],[65,1],[33,7],[12,1],[11],[32,3],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,4],[252,3],[40,0,4],[32,5],[252,3],[106],[45,0,4],[184],[65,1],[33,7],[12,1],[11],[32,3],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,4],[252,3],[40,0,4],[32,5],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,7],[12,1],[11],[32,3],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,4],[252,3],[40,0,4],[32,5],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,7],[12,1],[11],[32,3],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,4],[252,3],[40,0,4],[32,5],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,7],[12,1],[11],[32,3],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,4],[252,3],[40,0,4],[32,5],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,7],[12,1],[11],[32,3],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,4],[252,3],[40,0,4],[32,5],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,7],[12,1],[11],[32,3],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,4],[252,3],[40,0,4],[32,5],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,7],[12,1],[11],[32,3],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot read property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,3],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[16, builtin('__Porffor_allocate')],[34,8],[65,1],[54,0,0],[32,8],[32,5],[252,3],[32,4],[252,3],[106],[45,0,4],[58,0,4],[32,8],[184],[65,195,1],[33,7],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,7],[11,"TYPESWITCH_end"],[32,7],[15]],
|
1906
|
+
params: [124,127], typedParams: 1,
|
1907
|
+
returns: [124,127], typedReturns: 1,
|
1908
|
+
locals: [124,127,124,124,127,127,127,127,127], localNames: ["obj","obj#type","#logicinner_tmp","#typeswitch_tmp1","#member_obj","#member_prop","#loadArray_offset","#last_type","#member_allocd","#swap","#makearray_pointer_tmp"],
|
1909
|
+
};
|
1910
|
+
this.__Object_setPrototypeOf = {
|
1911
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,4],[32,1],[33,5],[2,127],[32,5],[65,0],[70],[4,64,"TYPESWITCH|empty"],[65,1],[12,1],[11],[32,5],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,4],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,5],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,64],...internalThrow(scope, 'TypeError', `Object is nullish, expected object`),[11],[32,2],[252,2],[32,3],[16, builtin('__Porffor_object_isObjectOrNull')],[33,6],[183],[33,4],[32,6],[33,5],[2,124],[32,5],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,4],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,5],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,4],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,4],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Prototype should be an object or null`),[11],[32,1],[184],[68,0,0,0,0,0,0,28,64],[98],[4,64],[32,0],[32,1],[15],[11],[32,0],[33,9],[16, builtin('__Porffor_allocate')],[34,11],[65,9],[54,1,0],[32,11],[65,223,0],[58,0,4],[32,11],[65,223,0],[58,0,5],[32,11],[65,240,0],[58,0,6],[32,11],[65,242,0],[58,0,7],[32,11],[65,239,0],[58,0,8],[32,11],[65,244,0],[58,0,9],[32,11],[65,239,0],[58,0,10],[32,11],[65,223,0],[58,0,11],[32,11],[65,223,0],[58,0,12],[32,11],[184],[33,10],[32,1],[33,5],[2,124],[32,5],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,9],[252,3],[32,1],[32,10],[65,195,1],[16, builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[32,2],[32,3],[16, builtin('__Porffor_object_set')],[26],[12,1],[11],[32,5],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,9],[252,3],[32,10],[252,3],[65,9],[108],[106],[34,8],[32,2],[34,7],[57,0,4],[32,8],[32,3],[58,0,12],[32,7],[12,1],[11],[32,5],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[32,2],[34,7],[252,3],[58,0,4],[32,7],[12,1],[11],[32,5],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[32,2],[34,7],[252,2],[58,0,4],[32,7],[12,1],[11],[32,5],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[32,2],[34,7],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,7],[12,1],[11],[32,5],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[32,2],[34,7],[252,3],[59,0,4],[32,7],[12,1],[11],[32,5],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[32,2],[34,7],[252,2],[59,0,4],[32,7],[12,1],[11],[32,5],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[32,2],[34,7],[252,3],[54,0,4],[32,7],[12,1],[11],[32,5],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[32,2],[34,7],[252,2],[54,0,4],[32,7],[12,1],[11],[32,5],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[32,2],[34,7],[182],[56,0,4],[32,7],[12,1],[11],[32,5],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,8],[108],[106],[32,2],[34,7],[57,0,4],[32,7],[12,1],[11],[32,5],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,2],[11,"TYPESWITCH_end"],[26],[32,0],[32,1],[15]],
|
1912
|
+
params: [124,127,124,127], typedParams: 1,
|
1913
|
+
returns: [124,127], typedReturns: 1,
|
1914
|
+
locals: [124,127,127,124,127,124,124,127,127], localNames: ["obj","obj#type","proto","proto#type","#logicinner_tmp","#typeswitch_tmp1","#last_type","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","#swap"],
|
1915
|
+
};
|
1898
1916
|
this.__Object_prototype_toString = {
|
1899
1917
|
wasm: (scope, {allocPage,builtin}) => [[16, builtin('__Porffor_allocate')],[183],[33,2],[32,0],[68,0,0,0,0,0,0,0,0],[97],[32,1],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...number(allocPage(scope, 'bytestring: __Object_prototype_toString/out', 'i8') * pageSize, 124),[34,2],[65,195,1],[15],[11],[32,0],[68,0,0,0,0,0,0,0,0],[97],[32,1],[65,128,1],[114],[65,7],[65,128,1],[114],[70],[113],[4,64],[32,2],[252,3],[34,3],[65,13],[54,1,0],[32,3],[65,219,0],[58,0,4],[32,3],[65,239,0],[58,0,5],[32,3],[65,226,0],[58,0,6],[32,3],[65,234,0],[58,0,7],[32,3],[65,229,0],[58,0,8],[32,3],[65,227,0],[58,0,9],[32,3],[65,244,0],[58,0,10],[32,3],[65,32],[58,0,11],[32,3],[65,206,0],[58,0,12],[32,3],[65,245,0],[58,0,13],[32,3],[65,236,0],[58,0,14],[32,3],[65,236,0],[58,0,15],[32,3],[65,221,0],[58,0,16],[32,3],[184],[34,2],[65,195,1],[15],[11],[32,1],[184],[34,4],[68,0,0,0,0,0,0,84,64],[97],[4,64],[32,2],[252,3],[34,3],[65,14],[54,1,0],[32,3],[65,219,0],[58,0,4],[32,3],[65,239,0],[58,0,5],[32,3],[65,226,0],[58,0,6],[32,3],[65,234,0],[58,0,7],[32,3],[65,229,0],[58,0,8],[32,3],[65,227,0],[58,0,9],[32,3],[65,244,0],[58,0,10],[32,3],[65,32],[58,0,11],[32,3],[65,193,0],[58,0,12],[32,3],[65,242,0],[58,0,13],[32,3],[65,242,0],[58,0,14],[32,3],[65,225,0],[58,0,15],[32,3],[65,249,0],[58,0,16],[32,3],[65,221,0],[58,0,17],[32,3],[184],[34,2],[65,195,1],[15],[11],[32,4],[68,0,0,0,0,0,0,24,64],[97],[4,64],[32,2],[252,3],[34,3],[65,17],[54,1,0],[32,3],[65,219,0],[58,0,4],[32,3],[65,239,0],[58,0,5],[32,3],[65,226,0],[58,0,6],[32,3],[65,234,0],[58,0,7],[32,3],[65,229,0],[58,0,8],[32,3],[65,227,0],[58,0,9],[32,3],[65,244,0],[58,0,10],[32,3],[65,32],[58,0,11],[32,3],[65,198,0],[58,0,12],[32,3],[65,245,0],[58,0,13],[32,3],[65,238,0],[58,0,14],[32,3],[65,227,0],[58,0,15],[32,3],[65,244,0],[58,0,16],[32,3],[65,233,0],[58,0,17],[32,3],[65,239,0],[58,0,18],[32,3],[65,238,0],[58,0,19],[32,3],[65,221,0],[58,0,20],[32,3],[184],[34,2],[65,195,1],[15],[11],[32,4],[68,0,0,0,0,0,0,0,64],[97],[4,64],[32,2],[252,3],[34,3],[65,16],[54,1,0],[32,3],[65,219,0],[58,0,4],[32,3],[65,239,0],[58,0,5],[32,3],[65,226,0],[58,0,6],[32,3],[65,234,0],[58,0,7],[32,3],[65,229,0],[58,0,8],[32,3],[65,227,0],[58,0,9],[32,3],[65,244,0],[58,0,10],[32,3],[65,32],[58,0,11],[32,3],[65,194,0],[58,0,12],[32,3],[65,239,0],[58,0,13],[32,3],[65,239,0],[58,0,14],[32,3],[65,236,0],[58,0,15],[32,3],[65,229,0],[58,0,16],[32,3],[65,225,0],[58,0,17],[32,3],[65,238,0],[58,0,18],[32,3],[65,221,0],[58,0,19],[32,3],[184],[34,2],[65,195,1],[15],[11],[32,4],[68,0,0,0,0,0,0,240,63],[97],[4,64],[32,2],[252,3],[34,3],[65,15],[54,1,0],[32,3],[65,219,0],[58,0,4],[32,3],[65,239,0],[58,0,5],[32,3],[65,226,0],[58,0,6],[32,3],[65,234,0],[58,0,7],[32,3],[65,229,0],[58,0,8],[32,3],[65,227,0],[58,0,9],[32,3],[65,244,0],[58,0,10],[32,3],[65,32],[58,0,11],[32,3],[65,206,0],[58,0,12],[32,3],[65,245,0],[58,0,13],[32,3],[65,237,0],[58,0,14],[32,3],[65,226,0],[58,0,15],[32,3],[65,229,0],[58,0,16],[32,3],[65,242,0],[58,0,17],[32,3],[65,221,0],[58,0,18],[32,3],[184],[34,2],[65,195,1],[15],[11],[32,4],[68,0,0,0,0,0,192,80,64],[97],[32,4],[68,0,0,0,0,0,96,104,64],[97],[114],[4,64],[32,2],[252,3],[34,3],[65,15],[54,1,0],[32,3],[65,219,0],[58,0,4],[32,3],[65,239,0],[58,0,5],[32,3],[65,226,0],[58,0,6],[32,3],[65,234,0],[58,0,7],[32,3],[65,229,0],[58,0,8],[32,3],[65,227,0],[58,0,9],[32,3],[65,244,0],[58,0,10],[32,3],[65,32],[58,0,11],[32,3],[65,211,0],[58,0,12],[32,3],[65,244,0],[58,0,13],[32,3],[65,242,0],[58,0,14],[32,3],[65,233,0],[58,0,15],[32,3],[65,238,0],[58,0,16],[32,3],[65,231,0],[58,0,17],[32,3],[65,221,0],[58,0,18],[32,3],[184],[34,2],[65,195,1],[15],[11],[32,4],[68,0,0,0,0,0,0,50,64],[97],[4,64],[32,2],[252,3],[34,3],[65,13],[54,1,0],[32,3],[65,219,0],[58,0,4],[32,3],[65,239,0],[58,0,5],[32,3],[65,226,0],[58,0,6],[32,3],[65,234,0],[58,0,7],[32,3],[65,229,0],[58,0,8],[32,3],[65,227,0],[58,0,9],[32,3],[65,244,0],[58,0,10],[32,3],[65,32],[58,0,11],[32,3],[65,196,0],[58,0,12],[32,3],[65,225,0],[58,0,13],[32,3],[65,244,0],[58,0,14],[32,3],[65,229,0],[58,0,15],[32,3],[65,221,0],[58,0,16],[32,3],[184],[34,2],[65,195,1],[15],[11],[32,4],[68,0,0,0,0,0,0,49,64],[97],[4,64],[32,2],[252,3],[34,3],[65,15],[54,1,0],[32,3],[65,219,0],[58,0,4],[32,3],[65,239,0],[58,0,5],[32,3],[65,226,0],[58,0,6],[32,3],[65,234,0],[58,0,7],[32,3],[65,229,0],[58,0,8],[32,3],[65,227,0],[58,0,9],[32,3],[65,244,0],[58,0,10],[32,3],[65,32],[58,0,11],[32,3],[65,210,0],[58,0,12],[32,3],[65,229,0],[58,0,13],[32,3],[65,231,0],[58,0,14],[32,3],[65,197,0],[58,0,15],[32,3],[65,248,0],[58,0,16],[32,3],[65,240,0],[58,0,17],[32,3],[65,221,0],[58,0,18],[32,3],[184],[34,2],[65,195,1],[15],[11],[32,2],[252,3],[34,3],[65,15],[54,1,0],[32,3],[65,219,0],[58,0,4],[32,3],[65,239,0],[58,0,5],[32,3],[65,226,0],[58,0,6],[32,3],[65,234,0],[58,0,7],[32,3],[65,229,0],[58,0,8],[32,3],[65,227,0],[58,0,9],[32,3],[65,244,0],[58,0,10],[32,3],[65,32],[58,0,11],[32,3],[65,207,0],[58,0,12],[32,3],[65,226,0],[58,0,13],[32,3],[65,234,0],[58,0,14],[32,3],[65,229,0],[58,0,15],[32,3],[65,227,0],[58,0,16],[32,3],[65,244,0],[58,0,17],[32,3],[65,221,0],[58,0,18],[32,3],[184],[34,2],[65,195,1],[15]],
|
1900
1918
|
params: [124,127], typedParams: 1,
|
@@ -2199,6 +2217,18 @@ export const BuiltinFuncs = function() {
|
|
2199
2217
|
returns: [124,127], typedReturns: 1,
|
2200
2218
|
locals: [127,124,127], localNames: ["target","target#type","#last_type","#logicinner_tmp","#typeswitch_tmp1"],
|
2201
2219
|
};
|
2220
|
+
this.__Reflect_getPrototypeOf = {
|
2221
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,2],[32,1],[16, builtin('__Porffor_object_isObject')],[33,2],[183],[33,3],[32,2],[33,4],[2,124],[32,4],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,3],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,4],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,3],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,3],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Target is a non-object`),[11],[32,0],[32,1],[16, builtin('__Object_getPrototypeOf')],[34,2],[15]],
|
2222
|
+
params: [124,127], typedParams: 1,
|
2223
|
+
returns: [124,127], typedReturns: 1,
|
2224
|
+
locals: [127,124,127], localNames: ["target","target#type","#last_type","#logicinner_tmp","#typeswitch_tmp1"],
|
2225
|
+
};
|
2226
|
+
this.__Reflect_setPrototypeOf = {
|
2227
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,2],[32,1],[16, builtin('__Porffor_object_isObject')],[33,4],[183],[33,5],[32,4],[33,6],[2,124],[32,6],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,5],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,6],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,5],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,5],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Target is a non-object`),[11],[6,64],[32,0],[32,1],[32,2],[32,3],[16, builtin('__Object_setPrototypeOf')],[33,4],[26],[68,0,0,0,0,0,0,240,63],[65,2],[15],[25],[68,0,0,0,0,0,0,0,0],[65,2],[15],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
2228
|
+
params: [124,127,124,127], typedParams: 1,
|
2229
|
+
returns: [124,127], typedReturns: 1,
|
2230
|
+
locals: [127,124,127], localNames: ["target","target#type","proto","proto#type","#last_type","#logicinner_tmp","#typeswitch_tmp1"],
|
2231
|
+
};
|
2202
2232
|
this.__Reflect_ownKeys = {
|
2203
2233
|
wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,2],[32,1],[16, builtin('__Porffor_object_isObject')],[33,2],[183],[33,3],[32,2],[33,4],[2,124],[32,4],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,3],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,4],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,3],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,3],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Target is a non-object`),[11],[16, builtin('__Porffor_allocate')],[183],[33,5],[32,1],[184],[34,6],[68,0,0,0,0,0,0,28,64],[97],[4,64],[32,0],[68,0,0,0,0,0,0,20,64],[160],[34,7],[32,0],[252,2],[40,0,0],[183],[68,0,0,0,0,0,0,44,64],[162],[160],[33,8],[68,0,0,0,0,0,0,0,0],[33,9],[3,64],[32,7],[32,8],[99],[4,64],[32,7],[252,3],[40,0,0],[34,12],[65,30],[118],[34,13],[4,127],[65,5],[65,195,0],[32,13],[65,3],[70],[27],[33,11],[32,12],[65,255,255,255,255,3],[113],[5],[65,195,1],[33,11],[32,12],[11],[184],[33,10],[32,5],[33,16],[32,9],[32,9],[68,0,0,0,0,0,0,240,63],[160],[33,9],[33,17],[32,16],[252,3],[32,17],[252,3],[65,9],[108],[106],[34,15],[32,10],[34,14],[57,0,4],[32,15],[32,11],[58,0,12],[32,7],[68,0,0,0,0,0,0,44,64],[160],[34,7],[12,1],[11],[11],[32,5],[252,3],[32,9],[34,19],[252,3],[54,1,0],[5],[32,6],[68,0,0,0,0,0,0,84,64],[97],[32,6],[68,0,0,0,0,0,96,104,64],[97],[114],[32,6],[68,0,0,0,0,0,192,80,64],[97],[114],[4,64],[32,0],[252,3],[40,1,0],[184],[33,20],[32,5],[252,3],[32,20],[34,19],[252,3],[54,1,0],[68,0,0,0,0,0,0,0,0],[33,9],[3,64],[32,9],[32,20],[99],[4,64],[32,5],[33,16],[32,9],[33,17],[32,16],[252,3],[32,17],[252,3],[65,9],[108],[106],[34,15],[32,9],[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('__Number_prototype_toString')],[33,2],[34,14],[57,0,4],[32,15],[32,2],[58,0,12],[32,9],[68,0,0,0,0,0,0,240,63],[160],[33,9],[12,1],[11],[11],[11],[11],[32,5],[65,208,0],[15]],
|
2204
2234
|
params: [124,127], typedParams: 1,
|
package/compiler/codegen.js
CHANGED
@@ -1895,6 +1895,77 @@ const createNewTarget = (scope, decl, idx = 0) => {
|
|
1895
1895
|
];
|
1896
1896
|
};
|
1897
1897
|
|
1898
|
+
const makeObject = (scope, obj) => {
|
1899
|
+
const properties = [];
|
1900
|
+
for (const x in obj) {
|
1901
|
+
properties.push({
|
1902
|
+
type: 'Property',
|
1903
|
+
method: false,
|
1904
|
+
shorthand: false,
|
1905
|
+
computed: false,
|
1906
|
+
key: {
|
1907
|
+
type: 'Identifier',
|
1908
|
+
name: x
|
1909
|
+
},
|
1910
|
+
value: obj[x],
|
1911
|
+
kind: 'init'
|
1912
|
+
});
|
1913
|
+
}
|
1914
|
+
|
1915
|
+
return generateObject(scope, {
|
1916
|
+
type: 'ObjectExpression',
|
1917
|
+
properties
|
1918
|
+
});
|
1919
|
+
};
|
1920
|
+
|
1921
|
+
const getObjProp = (obj, prop) => {
|
1922
|
+
if (typeof obj === 'string') obj = {
|
1923
|
+
type: 'Identifier',
|
1924
|
+
name: obj
|
1925
|
+
};
|
1926
|
+
|
1927
|
+
if (typeof prop === 'string') prop = {
|
1928
|
+
type: 'Identifier',
|
1929
|
+
name: prop
|
1930
|
+
};
|
1931
|
+
|
1932
|
+
return objectHack({
|
1933
|
+
type: 'MemberExpression',
|
1934
|
+
object: obj,
|
1935
|
+
property: prop,
|
1936
|
+
computed: false,
|
1937
|
+
optional: false
|
1938
|
+
});
|
1939
|
+
};
|
1940
|
+
|
1941
|
+
const setObjProp = (obj, prop, value) => {
|
1942
|
+
if (typeof obj === 'string') obj = {
|
1943
|
+
type: 'Identifier',
|
1944
|
+
name: obj
|
1945
|
+
};
|
1946
|
+
|
1947
|
+
if (typeof prop === 'string') prop = {
|
1948
|
+
type: 'Identifier',
|
1949
|
+
name: prop
|
1950
|
+
};
|
1951
|
+
|
1952
|
+
return objectHack({
|
1953
|
+
type: 'ExpressionStatement',
|
1954
|
+
expression: {
|
1955
|
+
type: 'AssignmentExpression',
|
1956
|
+
operator: '=',
|
1957
|
+
left: {
|
1958
|
+
type: 'MemberExpression',
|
1959
|
+
object: obj,
|
1960
|
+
property: prop,
|
1961
|
+
computed: false,
|
1962
|
+
optional: false
|
1963
|
+
},
|
1964
|
+
right: value
|
1965
|
+
}
|
1966
|
+
});
|
1967
|
+
};
|
1968
|
+
|
1898
1969
|
const createThisArg = (scope, decl, knownThis = undefined) => {
|
1899
1970
|
if (knownThis) {
|
1900
1971
|
// todo: check compliance
|
@@ -1902,11 +1973,8 @@ const createThisArg = (scope, decl, knownThis = undefined) => {
|
|
1902
1973
|
}
|
1903
1974
|
|
1904
1975
|
if (decl._new) {
|
1905
|
-
// todo: created object should have .prototype = func.prototype
|
1906
|
-
// todo: created object should have .constructor = func
|
1907
1976
|
return [
|
1908
|
-
|
1909
|
-
...generateObject(scope, { properties: [] }),
|
1977
|
+
...makeObject(scope, {}),
|
1910
1978
|
...number(TYPES.object, Valtype.i32)
|
1911
1979
|
];
|
1912
1980
|
} else {
|
@@ -3011,7 +3079,7 @@ const extractTypeAnnotation = decl => {
|
|
3011
3079
|
};
|
3012
3080
|
|
3013
3081
|
const setLocalWithType = (scope, name, isGlobal, decl, tee = false, overrideType = undefined) => {
|
3014
|
-
const local = isGlobal ? globals[name] : scope.locals[name];
|
3082
|
+
const local = isGlobal ? globals[name] : (scope.locals[name] ?? { idx: name });
|
3015
3083
|
const out = Array.isArray(decl) ? decl : generate(scope, decl, isGlobal, name);
|
3016
3084
|
|
3017
3085
|
// optimize away last type usage
|
@@ -3738,6 +3806,8 @@ const generateUnary = (scope, decl) => {
|
|
3738
3806
|
const object = decl.argument.object;
|
3739
3807
|
const property = getMemberProperty(decl.argument);
|
3740
3808
|
|
3809
|
+
if (property.value === 'length' || property.value === 'name') scope.noFastFuncMembers = true;
|
3810
|
+
|
3741
3811
|
return [
|
3742
3812
|
...generate(scope, object),
|
3743
3813
|
Opcodes.i32_to_u,
|
@@ -5249,7 +5319,7 @@ const generateMember = (scope, decl, _global, _name, _objectWasm = undefined) =>
|
|
5249
5319
|
const name = decl.object.name;
|
5250
5320
|
|
5251
5321
|
// hack: .name
|
5252
|
-
if (decl.property.name === 'name' && hasFuncWithName(name)) {
|
5322
|
+
if (decl.property.name === 'name' && hasFuncWithName(name) && !scope.noFastFuncMembers) {
|
5253
5323
|
let nameProp = name;
|
5254
5324
|
|
5255
5325
|
// eg: __String_prototype_toLowerCase -> toLowerCase
|
@@ -5262,12 +5332,14 @@ const generateMember = (scope, decl, _global, _name, _objectWasm = undefined) =>
|
|
5262
5332
|
if (decl.property.name === 'length') {
|
5263
5333
|
// todo: support optional
|
5264
5334
|
|
5265
|
-
|
5266
|
-
|
5335
|
+
if (!scope.noFastFuncMembers) {
|
5336
|
+
const func = funcs.find(x => x.name === name);
|
5337
|
+
if (func) return withType(scope, number(countLength(func, name)), TYPES.number);
|
5267
5338
|
|
5268
|
-
|
5269
|
-
|
5270
|
-
|
5339
|
+
if (Object.hasOwn(builtinFuncs, name)) return withType(scope, number(countLength(builtinFuncs[name], name)), TYPES.number);
|
5340
|
+
if (Object.hasOwn(importedFuncs, name)) return withType(scope, number(importedFuncs[name].params.length ?? importedFuncs[name].params), TYPES.number);
|
5341
|
+
if (Object.hasOwn(internalConstrs, name)) return withType(scope, number(internalConstrs[name].length ?? 0), TYPES.number);
|
5342
|
+
}
|
5271
5343
|
|
5272
5344
|
const out = [
|
5273
5345
|
...generate(scope, decl.object),
|
@@ -5783,9 +5855,20 @@ const generateFunc = (scope, decl) => {
|
|
5783
5855
|
// todo: wrap in try and reject thrown value once supported
|
5784
5856
|
}
|
5785
5857
|
|
5858
|
+
if (!globalThis.precompile && func.constr) {
|
5859
|
+
wasm.unshift(
|
5860
|
+
// if being constructed
|
5861
|
+
[ Opcodes.local_get, '#newtarget' ],
|
5862
|
+
Opcodes.i32_to_u,
|
5863
|
+
[ Opcodes.if, Blocktype.void ],
|
5864
|
+
// set prototype of this ;)
|
5865
|
+
...generate(func, setObjProp({ type: 'ThisExpression' }, '__proto__', getObjProp(func.name, 'prototype'))),
|
5866
|
+
[ Opcodes.end ]
|
5867
|
+
);
|
5868
|
+
}
|
5869
|
+
|
5786
5870
|
if (name === 'main') {
|
5787
5871
|
func.gotLastType = true;
|
5788
|
-
|
5789
5872
|
func.export = true;
|
5790
5873
|
func.returns = [ valtypeBinary, Valtype.i32 ];
|
5791
5874
|
|
@@ -5811,7 +5894,7 @@ const generateFunc = (scope, decl) => {
|
|
5811
5894
|
else func.returns = [];
|
5812
5895
|
}
|
5813
5896
|
|
5814
|
-
// inject promise job runner func at the end of main if used
|
5897
|
+
// inject promise job runner func at the end of main if job queue is used
|
5815
5898
|
if (Object.hasOwn(funcIndex, '__ecma262_HostEnqueuePromiseJob')) {
|
5816
5899
|
wasm.push(
|
5817
5900
|
[ Opcodes.call, includeBuiltin(scope, '__Porffor_promise_runJobs').index ],
|
package/package.json
CHANGED