porffor 0.22.2 → 0.22.4
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/object.ts +119 -10
- package/compiler/codegen.js +23 -2
- package/compiler/generated_builtins.js +10 -10
- package/package.json +1 -1
- package/runner/index.js +1 -1
@@ -14,7 +14,8 @@ export const Object = function (value: any): object {
|
|
14
14
|
return value;
|
15
15
|
};
|
16
16
|
|
17
|
-
export const
|
17
|
+
export const __Object_keys = (obj: any): any[] => {
|
18
|
+
if (obj == null) throw new TypeError('Argument is nullish, expected object');
|
18
19
|
const out: any[] = Porffor.allocate();
|
19
20
|
|
20
21
|
const t: i32 = Porffor.rawType(obj);
|
@@ -24,7 +25,7 @@ export const __Porffor_object_keys = (obj: any, enumerableOnly: boolean): any[]
|
|
24
25
|
|
25
26
|
let i: i32 = 0;
|
26
27
|
for (; ptr < endPtr; ptr += 14) {
|
27
|
-
if (
|
28
|
+
if (!Porffor.object.isEnumerable(ptr)) continue;
|
28
29
|
|
29
30
|
let key: any;
|
30
31
|
Porffor.wasm`local raw i32
|
@@ -49,7 +50,7 @@ if 127
|
|
49
50
|
|
50
51
|
local.get raw
|
51
52
|
i32.const 1073741823
|
52
|
-
i32.and
|
53
|
+
i32.and ;; unset 2 MSBs
|
53
54
|
else
|
54
55
|
i32.const 195
|
55
56
|
local.set ${key+1}
|
@@ -79,11 +80,6 @@ local.set ${key}`;
|
|
79
80
|
return out;
|
80
81
|
};
|
81
82
|
|
82
|
-
export const __Object_keys = (obj: any): any[] => {
|
83
|
-
if (obj == null) throw new TypeError('Argument is nullish, expected object');
|
84
|
-
return __Porffor_object_keys(obj, true);
|
85
|
-
};
|
86
|
-
|
87
83
|
export const __Object_values = (obj: any): any[] => {
|
88
84
|
if (obj == null) throw new TypeError('Argument is nullish, expected object');
|
89
85
|
|
@@ -179,7 +175,6 @@ export const __Object_prototype_hasOwnProperty = (_this: any, prop: any) => {
|
|
179
175
|
};
|
180
176
|
|
181
177
|
export const __Object_hasOwn = (obj: any, prop: any) => {
|
182
|
-
// todo: not spec compliant lol
|
183
178
|
return __Object_prototype_hasOwnProperty(obj, prop);
|
184
179
|
};
|
185
180
|
|
@@ -455,7 +450,121 @@ export const __Object_getOwnPropertyDescriptors = (obj: any): any => {
|
|
455
450
|
|
456
451
|
export const __Object_getOwnPropertyNames = (obj: any): any[] => {
|
457
452
|
if (obj == null) throw new TypeError('Argument is nullish, expected object');
|
458
|
-
|
453
|
+
const out: any[] = Porffor.allocate();
|
454
|
+
|
455
|
+
const t: i32 = Porffor.rawType(obj);
|
456
|
+
if (t == Porffor.TYPES.object) {
|
457
|
+
let ptr: i32 = Porffor.wasm`local.get ${obj}` + 5;
|
458
|
+
const endPtr: i32 = ptr + Porffor.wasm.i32.load(obj, 0, 0) * 14;
|
459
|
+
|
460
|
+
let i: i32 = 0;
|
461
|
+
for (; ptr < endPtr; ptr += 14) {
|
462
|
+
let key: any;
|
463
|
+
Porffor.wasm`local raw i32
|
464
|
+
local msb i32
|
465
|
+
local.get ${ptr}
|
466
|
+
i32.to_u
|
467
|
+
i32.load 0 0
|
468
|
+
local.set raw
|
469
|
+
|
470
|
+
local.get raw
|
471
|
+
i32.const 30
|
472
|
+
i32.shr_u
|
473
|
+
local.tee msb
|
474
|
+
if 127
|
475
|
+
i32.const 5 ;; symbol
|
476
|
+
i32.const 67 ;; string
|
477
|
+
local.get msb
|
478
|
+
i32.const 3
|
479
|
+
i32.eq
|
480
|
+
select
|
481
|
+
local.set ${key+1}
|
482
|
+
|
483
|
+
local.get raw
|
484
|
+
i32.const 1073741823
|
485
|
+
i32.and ;; unset 2 MSBs
|
486
|
+
else
|
487
|
+
i32.const 195
|
488
|
+
local.set ${key+1}
|
489
|
+
|
490
|
+
local.get raw
|
491
|
+
end
|
492
|
+
i32.from_u
|
493
|
+
local.set ${key}`;
|
494
|
+
|
495
|
+
if (Porffor.rawType(key) == Porffor.TYPES.symbol) continue;
|
496
|
+
out[i++] = key;
|
497
|
+
}
|
498
|
+
|
499
|
+
out.length = i;
|
500
|
+
} else if (Porffor.fastOr(
|
501
|
+
t == Porffor.TYPES.array,
|
502
|
+
t == Porffor.TYPES.bytestring,
|
503
|
+
t == Porffor.TYPES.string
|
504
|
+
)) {
|
505
|
+
const len: i32 = obj.length;
|
506
|
+
out.length = len;
|
507
|
+
|
508
|
+
for (let i: i32 = 0; i < len; i++) {
|
509
|
+
out[i] = __Number_prototype_toString(i);
|
510
|
+
}
|
511
|
+
}
|
512
|
+
|
513
|
+
return out;
|
514
|
+
};
|
515
|
+
|
516
|
+
export const __Object_getOwnPropertySymbols = (obj: any): any[] => {
|
517
|
+
if (obj == null) throw new TypeError('Argument is nullish, expected object');
|
518
|
+
const out: any[] = Porffor.allocate();
|
519
|
+
|
520
|
+
const t: i32 = Porffor.rawType(obj);
|
521
|
+
if (t == Porffor.TYPES.object) {
|
522
|
+
let ptr: i32 = Porffor.wasm`local.get ${obj}` + 5;
|
523
|
+
const endPtr: i32 = ptr + Porffor.wasm.i32.load(obj, 0, 0) * 14;
|
524
|
+
|
525
|
+
let i: i32 = 0;
|
526
|
+
for (; ptr < endPtr; ptr += 14) {
|
527
|
+
let key: any;
|
528
|
+
Porffor.wasm`local raw i32
|
529
|
+
local msb i32
|
530
|
+
local.get ${ptr}
|
531
|
+
i32.to_u
|
532
|
+
i32.load 0 0
|
533
|
+
local.set raw
|
534
|
+
|
535
|
+
local.get raw
|
536
|
+
i32.const 30
|
537
|
+
i32.shr_u
|
538
|
+
local.tee msb
|
539
|
+
if 127
|
540
|
+
i32.const 5 ;; symbol
|
541
|
+
i32.const 67 ;; string
|
542
|
+
local.get msb
|
543
|
+
i32.const 3
|
544
|
+
i32.eq
|
545
|
+
select
|
546
|
+
local.set ${key+1}
|
547
|
+
|
548
|
+
local.get raw
|
549
|
+
i32.const 1073741823
|
550
|
+
i32.and ;; unset 2 MSBs
|
551
|
+
else
|
552
|
+
i32.const 195
|
553
|
+
local.set ${key+1}
|
554
|
+
|
555
|
+
local.get raw
|
556
|
+
end
|
557
|
+
i32.from_u
|
558
|
+
local.set ${key}`;
|
559
|
+
|
560
|
+
if (Porffor.rawType(key) != Porffor.TYPES.symbol) continue;
|
561
|
+
out[i++] = key;
|
562
|
+
}
|
563
|
+
|
564
|
+
out.length = i;
|
565
|
+
}
|
566
|
+
|
567
|
+
return out;
|
459
568
|
};
|
460
569
|
|
461
570
|
|
package/compiler/codegen.js
CHANGED
@@ -1132,6 +1132,23 @@ const generateBinaryExp = (scope, decl, _global, _name) => {
|
|
1132
1132
|
return out;
|
1133
1133
|
}
|
1134
1134
|
|
1135
|
+
if (decl.operator === 'in') {
|
1136
|
+
// hack: a in b -> Object.hasOwn(b, a)
|
1137
|
+
// todo: not spec compliant, in should check prototype chain too (once we have it)
|
1138
|
+
|
1139
|
+
return generate(scope, {
|
1140
|
+
type: 'CallExpression',
|
1141
|
+
callee: {
|
1142
|
+
type: 'Identifier',
|
1143
|
+
name: '__Object_hasOwn'
|
1144
|
+
},
|
1145
|
+
arguments: [
|
1146
|
+
decl.right,
|
1147
|
+
decl.left
|
1148
|
+
]
|
1149
|
+
});
|
1150
|
+
}
|
1151
|
+
|
1135
1152
|
// opt: == null|undefined -> nullish
|
1136
1153
|
if (decl.operator === '==' || decl.operator === '!=') {
|
1137
1154
|
if (knownNullish(decl.right)) {
|
@@ -1441,6 +1458,7 @@ const getNodeType = (scope, node) => {
|
|
1441
1458
|
|
1442
1459
|
// check if this is a prototype function
|
1443
1460
|
// if so and there is only one impl (eg charCodeAt)
|
1461
|
+
// or all impls have the same return type
|
1444
1462
|
// use that return type as that is the only possibility
|
1445
1463
|
// (if non-matching type it would error out)
|
1446
1464
|
if (name.startsWith('__')) {
|
@@ -1448,7 +1466,10 @@ const getNodeType = (scope, node) => {
|
|
1448
1466
|
|
1449
1467
|
const func = spl[spl.length - 1];
|
1450
1468
|
const protoFuncs = Object.keys(prototypeFuncs).filter(x => x != TYPES.bytestring && prototypeFuncs[x][func] != null);
|
1451
|
-
if (
|
1469
|
+
if (
|
1470
|
+
protoFuncs.length === 1 ||
|
1471
|
+
(protoFuncs.length > 1 && protoFuncs.every(x => x.returnType === protoFuncs[0].returnType))
|
1472
|
+
) {
|
1452
1473
|
if (protoFuncs[0].returnType != null) return protoFuncs[0].returnType;
|
1453
1474
|
}
|
1454
1475
|
}
|
@@ -1513,7 +1534,7 @@ const getNodeType = (scope, node) => {
|
|
1513
1534
|
}
|
1514
1535
|
|
1515
1536
|
if (node.type === 'BinaryExpression') {
|
1516
|
-
if (['==', '===', '!=', '!==', '>', '>=', '<', '<=', 'instanceof'].includes(node.operator)) return TYPES.boolean;
|
1537
|
+
if (['==', '===', '!=', '!==', '>', '>=', '<', '<=', 'instanceof', 'in'].includes(node.operator)) return TYPES.boolean;
|
1517
1538
|
if (node.operator !== '+') return TYPES.number;
|
1518
1539
|
|
1519
1540
|
const leftType = getNodeType(scope, node.left);
|
@@ -1676,17 +1676,11 @@ export const BuiltinFuncs = function() {
|
|
1676
1676
|
locals: [127,124,127,124], localNames: ["value","value#type","#last_type","#logicinner_tmp","#typeswitch_tmp","obj"],
|
1677
1677
|
constr: 1,
|
1678
1678
|
};
|
1679
|
-
this.__Porffor_object_keys = {
|
1680
|
-
wasm: (scope, {builtin}) => [[16, ...builtin('__Porffor_allocate')],[183],[33,4],[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[34,5],[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,6],[32,0],[252,2],[40,0,0],[183],[68,0,0,0,0,0,0,44,64],[162],[160],[33,7],[68,0,0,0,0,0,0,0,0],[33,8],[3,64],[32,6],[32,7],[99],[4,64],[2,64],[32,2],[34,12],[252,3],[4,124],[32,6],[252,2],[65,1],[16, ...builtin('__Porffor_object_isEnumerable')],[33,9],[183],[33,10],[32,9],[33,11],[2,124],[32,11],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,10],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,11],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,10],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,10],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[65,2],[33,9],[5],[32,12],[65,2],[33,9],[11],[33,10],[32,9],[33,11],[2,127],[32,11],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,10],[252,3],[40,1,0],[12,1],[11],[32,11],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,10],[252,3],[40,1,0],[12,1],[11],[32,10],[252,3],[11,"TYPESWITCH_end"],[4,64],[12,1],[11],[32,6],[252,3],[40,0,0],[34,15],[65,30],[118],[34,16],[4,127],[65,5],[65,195,0],[32,16],[65,3],[70],[27],[33,14],[32,15],[65,255,255,255,255,3],[113],[5],[65,195,1],[33,14],[32,15],[11],[184],[33,13],[32,4],[33,19],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[33,20],[32,19],[252,3],[32,20],[252,3],[65,9],[108],[106],[34,18],[32,13],[34,17],[57,0,4],[32,18],[32,14],[58,0,12],[11],[32,6],[68,0,0,0,0,0,0,44,64],[160],[34,6],[12,1],[11],[11],[32,4],[252,3],[32,8],[34,22],[252,3],[54,1,0],[5],[32,5],[68,0,0,0,0,0,0,84,64],[97],[32,5],[68,0,0,0,0,0,96,104,64],[97],[114],[32,5],[68,0,0,0,0,0,192,80,64],[97],[114],[4,64],[32,0],[252,3],[40,1,0],[184],[33,23],[32,4],[252,3],[32,23],[34,22],[252,3],[54,1,0],[68,0,0,0,0,0,0,0,0],[33,8],[3,64],[32,8],[32,23],[99],[4,64],[32,4],[33,19],[32,8],[33,20],[32,19],[252,3],[32,20],[252,3],[65,9],[108],[106],[34,18],[32,8],[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('__Number_prototype_toString')],[33,9],[34,17],[57,0,4],[32,18],[32,9],[58,0,12],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[12,1],[11],[11],[11],[11],[32,4],[65,208,0],[15]],
|
1681
|
-
params: [124,127,124,127], typedParams: 1,
|
1682
|
-
returns: [124,127], typedReturns: 1,
|
1683
|
-
locals: [124,124,124,124,124,127,124,127,124,124,127,127,127,124,127,124,124,127,124,124], localNames: ["obj","obj#type","enumerableOnly","enumerableOnly#type","out","t","ptr","endPtr","i","#last_type","#logicinner_tmp","#typeswitch_tmp","logictmp","key","key#type","raw","msb","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#swap","__length_setter_tmp","len"],
|
1684
|
-
};
|
1685
1679
|
this.__Object_keys = {
|
1686
|
-
wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,2],[32,1],[33,3],[2,127],[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', `Argument is nullish, expected object`),[11],[32,0],[32,1],[68,0,0,0,0,0,0,240,63],[65,
|
1680
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,2],[32,1],[33,3],[2,127],[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', `Argument is nullish, expected object`),[11],[16, ...builtin('__Porffor_allocate')],[183],[33,4],[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[34,5],[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,6],[32,0],[252,2],[40,0,0],[183],[68,0,0,0,0,0,0,44,64],[162],[160],[33,7],[68,0,0,0,0,0,0,0,0],[33,8],[3,64],[32,6],[32,7],[99],[4,64],[2,64],[32,6],[252,2],[65,1],[16, ...builtin('__Porffor_object_isEnumerable')],[33,9],[183],[33,2],[32,9],[33,3],[2,124],[32,3],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,2],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,3],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,2],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,2],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[12,1],[11],[32,6],[252,3],[40,0,0],[34,12],[65,30],[118],[34,13],[4,127],[65,5],[65,195,0],[32,13],[65,3],[70],[27],[33,11],[32,12],[65,255,255,255,255,3],[113],[5],[65,195,1],[33,11],[32,12],[11],[184],[33,10],[32,4],[33,16],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[33,17],[32,16],[252,3],[32,17],[252,3],[65,9],[108],[106],[34,15],[32,10],[34,14],[57,0,4],[32,15],[32,11],[58,0,12],[11],[32,6],[68,0,0,0,0,0,0,44,64],[160],[34,6],[12,1],[11],[11],[32,4],[252,3],[32,8],[34,19],[252,3],[54,1,0],[5],[32,5],[68,0,0,0,0,0,0,84,64],[97],[32,5],[68,0,0,0,0,0,96,104,64],[97],[114],[32,5],[68,0,0,0,0,0,192,80,64],[97],[114],[4,64],[32,0],[252,3],[40,1,0],[184],[33,20],[32,4],[252,3],[32,20],[34,19],[252,3],[54,1,0],[68,0,0,0,0,0,0,0,0],[33,8],[3,64],[32,8],[32,20],[99],[4,64],[32,4],[33,16],[32,8],[33,17],[32,16],[252,3],[32,17],[252,3],[65,9],[108],[106],[34,15],[32,8],[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('__Number_prototype_toString')],[33,9],[34,14],[57,0,4],[32,15],[32,9],[58,0,12],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[12,1],[11],[11],[11],[11],[32,4],[65,208,0],[15]],
|
1687
1681
|
params: [124,127], typedParams: 1,
|
1688
1682
|
returns: [124,127], typedReturns: 1,
|
1689
|
-
locals: [124,127,127], localNames: ["obj","obj#type","#logicinner_tmp","#typeswitch_tmp","#last_type"],
|
1683
|
+
locals: [124,127,124,124,124,124,124,127,124,127,127,127,124,127,124,124,127,124,124], localNames: ["obj","obj#type","#logicinner_tmp","#typeswitch_tmp","out","t","ptr","endPtr","i","#last_type","key","key#type","raw","msb","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#swap","__length_setter_tmp","len"],
|
1690
1684
|
};
|
1691
1685
|
this.__Object_values = {
|
1692
1686
|
wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,2],[32,1],[33,3],[2,127],[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', `Argument is nullish, expected object`),[11],[16, ...builtin('__Porffor_allocate')],[183],[33,4],[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[34,5],[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,6],[32,0],[252,2],[40,0,0],[183],[68,0,0,0,0,0,0,44,64],[162],[160],[33,7],[68,0,0,0,0,0,0,0,0],[33,8],[3,64],[32,6],[32,7],[99],[4,64],[2,64],[32,6],[252,2],[65,1],[16, ...builtin('__Porffor_object_isEnumerable')],[33,9],[183],[33,2],[32,9],[33,3],[2,124],[32,3],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,2],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,3],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,2],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,2],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[12,1],[11],[32,6],[252,3],[34,12],[43,0,4],[33,10],[32,12],[45,0,13],[33,11],[32,4],[33,15],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[33,16],[32,15],[252,3],[32,16],[252,3],[65,9],[108],[106],[34,14],[32,10],[34,13],[57,0,4],[32,14],[32,11],[58,0,12],[11],[32,6],[68,0,0,0,0,0,0,44,64],[160],[34,6],[12,1],[11],[11],[32,4],[252,3],[32,8],[34,18],[252,3],[54,1,0],[5],[32,5],[68,0,0,0,0,0,0,84,64],[97],[32,5],[68,0,0,0,0,0,96,104,64],[97],[114],[32,5],[68,0,0,0,0,0,192,80,64],[97],[114],[4,64],[32,0],[252,3],[40,1,0],[184],[33,19],[32,4],[252,3],[32,19],[34,18],[252,3],[54,1,0],[68,0,0,0,0,0,0,0,0],[33,8],[3,64],[32,8],[32,19],[99],[4,64],[2,64],[32,4],[33,15],[32,8],[33,16],[32,15],[252,3],[32,16],[252,3],[65,9],[108],[106],[34,14],[32,0],[33,15],[32,8],[33,20],[32,1],[33,3],[2,124],[32,3],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,15],[252,3],[32,1],[32,20],[65,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[16, ...builtin('__Porffor_object_get')],[33,9],[12,1],[11],[32,3],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,0],[65,1],[54,0,0],[65,0],[32,20],[252,3],[65,2],[108],[32,15],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[65,195,0],[33,9],[12,1],[11],[32,3],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,20],[252,3],[65,9],[108],[32,15],[252,3],[106],[34,21],[43,0,4],[32,21],[45,0,12],[33,9],[12,1],[11],[32,3],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,15],[252,3],[40,0,4],[32,20],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11],[32,3],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,15],[252,3],[40,0,4],[32,20],[252,3],[106],[44,0,4],[183],[65,1],[33,9],[12,1],[11],[32,3],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,15],[252,3],[40,0,4],[32,20],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11],[32,3],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,9],[12,1],[11],[32,3],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,9],[12,1],[11],[32,3],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,9],[12,1],[11],[32,3],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,9],[12,1],[11],[32,3],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,9],[12,1],[11],[32,3],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,15],[252,3],[40,0,4],[32,20],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,9],[12,1],[11],[32,3],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,0],[65,1],[54,0,0],[65,0],[32,20],[252,3],[32,15],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[65,195,1],[33,9],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,13],[57,0,4],[32,14],[32,9],[58,0,12],[11],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[12,1],[11],[11],[11],[11],[32,4],[65,208,0],[15]],
|
@@ -1804,10 +1798,16 @@ export const BuiltinFuncs = function() {
|
|
1804
1798
|
locals: [124,127,127,127,124,127,127,124,127,124,124,127,127,127], localNames: ["obj","obj#type","out","#forin_base_pointer","#forin_length","#forin_counter","x","x#type","#forin_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#last_type","#swap","#typeswitch_tmp"],
|
1805
1799
|
};
|
1806
1800
|
this.__Object_getOwnPropertyNames = {
|
1807
|
-
wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,2],[32,1],[33,3],[2,127],[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', `Argument is nullish, expected object`),[11],[32,0],[32,1],[68,0,0,0,0,0,0,0,0],[
|
1801
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,2],[32,1],[33,3],[2,127],[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', `Argument is nullish, expected object`),[11],[16, ...builtin('__Porffor_allocate')],[183],[33,4],[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[34,5],[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,6],[32,0],[252,2],[40,0,0],[183],[68,0,0,0,0,0,0,44,64],[162],[160],[33,7],[68,0,0,0,0,0,0,0,0],[33,8],[3,64],[32,6],[32,7],[99],[4,64],[2,64],[32,6],[252,3],[40,0,0],[34,11],[65,30],[118],[34,12],[4,127],[65,5],[65,195,0],[32,12],[65,3],[70],[27],[33,10],[32,11],[65,255,255,255,255,3],[113],[5],[65,195,1],[33,10],[32,11],[11],[184],[34,9],[32,10],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,20,64],[97],[4,64],[12,1],[11],[32,4],[33,15],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[33,16],[32,15],[252,3],[32,16],[252,3],[65,9],[108],[106],[34,14],[32,9],[34,13],[57,0,4],[32,14],[32,10],[58,0,12],[11],[32,6],[68,0,0,0,0,0,0,44,64],[160],[34,6],[12,1],[11],[11],[32,4],[252,3],[32,8],[34,18],[252,3],[54,1,0],[5],[32,5],[68,0,0,0,0,0,0,84,64],[97],[32,5],[68,0,0,0,0,0,96,104,64],[97],[114],[32,5],[68,0,0,0,0,0,192,80,64],[97],[114],[4,64],[32,0],[252,3],[40,1,0],[184],[33,19],[32,4],[252,3],[32,19],[34,18],[252,3],[54,1,0],[68,0,0,0,0,0,0,0,0],[33,8],[3,64],[32,8],[32,19],[99],[4,64],[32,4],[33,15],[32,8],[33,16],[32,15],[252,3],[32,16],[252,3],[65,9],[108],[106],[34,14],[32,8],[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('__Number_prototype_toString')],[33,20],[34,13],[57,0,4],[32,14],[32,20],[58,0,12],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[12,1],[11],[11],[11],[11],[32,4],[65,208,0],[15]],
|
1802
|
+
params: [124,127], typedParams: 1,
|
1803
|
+
returns: [124,127], typedReturns: 1,
|
1804
|
+
locals: [124,127,124,124,124,124,124,124,127,127,127,124,127,124,124,127,124,124,127], localNames: ["obj","obj#type","#logicinner_tmp","#typeswitch_tmp","out","t","ptr","endPtr","i","key","key#type","raw","msb","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#swap","__length_setter_tmp","len","#last_type"],
|
1805
|
+
};
|
1806
|
+
this.__Object_getOwnPropertySymbols = {
|
1807
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,0],[33,2],[32,1],[33,3],[2,127],[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', `Argument is nullish, expected object`),[11],[16, ...builtin('__Porffor_allocate')],[183],[33,4],[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[34,5],[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,6],[32,0],[252,2],[40,0,0],[183],[68,0,0,0,0,0,0,44,64],[162],[160],[33,7],[68,0,0,0,0,0,0,0,0],[33,8],[3,64],[32,6],[32,7],[99],[4,64],[2,64],[32,6],[252,3],[40,0,0],[34,11],[65,30],[118],[34,12],[4,127],[65,5],[65,195,0],[32,12],[65,3],[70],[27],[33,10],[32,11],[65,255,255,255,255,3],[113],[5],[65,195,1],[33,10],[32,11],[11],[184],[34,9],[32,10],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,20,64],[98],[4,64],[12,1],[11],[32,4],[33,15],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[33,16],[32,15],[252,3],[32,16],[252,3],[65,9],[108],[106],[34,14],[32,9],[34,13],[57,0,4],[32,14],[32,10],[58,0,12],[11],[32,6],[68,0,0,0,0,0,0,44,64],[160],[34,6],[12,1],[11],[11],[32,4],[252,3],[32,8],[34,18],[252,3],[54,1,0],[11],[32,4],[65,208,0],[15]],
|
1808
1808
|
params: [124,127], typedParams: 1,
|
1809
1809
|
returns: [124,127], typedReturns: 1,
|
1810
|
-
locals: [124,127,127], localNames: ["obj","obj#type","#logicinner_tmp","#typeswitch_tmp","#
|
1810
|
+
locals: [124,127,124,124,124,124,124,124,127,127,127,124,127,124,124,127,124], localNames: ["obj","obj#type","#logicinner_tmp","#typeswitch_tmp","out","t","ptr","endPtr","i","key","key#type","raw","msb","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#swap","__length_setter_tmp"],
|
1811
1811
|
};
|
1812
1812
|
this.__Object_groupBy = {
|
1813
1813
|
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,7],[40,1,0],[34,8],[4,64],[32,1],[33,24],[2,64],[32,24],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,7],[43,0,4],[32,7],[45,0,12],[33,11],[33,10],[2,64],[2,64],[32,2],[33,23],[32,3],[33,24],[2,124],[32,24],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,10],[32,11],[33,14],[33,15],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[32,23],[252,3],[34,20],[65,3],[108],[65,2],[106],[45,0,128,128,16,"read func lut"],[34,21],[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],[32,20],[65,3],[108],[47,0,128,128,16,"read func lut"],[14,4,0,1,2,3,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"no_type_return","constr"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"constr"],[33,22],[5],[32,20],[17,0,0],[33,22],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"constr"],[33,22],[5],[32,15],[32,14],[32,20],[17,1,0],[33,22],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0],[33,22],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0],[33,22],[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,12],[32,22],[33,13],[32,4],[65,7],[32,12],[32,13],[16, ...builtin('__Object_hasOwn')],[33,22],[33,25],[32,22],[33,24],[2,124],[32,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,25],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, ...builtin('__Porffor_allocate')],[183],[33,26],[32,4],[33,29],[32,12],[33,30],[32,29],[252,3],[65,7],[32,30],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[32,26],[65,208,0],[16, ...builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,29],[32,12],[33,32],[32,29],[252,3],[65,7],[32,32],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[16, ...builtin('__Porffor_object_get')],[33,22],[33,34],[32,22],[34,35],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,34],[32,35],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,10],[57,0,4],[65,128,128,20],[32,11],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, ...builtin('__Array_prototype_push')],[33,22],[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,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,195,0],[33,11],[65,128,128,12],[65,1],[54,0,0],[3,64],[65,128,128,12],[32,7],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,8,65],[33,10],[2,64],[2,64],[32,2],[33,23],[32,3],[33,24],[2,124],[32,24],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,10],[32,11],[33,14],[33,15],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[32,23],[252,3],[34,20],[65,3],[108],[65,2],[106],[45,0,128,128,16,"read func lut"],[34,21],[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],[32,20],[65,3],[108],[47,0,128,128,16,"read func lut"],[14,4,0,1,2,3,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"no_type_return","constr"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"constr"],[33,22],[5],[32,20],[17,0,0],[33,22],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"constr"],[33,22],[5],[32,15],[32,14],[32,20],[17,1,0],[33,22],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0],[33,22],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0],[33,22],[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,12],[32,22],[33,13],[32,4],[65,7],[32,12],[32,13],[16, ...builtin('__Object_hasOwn')],[33,22],[33,25],[32,22],[33,24],[2,124],[32,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,25],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, ...builtin('__Porffor_allocate')],[183],[33,26],[32,4],[33,29],[32,12],[33,30],[32,29],[252,3],[65,7],[32,30],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[32,26],[65,208,0],[16, ...builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,29],[32,12],[33,32],[32,29],[252,3],[65,7],[32,32],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[16, ...builtin('__Porffor_object_get')],[33,22],[33,34],[32,22],[34,35],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,34],[32,35],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,10],[57,0,4],[65,128,128,20],[32,11],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, ...builtin('__Array_prototype_push')],[33,22],[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,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,7],[43,0,4],[32,7],[45,0,12],[33,11],[33,10],[2,64],[2,64],[32,2],[33,23],[32,3],[33,24],[2,124],[32,24],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,10],[32,11],[33,14],[33,15],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[32,23],[252,3],[34,20],[65,3],[108],[65,2],[106],[45,0,128,128,16,"read func lut"],[34,21],[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],[32,20],[65,3],[108],[47,0,128,128,16,"read func lut"],[14,4,0,1,2,3,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"no_type_return","constr"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"constr"],[33,22],[5],[32,20],[17,0,0],[33,22],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"constr"],[33,22],[5],[32,15],[32,14],[32,20],[17,1,0],[33,22],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0],[33,22],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0],[33,22],[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,12],[32,22],[33,13],[32,4],[65,7],[32,12],[32,13],[16, ...builtin('__Object_hasOwn')],[33,22],[33,25],[32,22],[33,24],[2,124],[32,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,25],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, ...builtin('__Porffor_allocate')],[183],[33,26],[32,4],[33,29],[32,12],[33,30],[32,29],[252,3],[65,7],[32,30],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[32,26],[65,208,0],[16, ...builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,29],[32,12],[33,32],[32,29],[252,3],[65,7],[32,32],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[16, ...builtin('__Porffor_object_get')],[33,22],[33,34],[32,22],[34,35],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,34],[32,35],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,10],[57,0,4],[65,128,128,20],[32,11],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, ...builtin('__Array_prototype_push')],[33,22],[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,24],[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],[33,10],[2,64],[2,64],[32,2],[33,23],[32,3],[33,24],[2,124],[32,24],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,10],[32,11],[33,14],[33,15],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[32,23],[252,3],[34,20],[65,3],[108],[65,2],[106],[45,0,128,128,16,"read func lut"],[34,21],[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],[32,20],[65,3],[108],[47,0,128,128,16,"read func lut"],[14,4,0,1,2,3,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"no_type_return","constr"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"constr"],[33,22],[5],[32,20],[17,0,0],[33,22],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"constr"],[33,22],[5],[32,15],[32,14],[32,20],[17,1,0],[33,22],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0],[33,22],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0],[33,22],[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,12],[32,22],[33,13],[32,4],[65,7],[32,12],[32,13],[16, ...builtin('__Object_hasOwn')],[33,22],[33,25],[32,22],[33,24],[2,124],[32,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,25],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, ...builtin('__Porffor_allocate')],[183],[33,26],[32,4],[33,29],[32,12],[33,30],[32,29],[252,3],[65,7],[32,30],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[32,26],[65,208,0],[16, ...builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,29],[32,12],[33,32],[32,29],[252,3],[65,7],[32,32],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[16, ...builtin('__Porffor_object_get')],[33,22],[33,34],[32,22],[34,35],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,34],[32,35],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,10],[57,0,4],[65,128,128,20],[32,11],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, ...builtin('__Array_prototype_push')],[33,22],[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,24],[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],[33,10],[2,64],[2,64],[32,2],[33,23],[32,3],[33,24],[2,124],[32,24],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,10],[32,11],[33,14],[33,15],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[32,23],[252,3],[34,20],[65,3],[108],[65,2],[106],[45,0,128,128,16,"read func lut"],[34,21],[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],[32,20],[65,3],[108],[47,0,128,128,16,"read func lut"],[14,4,0,1,2,3,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"no_type_return","constr"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"constr"],[33,22],[5],[32,20],[17,0,0],[33,22],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"constr"],[33,22],[5],[32,15],[32,14],[32,20],[17,1,0],[33,22],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0],[33,22],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0],[33,22],[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,12],[32,22],[33,13],[32,4],[65,7],[32,12],[32,13],[16, ...builtin('__Object_hasOwn')],[33,22],[33,25],[32,22],[33,24],[2,124],[32,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,25],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, ...builtin('__Porffor_allocate')],[183],[33,26],[32,4],[33,29],[32,12],[33,30],[32,29],[252,3],[65,7],[32,30],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[32,26],[65,208,0],[16, ...builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,29],[32,12],[33,32],[32,29],[252,3],[65,7],[32,32],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[16, ...builtin('__Porffor_object_get')],[33,22],[33,34],[32,22],[34,35],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,34],[32,35],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,10],[57,0,4],[65,128,128,20],[32,11],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, ...builtin('__Array_prototype_push')],[33,22],[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,24],[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],[33,10],[2,64],[2,64],[32,2],[33,23],[32,3],[33,24],[2,124],[32,24],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,10],[32,11],[33,14],[33,15],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[32,23],[252,3],[34,20],[65,3],[108],[65,2],[106],[45,0,128,128,16,"read func lut"],[34,21],[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],[32,20],[65,3],[108],[47,0,128,128,16,"read func lut"],[14,4,0,1,2,3,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"no_type_return","constr"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"constr"],[33,22],[5],[32,20],[17,0,0],[33,22],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"constr"],[33,22],[5],[32,15],[32,14],[32,20],[17,1,0],[33,22],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0],[33,22],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0],[33,22],[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,12],[32,22],[33,13],[32,4],[65,7],[32,12],[32,13],[16, ...builtin('__Object_hasOwn')],[33,22],[33,25],[32,22],[33,24],[2,124],[32,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,25],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, ...builtin('__Porffor_allocate')],[183],[33,26],[32,4],[33,29],[32,12],[33,30],[32,29],[252,3],[65,7],[32,30],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[32,26],[65,208,0],[16, ...builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,29],[32,12],[33,32],[32,29],[252,3],[65,7],[32,32],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[16, ...builtin('__Porffor_object_get')],[33,22],[33,34],[32,22],[34,35],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,34],[32,35],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,10],[57,0,4],[65,128,128,20],[32,11],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, ...builtin('__Array_prototype_push')],[33,22],[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,24],[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],[33,10],[2,64],[2,64],[32,2],[33,23],[32,3],[33,24],[2,124],[32,24],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,10],[32,11],[33,14],[33,15],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[32,23],[252,3],[34,20],[65,3],[108],[65,2],[106],[45,0,128,128,16,"read func lut"],[34,21],[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],[32,20],[65,3],[108],[47,0,128,128,16,"read func lut"],[14,4,0,1,2,3,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"no_type_return","constr"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"constr"],[33,22],[5],[32,20],[17,0,0],[33,22],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"constr"],[33,22],[5],[32,15],[32,14],[32,20],[17,1,0],[33,22],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0],[33,22],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0],[33,22],[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,12],[32,22],[33,13],[32,4],[65,7],[32,12],[32,13],[16, ...builtin('__Object_hasOwn')],[33,22],[33,25],[32,22],[33,24],[2,124],[32,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,25],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, ...builtin('__Porffor_allocate')],[183],[33,26],[32,4],[33,29],[32,12],[33,30],[32,29],[252,3],[65,7],[32,30],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[32,26],[65,208,0],[16, ...builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,29],[32,12],[33,32],[32,29],[252,3],[65,7],[32,32],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[16, ...builtin('__Porffor_object_get')],[33,22],[33,34],[32,22],[34,35],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,34],[32,35],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,10],[57,0,4],[65,128,128,20],[32,11],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, ...builtin('__Array_prototype_push')],[33,22],[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,24],[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],[33,10],[2,64],[2,64],[32,2],[33,23],[32,3],[33,24],[2,124],[32,24],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,10],[32,11],[33,14],[33,15],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[32,23],[252,3],[34,20],[65,3],[108],[65,2],[106],[45,0,128,128,16,"read func lut"],[34,21],[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],[32,20],[65,3],[108],[47,0,128,128,16,"read func lut"],[14,4,0,1,2,3,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"no_type_return","constr"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"constr"],[33,22],[5],[32,20],[17,0,0],[33,22],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"constr"],[33,22],[5],[32,15],[32,14],[32,20],[17,1,0],[33,22],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0],[33,22],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0],[33,22],[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,12],[32,22],[33,13],[32,4],[65,7],[32,12],[32,13],[16, ...builtin('__Object_hasOwn')],[33,22],[33,25],[32,22],[33,24],[2,124],[32,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,25],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, ...builtin('__Porffor_allocate')],[183],[33,26],[32,4],[33,29],[32,12],[33,30],[32,29],[252,3],[65,7],[32,30],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[32,26],[65,208,0],[16, ...builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,29],[32,12],[33,32],[32,29],[252,3],[65,7],[32,32],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[16, ...builtin('__Porffor_object_get')],[33,22],[33,34],[32,22],[34,35],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,34],[32,35],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,10],[57,0,4],[65,128,128,20],[32,11],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, ...builtin('__Array_prototype_push')],[33,22],[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,24],[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],[33,10],[2,64],[2,64],[32,2],[33,23],[32,3],[33,24],[2,124],[32,24],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,10],[32,11],[33,14],[33,15],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[32,23],[252,3],[34,20],[65,3],[108],[65,2],[106],[45,0,128,128,16,"read func lut"],[34,21],[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],[32,20],[65,3],[108],[47,0,128,128,16,"read func lut"],[14,4,0,1,2,3,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"no_type_return","constr"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"constr"],[33,22],[5],[32,20],[17,0,0],[33,22],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"constr"],[33,22],[5],[32,15],[32,14],[32,20],[17,1,0],[33,22],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0],[33,22],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0],[33,22],[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,12],[32,22],[33,13],[32,4],[65,7],[32,12],[32,13],[16, ...builtin('__Object_hasOwn')],[33,22],[33,25],[32,22],[33,24],[2,124],[32,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,25],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, ...builtin('__Porffor_allocate')],[183],[33,26],[32,4],[33,29],[32,12],[33,30],[32,29],[252,3],[65,7],[32,30],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[32,26],[65,208,0],[16, ...builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,29],[32,12],[33,32],[32,29],[252,3],[65,7],[32,32],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[16, ...builtin('__Porffor_object_get')],[33,22],[33,34],[32,22],[34,35],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,34],[32,35],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,10],[57,0,4],[65,128,128,20],[32,11],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, ...builtin('__Array_prototype_push')],[33,22],[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,24],[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],[33,10],[2,64],[2,64],[32,2],[33,23],[32,3],[33,24],[2,124],[32,24],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,10],[32,11],[33,14],[33,15],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[32,23],[252,3],[34,20],[65,3],[108],[65,2],[106],[45,0,128,128,16,"read func lut"],[34,21],[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],[32,20],[65,3],[108],[47,0,128,128,16,"read func lut"],[14,4,0,1,2,3,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"no_type_return","constr"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"constr"],[33,22],[5],[32,20],[17,0,0],[33,22],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"constr"],[33,22],[5],[32,15],[32,14],[32,20],[17,1,0],[33,22],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0],[33,22],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0],[33,22],[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,12],[32,22],[33,13],[32,4],[65,7],[32,12],[32,13],[16, ...builtin('__Object_hasOwn')],[33,22],[33,25],[32,22],[33,24],[2,124],[32,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,25],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, ...builtin('__Porffor_allocate')],[183],[33,26],[32,4],[33,29],[32,12],[33,30],[32,29],[252,3],[65,7],[32,30],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[32,26],[65,208,0],[16, ...builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,29],[32,12],[33,32],[32,29],[252,3],[65,7],[32,32],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[16, ...builtin('__Porffor_object_get')],[33,22],[33,34],[32,22],[34,35],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,34],[32,35],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,10],[57,0,4],[65,128,128,20],[32,11],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, ...builtin('__Array_prototype_push')],[33,22],[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,24],[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],[33,10],[2,64],[2,64],[32,2],[33,23],[32,3],[33,24],[2,124],[32,24],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,10],[32,11],[33,14],[33,15],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[32,23],[252,3],[34,20],[65,3],[108],[65,2],[106],[45,0,128,128,16,"read func lut"],[34,21],[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],[32,20],[65,3],[108],[47,0,128,128,16,"read func lut"],[14,4,0,1,2,3,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"no_type_return","constr"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"constr"],[33,22],[5],[32,20],[17,0,0],[33,22],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"constr"],[33,22],[5],[32,15],[32,14],[32,20],[17,1,0],[33,22],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0],[33,22],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0],[33,22],[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,12],[32,22],[33,13],[32,4],[65,7],[32,12],[32,13],[16, ...builtin('__Object_hasOwn')],[33,22],[33,25],[32,22],[33,24],[2,124],[32,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,25],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, ...builtin('__Porffor_allocate')],[183],[33,26],[32,4],[33,29],[32,12],[33,30],[32,29],[252,3],[65,7],[32,30],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[32,26],[65,208,0],[16, ...builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,29],[32,12],[33,32],[32,29],[252,3],[65,7],[32,32],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[16, ...builtin('__Porffor_object_get')],[33,22],[33,34],[32,22],[34,35],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,34],[32,35],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,10],[57,0,4],[65,128,128,20],[32,11],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, ...builtin('__Array_prototype_push')],[33,22],[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,24],[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],[33,10],[2,64],[2,64],[32,2],[33,23],[32,3],[33,24],[2,124],[32,24],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,10],[32,11],[33,14],[33,15],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[32,23],[252,3],[34,20],[65,3],[108],[65,2],[106],[45,0,128,128,16,"read func lut"],[34,21],[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],[32,20],[65,3],[108],[47,0,128,128,16,"read func lut"],[14,4,0,1,2,3,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"no_type_return","constr"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"constr"],[33,22],[5],[32,20],[17,0,0],[33,22],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"constr"],[33,22],[5],[32,15],[32,14],[32,20],[17,1,0],[33,22],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0],[33,22],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0],[33,22],[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,12],[32,22],[33,13],[32,4],[65,7],[32,12],[32,13],[16, ...builtin('__Object_hasOwn')],[33,22],[33,25],[32,22],[33,24],[2,124],[32,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,25],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, ...builtin('__Porffor_allocate')],[183],[33,26],[32,4],[33,29],[32,12],[33,30],[32,29],[252,3],[65,7],[32,30],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[32,26],[65,208,0],[16, ...builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,29],[32,12],[33,32],[32,29],[252,3],[65,7],[32,32],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[16, ...builtin('__Porffor_object_get')],[33,22],[33,34],[32,22],[34,35],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,34],[32,35],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,10],[57,0,4],[65,128,128,20],[32,11],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, ...builtin('__Array_prototype_push')],[33,22],[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,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,195,1],[33,11],[65,128,128,12],[65,1],[54,0,0],[3,64],[65,128,128,12],[32,7],[32,9],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,8,65],[33,10],[2,64],[2,64],[32,2],[33,23],[32,3],[33,24],[2,124],[32,24],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,10],[32,11],[33,14],[33,15],[32,5],[32,5],[68,0,0,0,0,0,0,240,63],[160],[33,5],[65,1],[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[32,23],[252,3],[34,20],[65,3],[108],[65,2],[106],[45,0,128,128,16,"read func lut"],[34,21],[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],[32,20],[65,3],[108],[47,0,128,128,16,"read func lut"],[14,4,0,1,2,3,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"no_type_return","constr"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,20],[17,0,0,"constr"],[33,22],[5],[32,20],[17,0,0],[33,22],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,20],[17,1,0,"constr"],[33,22],[5],[32,15],[32,14],[32,20],[17,1,0],[33,22],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,20],[17,2,0],[33,22],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return","constr"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[65,0],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0,"constr"],[33,22],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,3,0],[33,22],[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,12],[32,22],[33,13],[32,4],[65,7],[32,12],[32,13],[16, ...builtin('__Object_hasOwn')],[33,22],[33,25],[32,22],[33,24],[2,124],[32,24],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,24],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,25],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,25],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[16, ...builtin('__Porffor_allocate')],[183],[33,26],[32,4],[33,29],[32,12],[33,30],[32,29],[252,3],[65,7],[32,30],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[32,26],[65,208,0],[16, ...builtin('__Porffor_object_set')],[26],[26],[11],[32,4],[33,29],[32,12],[33,32],[32,29],[252,3],[65,7],[32,32],[32,13],[16, ...builtin('__ecma262_ToPropertyKey')],[33,31],[252,3],[32,31],[16, ...builtin('__Porffor_object_get')],[33,22],[33,34],[32,22],[34,35],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,34],[32,35],[65,128,128,20],[65,1],[54,1,0],[65,128,128,20],[32,10],[57,0,4],[65,128,128,20],[32,11],[58,0,12],[68,0,0,0,0,0,0,20,65],[65,208,0],[16, ...builtin('__Array_prototype_push')],[33,22],[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]],
|
package/package.json
CHANGED