porffor 0.24.2 → 0.24.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.
@@ -522,10 +522,11 @@ export const __Number_prototype_valueOf = (_this: number) => {
522
522
  };
523
523
 
524
524
 
525
- export const parseInt = (input: string|bytestring, radix: number): f64 => {
525
+ export const parseInt = (input: string|bytestring, radix: any): f64 => {
526
526
  // todo/perf: optimize this instead of doing a naive algo (https://kholdstare.github.io/technical/2020/05/26/faster-integer-parsing.html)
527
527
  // todo/perf: use i32s here once that becomes not annoying
528
528
 
529
+ radix = ecma262.ToIntegerOrInfinity(radix);
529
530
  if (radix == 0) radix = 10;
530
531
  if (radix < 2 || radix > 36) return NaN;
531
532
 
@@ -658,4 +659,4 @@ export const parseInt = (input: string|bytestring, radix: number): f64 => {
658
659
  return n;
659
660
  };
660
661
 
661
- export const __Number_parseInt = (input: string|bytestring, radix: number): f64 => parseInt(input, radix);
662
+ export const __Number_parseInt = (input: any, radix: any): f64 => parseInt(input, radix);
@@ -208,61 +208,6 @@ export const __Object_assign = (target: any, ...sources: any[]) => {
208
208
  return target;
209
209
  };
210
210
 
211
- export const __Object_defineProperty = (target: any, prop: any, descriptor: any) => {
212
- if (!Porffor.object.isObject(target)) throw new TypeError('Target is a non-object');
213
- if (!Porffor.object.isObject(descriptor)) throw new TypeError('Descriptor is a non-object');
214
-
215
- const p: any = ecma262.ToPropertyKey(prop);
216
-
217
- const desc: object = descriptor;
218
-
219
- // base keys
220
- const configurable: any = desc.configurable; // defaults to false/undefined
221
- const enumerable: any = desc.enumerable; // defaults to false/undefined
222
-
223
- // data descriptor keys
224
- const value: any = desc.value;
225
- const writable: any = desc.writable;
226
-
227
- const get: any = desc.get;
228
- const set: any = desc.set;
229
-
230
- let accessor: boolean = false;
231
-
232
- // todo: should check if has attributes not if undefined
233
- if (get !== undefined || set !== undefined) {
234
- if (get !== undefined && Porffor.rawType(get) != Porffor.TYPES.function) throw new TypeError('Getter must be a function');
235
- if (set !== undefined && Porffor.rawType(set) != Porffor.TYPES.function) throw new TypeError('Setter must be a function');
236
-
237
- if (value !== undefined || writable !== undefined) {
238
- throw new TypeError('Descriptor cannot define both accessor and data descriptor attributes');
239
- }
240
-
241
- accessor = true;
242
- value = Porffor.object.packAccessor(get, set);
243
- }
244
-
245
- let flags: i32 = 0b0000;
246
- if (accessor) flags |= 0b0001;
247
- if (configurable) flags |= 0b0010;
248
- if (enumerable) flags |= 0b0100;
249
- if (writable) flags |= 0b1000;
250
-
251
- Porffor.object.define(target, p, value, flags);
252
- return target;
253
- };
254
-
255
- export const __Object_defineProperties = (target: any, props: any) => {
256
- if (!Porffor.object.isObject(target)) throw new TypeError('Target is a non-object');
257
- if (!Porffor.object.isObjectOrSymbol(props)) throw new TypeError('Props needs to be an object or symbol');
258
-
259
- for (const x in props) {
260
- __Object_defineProperty(target, x, props[x]);
261
- }
262
-
263
- return target;
264
- };
265
-
266
211
 
267
212
  export const __Object_prototype_propertyIsEnumerable = (_this: any, prop: any) => {
268
213
  const p: any = ecma262.ToPropertyKey(prop);
@@ -298,20 +243,6 @@ export const __Object_is = (x: any, y: any): boolean => {
298
243
  return false;
299
244
  };
300
245
 
301
- export const __Object_create = (proto: any, props: any) => {
302
- if (!Porffor.object.isObject(proto)) {
303
- if (proto !== null) throw new TypeError('Prototype should be an object or null');
304
- }
305
-
306
- const out: object = {};
307
-
308
- // todo: set prototype when supported
309
-
310
- if (props !== undefined) __Object_defineProperties(out, props);
311
-
312
- return out;
313
- };
314
-
315
246
 
316
247
  export const __Object_preventExtensions = (obj: any): any => {
317
248
  // todo: support non-pure-objects
@@ -599,6 +530,93 @@ local.set ${key}`;
599
530
  };
600
531
 
601
532
 
533
+ export const __Object_defineProperty = (target: any, prop: any, descriptor: any) => {
534
+ if (!Porffor.object.isObject(target)) throw new TypeError('Target is a non-object');
535
+ if (!Porffor.object.isObject(descriptor)) throw new TypeError('Descriptor is a non-object');
536
+
537
+ const p: any = ecma262.ToPropertyKey(prop);
538
+
539
+ const desc: object = descriptor;
540
+
541
+ // base keys
542
+ let configurable: any = desc.configurable;
543
+ let enumerable: any = desc.enumerable;
544
+
545
+ // data descriptor keys
546
+ let value: any = desc.value;
547
+ let writable: any = desc.writable;
548
+
549
+ let get: any = desc.get;
550
+ let set: any = desc.set;
551
+
552
+ let accessor: boolean = false;
553
+
554
+ // todo: should check if has attributes not if undefined
555
+ if (get !== undefined || set !== undefined) {
556
+ if (get !== undefined && Porffor.rawType(get) != Porffor.TYPES.function) throw new TypeError('Getter must be a function');
557
+ if (set !== undefined && Porffor.rawType(set) != Porffor.TYPES.function) throw new TypeError('Setter must be a function');
558
+
559
+ if (value !== undefined || writable !== undefined) {
560
+ throw new TypeError('Descriptor cannot define both accessor and data descriptor attributes');
561
+ }
562
+
563
+ accessor = true;
564
+ }
565
+
566
+ const existingDesc: any = __Object_getOwnPropertyDescriptor(target, prop);
567
+ if (existingDesc) {
568
+ configurable ??= existingDesc.configurable;
569
+ enumerable ??= existingDesc.enumerable;
570
+
571
+ if (accessor) {
572
+ get ??= existingDesc.get;
573
+ set ??= existingDesc.set;
574
+ } else {
575
+ value ??= existingDesc.value;
576
+ writable ??= existingDesc.value;
577
+ }
578
+ }
579
+
580
+ let flags: i32 = 0b0000;
581
+ if (accessor) flags |= 0b0001;
582
+ if (configurable) flags |= 0b0010;
583
+ if (enumerable) flags |= 0b0100;
584
+ if (writable) flags |= 0b1000;
585
+
586
+ if (accessor) {
587
+ value = Porffor.object.packAccessor(get, set);
588
+ }
589
+
590
+ Porffor.object.define(target, p, value, flags);
591
+ return target;
592
+ };
593
+
594
+ export const __Object_defineProperties = (target: any, props: any) => {
595
+ if (!Porffor.object.isObject(target)) throw new TypeError('Target is a non-object');
596
+ if (!Porffor.object.isObjectOrSymbol(props)) throw new TypeError('Props needs to be an object or symbol');
597
+
598
+ for (const x in props) {
599
+ __Object_defineProperty(target, x, props[x]);
600
+ }
601
+
602
+ return target;
603
+ };
604
+
605
+ export const __Object_create = (proto: any, props: any) => {
606
+ if (!Porffor.object.isObject(proto)) {
607
+ if (proto !== null) throw new TypeError('Prototype should be an object or null');
608
+ }
609
+
610
+ const out: object = {};
611
+
612
+ // todo: set prototype when supported
613
+
614
+ if (props !== undefined) __Object_defineProperties(out, props);
615
+
616
+ return out;
617
+ };
618
+
619
+
602
620
  export const __Object_groupBy = (items: any, callbackFn: any) => {
603
621
  const out: object = {};
604
622
 
@@ -1681,13 +1681,13 @@ export const BuiltinFuncs = function() {
1681
1681
  locals: [], localNames: ["_this","_this#type"],
1682
1682
  };
1683
1683
  this.parseInt = {
1684
- wasm: (scope, {builtin}) => [[32,2],[68,0,0,0,0,0,0,0,0],[97],[4,64],[68,0,0,0,0,0,0,36,64],[33,2],[11],[32,2],[68,0,0,0,0,0,0,0,64],[99],[34,4],[69],[4,127],[32,2],[68,0,0,0,0,0,0,66,64],[100],[65,2],[33,5],[5],[32,4],[65,2],[33,5],[11],[4,64],[68,0,0,0,0,0,0,248,127],[65,1],[15],[11],[68,0,0,0,0,0,0,77,64],[33,6],[32,2],[68,0,0,0,0,0,0,36,64],[99],[4,64],[68,0,0,0,0,0,0,72,64],[32,2],[160],[33,6],[11],[68,0,0,0,0,0,0,248,127],[33,7],[32,0],[34,8],[252,2],[40,0,0],[183],[33,9],[32,8],[33,10],[68,0,0,0,0,0,0,0,0],[33,11],[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,96,104,64],[97],[4,64],[32,10],[32,9],[160],[33,12],[32,10],[252,2],[45,0,4],[183],[34,13],[68,0,0,0,0,0,128,69,64],[97],[4,64],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[11],[32,13],[68,0,0,0,0,0,128,70,64],[97],[4,64],[68,0,0,0,0,0,0,240,63],[33,11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[11],[32,13],[68,0,0,0,0,0,0,72,64],[97],[4,64],[32,10],[68,0,0,0,0,0,0,240,63],[160],[252,2],[45,0,4],[183],[34,14],[68,0,0,0,0,0,0,94,64],[97],[34,4],[69],[4,127],[32,14],[68,0,0,0,0,0,0,86,64],[97],[65,2],[33,5],[5],[32,4],[65,2],[33,5],[11],[4,64],[32,10],[68,0,0,0,0,0,0,0,64],[160],[33,10],[68,0,0,0,0,0,0,48,64],[33,2],[11],[11],[3,64],[32,10],[32,12],[99],[4,64],[32,10],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[252,2],[45,0,4],[183],[34,15],[68,0,0,0,0,0,0,72,64],[102],[34,4],[4,127],[32,15],[32,6],[99],[65,2],[33,5],[5],[32,4],[65,2],[33,5],[11],[4,64],[32,7],[16, ...builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,0,72,64],[161],[160],[33,7],[5],[32,2],[68,0,0,0,0,0,0,36,64],[100],[4,64],[32,15],[68,0,0,0,0,0,64,88,64],[102],[34,4],[4,127],[32,15],[68,0,0,0,0,0,192,85,64],[32,2],[160],[99],[65,2],[33,5],[5],[32,4],[65,2],[33,5],[11],[4,64],[32,7],[16, ...builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,192,85,64],[161],[160],[33,7],[5],[32,15],[68,0,0,0,0,0,64,80,64],[102],[34,4],[4,127],[32,15],[68,0,0,0,0,0,128,75,64],[32,2],[160],[99],[65,2],[33,5],[5],[32,4],[65,2],[33,5],[11],[4,64],[32,7],[16, ...builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,128,75,64],[161],[160],[33,7],[5],[32,11],[252,3],[4,64],[32,7],[154],[65,1],[15],[11],[32,7],[65,1],[15],[11],[11],[5],[32,11],[252,3],[4,64],[32,7],[154],[65,1],[15],[11],[32,7],[65,1],[15],[11],[11],[12,1],[11],[11],[32,11],[252,3],[4,64],[32,7],[154],[65,1],[15],[11],[32,7],[65,1],[15],[11],[32,10],[32,9],[68,0,0,0,0,0,0,0,64],[162],[160],[33,12],[32,10],[252,2],[47,0,4],[183],[34,13],[68,0,0,0,0,0,128,69,64],[97],[4,64],[32,10],[68,0,0,0,0,0,0,0,64],[160],[33,10],[11],[32,13],[68,0,0,0,0,0,128,70,64],[97],[4,64],[68,0,0,0,0,0,0,240,63],[33,11],[32,10],[68,0,0,0,0,0,0,0,64],[160],[33,10],[11],[32,13],[68,0,0,0,0,0,0,72,64],[97],[4,64],[32,10],[68,0,0,0,0,0,0,0,64],[160],[252,2],[47,0,4],[183],[34,14],[68,0,0,0,0,0,0,94,64],[97],[34,4],[69],[4,127],[32,14],[68,0,0,0,0,0,0,86,64],[97],[65,2],[33,5],[5],[32,4],[65,2],[33,5],[11],[4,64],[32,10],[68,0,0,0,0,0,0,16,64],[160],[33,10],[68,0,0,0,0,0,0,48,64],[33,2],[11],[11],[3,64],[32,10],[32,12],[99],[4,64],[32,10],[252,2],[47,0,4],[183],[33,15],[32,10],[68,0,0,0,0,0,0,0,64],[160],[33,10],[32,15],[68,0,0,0,0,0,0,72,64],[102],[34,4],[4,127],[32,15],[32,6],[99],[65,2],[33,5],[5],[32,4],[65,2],[33,5],[11],[4,64],[32,7],[16, ...builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,0,72,64],[161],[160],[33,7],[5],[32,2],[68,0,0,0,0,0,0,36,64],[100],[4,64],[32,15],[68,0,0,0,0,0,64,88,64],[102],[34,4],[4,127],[32,15],[68,0,0,0,0,0,192,85,64],[32,2],[160],[99],[65,2],[33,5],[5],[32,4],[65,2],[33,5],[11],[4,64],[32,7],[16, ...builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,192,85,64],[161],[160],[33,7],[5],[32,15],[68,0,0,0,0,0,64,80,64],[102],[34,4],[4,127],[32,15],[68,0,0,0,0,0,128,75,64],[32,2],[160],[99],[65,2],[33,5],[5],[32,4],[65,2],[33,5],[11],[4,64],[32,7],[16, ...builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,128,75,64],[161],[160],[33,7],[5],[32,11],[252,3],[4,64],[32,7],[154],[65,1],[15],[11],[32,7],[65,1],[15],[11],[11],[5],[32,11],[252,3],[4,64],[32,7],[154],[65,1],[15],[11],[32,7],[65,1],[15],[11],[11],[12,1],[11],[11],[32,11],[252,3],[4,64],[32,7],[154],[65,1],[15],[11],[32,7],[65,1],[15]],
1684
+ wasm: (scope, {builtin}) => [[32,2],[32,3],[16, ...builtin('__ecma262_ToIntegerOrInfinity')],[33,3],[34,2],[68,0,0,0,0,0,0,0,0],[97],[4,64],[68,0,0,0,0,0,0,36,64],[34,2],[65,1],[33,3],[26],[11],[32,2],[68,0,0,0,0,0,0,0,64],[99],[34,5],[69],[4,127],[32,2],[68,0,0,0,0,0,0,66,64],[100],[65,2],[33,4],[5],[32,5],[65,2],[33,4],[11],[4,64],[68,0,0,0,0,0,0,248,127],[65,1],[15],[11],[68,0,0,0,0,0,0,77,64],[33,6],[32,2],[68,0,0,0,0,0,0,36,64],[99],[4,64],[68,0,0,0,0,0,0,72,64],[32,2],[160],[33,6],[11],[68,0,0,0,0,0,0,248,127],[33,7],[32,0],[34,8],[252,2],[40,0,0],[183],[33,9],[32,8],[33,10],[68,0,0,0,0,0,0,0,0],[33,11],[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,96,104,64],[97],[4,64],[32,10],[32,9],[160],[33,12],[32,10],[252,2],[45,0,4],[183],[34,13],[68,0,0,0,0,0,128,69,64],[97],[4,64],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[11],[32,13],[68,0,0,0,0,0,128,70,64],[97],[4,64],[68,0,0,0,0,0,0,240,63],[33,11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[11],[32,13],[68,0,0,0,0,0,0,72,64],[97],[4,64],[32,10],[68,0,0,0,0,0,0,240,63],[160],[252,2],[45,0,4],[183],[34,14],[68,0,0,0,0,0,0,94,64],[97],[34,5],[69],[4,127],[32,14],[68,0,0,0,0,0,0,86,64],[97],[65,2],[33,4],[5],[32,5],[65,2],[33,4],[11],[4,64],[32,10],[68,0,0,0,0,0,0,0,64],[160],[33,10],[68,0,0,0,0,0,0,48,64],[34,2],[65,1],[33,3],[26],[11],[11],[3,64],[32,10],[32,12],[99],[4,64],[32,10],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[252,2],[45,0,4],[183],[34,15],[68,0,0,0,0,0,0,72,64],[102],[34,5],[4,127],[32,15],[32,6],[99],[65,2],[33,4],[5],[32,5],[65,2],[33,4],[11],[4,64],[32,7],[16, ...builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,0,72,64],[161],[160],[33,7],[5],[32,2],[68,0,0,0,0,0,0,36,64],[100],[4,64],[32,15],[68,0,0,0,0,0,64,88,64],[102],[34,5],[4,127],[32,15],[68,0,0,0,0,0,192,85,64],[32,2],[160],[99],[65,2],[33,4],[5],[32,5],[65,2],[33,4],[11],[4,64],[32,7],[16, ...builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,192,85,64],[161],[160],[33,7],[5],[32,15],[68,0,0,0,0,0,64,80,64],[102],[34,5],[4,127],[32,15],[68,0,0,0,0,0,128,75,64],[32,2],[160],[99],[65,2],[33,4],[5],[32,5],[65,2],[33,4],[11],[4,64],[32,7],[16, ...builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,128,75,64],[161],[160],[33,7],[5],[32,11],[252,3],[4,64],[32,7],[154],[65,1],[15],[11],[32,7],[65,1],[15],[11],[11],[5],[32,11],[252,3],[4,64],[32,7],[154],[65,1],[15],[11],[32,7],[65,1],[15],[11],[11],[12,1],[11],[11],[32,11],[252,3],[4,64],[32,7],[154],[65,1],[15],[11],[32,7],[65,1],[15],[11],[32,10],[32,9],[68,0,0,0,0,0,0,0,64],[162],[160],[33,12],[32,10],[252,2],[47,0,4],[183],[34,13],[68,0,0,0,0,0,128,69,64],[97],[4,64],[32,10],[68,0,0,0,0,0,0,0,64],[160],[33,10],[11],[32,13],[68,0,0,0,0,0,128,70,64],[97],[4,64],[68,0,0,0,0,0,0,240,63],[33,11],[32,10],[68,0,0,0,0,0,0,0,64],[160],[33,10],[11],[32,13],[68,0,0,0,0,0,0,72,64],[97],[4,64],[32,10],[68,0,0,0,0,0,0,0,64],[160],[252,2],[47,0,4],[183],[34,14],[68,0,0,0,0,0,0,94,64],[97],[34,5],[69],[4,127],[32,14],[68,0,0,0,0,0,0,86,64],[97],[65,2],[33,4],[5],[32,5],[65,2],[33,4],[11],[4,64],[32,10],[68,0,0,0,0,0,0,16,64],[160],[33,10],[68,0,0,0,0,0,0,48,64],[34,2],[65,1],[33,3],[26],[11],[11],[3,64],[32,10],[32,12],[99],[4,64],[32,10],[252,2],[47,0,4],[183],[33,15],[32,10],[68,0,0,0,0,0,0,0,64],[160],[33,10],[32,15],[68,0,0,0,0,0,0,72,64],[102],[34,5],[4,127],[32,15],[32,6],[99],[65,2],[33,4],[5],[32,5],[65,2],[33,4],[11],[4,64],[32,7],[16, ...builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,0,72,64],[161],[160],[33,7],[5],[32,2],[68,0,0,0,0,0,0,36,64],[100],[4,64],[32,15],[68,0,0,0,0,0,64,88,64],[102],[34,5],[4,127],[32,15],[68,0,0,0,0,0,192,85,64],[32,2],[160],[99],[65,2],[33,4],[5],[32,5],[65,2],[33,4],[11],[4,64],[32,7],[16, ...builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,192,85,64],[161],[160],[33,7],[5],[32,15],[68,0,0,0,0,0,64,80,64],[102],[34,5],[4,127],[32,15],[68,0,0,0,0,0,128,75,64],[32,2],[160],[99],[65,2],[33,4],[5],[32,5],[65,2],[33,4],[11],[4,64],[32,7],[16, ...builtin('__Number_isNaN')],[252,3],[4,64],[68,0,0,0,0,0,0,0,0],[33,7],[11],[32,7],[32,2],[162],[34,7],[32,15],[68,0,0,0,0,0,128,75,64],[161],[160],[33,7],[5],[32,11],[252,3],[4,64],[32,7],[154],[65,1],[15],[11],[32,7],[65,1],[15],[11],[11],[5],[32,11],[252,3],[4,64],[32,7],[154],[65,1],[15],[11],[32,7],[65,1],[15],[11],[11],[12,1],[11],[11],[32,11],[252,3],[4,64],[32,7],[154],[65,1],[15],[11],[32,7],[65,1],[15]],
1685
1685
  params: [124,127,124,127], typedParams: 1,
1686
1686
  returns: [124,127], typedReturns: 1,
1687
- locals: [127,127,124,124,124,124,124,124,124,124,124,124], localNames: ["input","input#type","radix","radix#type","logictmpi","#last_type","nMax","n","inputPtr","len","i","negative","endPtr","startChr","second","chr"],
1687
+ locals: [127,127,124,124,124,124,124,124,124,124,124,124], localNames: ["input","input#type","radix","radix#type","#last_type","logictmpi","nMax","n","inputPtr","len","i","negative","endPtr","startChr","second","chr"],
1688
1688
  };
1689
1689
  this.__Number_parseInt = {
1690
- wasm: (scope, {builtin}) => [[32,0],[32,1],[32,2],[65,1],[16, ...builtin('parseInt')],[34,4],[15]],
1690
+ wasm: (scope, {builtin}) => [[32,0],[32,1],[32,2],[32,3],[16, ...builtin('parseInt')],[34,4],[15]],
1691
1691
  params: [124,127,124,127], typedParams: 1,
1692
1692
  returns: [124,127], typedReturns: 1,
1693
1693
  locals: [127], localNames: ["input","input#type","radix","radix#type","#last_type"],
@@ -1742,18 +1742,6 @@ export const BuiltinFuncs = function() {
1742
1742
  locals: [124,127,127,127,127,124,127,124,127,124,124,124,124,127,124,124,124,127,127,127,127], localNames: ["target","target#type","sources","sources#type","#logicinner_tmp","#typeswitch_tmp","forof_base_pointer","forof_length","forof_counter","x","x#type","keys","#last_type","vals","len","i","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#member_prop","#loadArray_offset","#member_allocd","#swap","#forof_allocd"],
1743
1743
  hasRestArgument: 1,
1744
1744
  };
1745
- this.__Object_defineProperty = {
1746
- wasm: (scope, {allocPage,builtin,internalThrow}) => [[32,0],[252,2],[32,1],[16, ...builtin('__Porffor_object_isObject')],[33,6],[183],[33,7],[32,6],[33,8],[2,124],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,7],[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,4],[252,2],[32,5],[16, ...builtin('__Porffor_object_isObject')],[33,6],[183],[33,7],[32,6],[33,8],[2,124],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,7],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Descriptor is a non-object`),[11],[32,2],[32,3],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[33,9],[32,4],[34,11],[33,14],...number(allocPage(scope, 'bytestring: __Object_defineProperty/#member_prop', 'i8') * pageSize, 124),[34,15],[252,3],[34,19],[65,12],[54,1,0],[32,19],[65,227,0],[58,0,4],[32,19],[65,239,0],[58,0,5],[32,19],[65,238,0],[58,0,6],[32,19],[65,230,0],[58,0,7],[32,19],[65,233,0],[58,0,8],[32,19],[65,231,0],[58,0,9],[32,19],[65,245,0],[58,0,10],[32,19],[65,242,0],[58,0,11],[32,19],[65,225,0],[58,0,12],[32,19],[65,226,0],[58,0,13],[32,19],[65,236,0],[58,0,14],[32,19],[65,229,0],[58,0,15],[32,19],[184],[33,15],[32,14],[252,3],[65,7],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,13],[33,12],[32,11],[33,14],[32,15],[252,3],[34,19],[65,10],[54,1,0],[32,19],[65,229,0],[58,0,4],[32,19],[65,238,0],[58,0,5],[32,19],[65,245,0],[58,0,6],[32,19],[65,237,0],[58,0,7],[32,19],[65,229,0],[58,0,8],[32,19],[65,242,0],[58,0,9],[32,19],[65,225,0],[58,0,10],[32,19],[65,226,0],[58,0,11],[32,19],[65,236,0],[58,0,12],[32,19],[65,229,0],[58,0,13],[32,19],[184],[33,15],[32,14],[252,3],[65,7],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,21],[33,20],[32,11],[33,14],[32,15],[252,3],[34,19],[65,5],[54,1,0],[32,19],[65,246,0],[58,0,4],[32,19],[65,225,0],[58,0,5],[32,19],[65,236,0],[58,0,6],[32,19],[65,245,0],[58,0,7],[32,19],[65,229,0],[58,0,8],[32,19],[184],[33,15],[32,14],[252,3],[65,7],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,23],[33,22],[32,11],[33,14],[32,15],[252,3],[34,19],[65,8],[54,1,0],[32,19],[65,247,0],[58,0,4],[32,19],[65,242,0],[58,0,5],[32,19],[65,233,0],[58,0,6],[32,19],[65,244,0],[58,0,7],[32,19],[65,225,0],[58,0,8],[32,19],[65,226,0],[58,0,9],[32,19],[65,236,0],[58,0,10],[32,19],[65,229,0],[58,0,11],[32,19],[184],[33,15],[32,14],[252,3],[65,7],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,25],[33,24],[32,11],[33,14],[32,15],[252,3],[34,19],[65,3],[54,1,0],[32,19],[65,231,0],[58,0,4],[32,19],[65,229,0],[58,0,5],[32,19],[65,244,0],[58,0,6],[32,19],[184],[33,15],[32,14],[252,3],[65,7],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,27],[33,26],[32,11],[33,14],[32,15],[252,3],[34,19],[65,3],[54,1,0],[32,19],[65,243,0],[58,0,4],[32,19],[65,229,0],[58,0,5],[32,19],[65,244,0],[58,0,6],[32,19],[184],[33,15],[32,14],[252,3],[65,7],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,29],[33,28],[68,0,0,0,0,0,0,0,0],[33,30],[32,26],[68,0,0,0,0,0,0,0,0],[98],[32,27],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[34,31],[69],[4,127],[32,28],[68,0,0,0,0,0,0,0,0],[98],[32,29],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[65,2],[33,6],[5],[32,31],[65,2],[33,6],[11],[4,64],[32,26],[68,0,0,0,0,0,0,0,0],[98],[32,27],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[34,31],[4,127],[32,26],[32,27],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,24,64],[98],[65,2],[33,6],[5],[32,31],[65,2],[33,6],[11],[4,64],...internalThrow(scope, 'TypeError', `Getter must be a function`),[11],[32,28],[68,0,0,0,0,0,0,0,0],[98],[32,29],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[34,31],[4,127],[32,28],[32,29],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,24,64],[98],[65,2],[33,6],[5],[32,31],[65,2],[33,6],[11],[4,64],...internalThrow(scope, 'TypeError', `Setter must be a function`),[11],[32,22],[68,0,0,0,0,0,0,0,0],[98],[32,23],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[34,31],[69],[4,127],[32,24],[68,0,0,0,0,0,0,0,0],[98],[32,25],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[65,2],[33,6],[5],[32,31],[65,2],[33,6],[11],[4,64],...internalThrow(scope, 'TypeError', `Descriptor cannot define both accessor and data descriptor attributes`),[11],[68,0,0,0,0,0,0,240,63],[33,30],[32,26],[252,2],[32,27],[32,28],[252,2],[32,29],[16, ...builtin('__Porffor_object_packAccessor')],[33,23],[33,22],[11],[68,0,0,0,0,0,0,0,0],[33,32],[32,30],[252,3],[4,64],[32,32],[68,0,0,0,0,0,0,240,63],[16, ...builtin('f64_|')],[33,32],[11],[32,12],[33,7],[32,13],[33,8],[2,127],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,7],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,32],[68,0,0,0,0,0,0,0,64],[16, ...builtin('f64_|')],[33,32],[11],[32,20],[33,7],[32,21],[33,8],[2,127],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,7],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,32],[68,0,0,0,0,0,0,16,64],[16, ...builtin('f64_|')],[33,32],[11],[32,24],[33,7],[32,25],[33,8],[2,127],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,7],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,32],[68,0,0,0,0,0,0,32,64],[16, ...builtin('f64_|')],[33,32],[11],[32,0],[252,2],[32,1],[32,9],[252,2],[32,10],[32,22],[32,23],[32,32],[252,2],[65,1],[16, ...builtin('__Porffor_object_define')],[33,6],[183],[26],[32,0],[32,1],[15]],
1747
- params: [124,127,124,127,124,127], typedParams: 1,
1748
- returns: [124,127], typedReturns: 1,
1749
- locals: [127,124,127,124,127,124,124,127,124,124,127,127,127,127,124,127,124,127,124,127,124,127,124,127,124,127,124], localNames: ["target","target#type","prop","prop#type","descriptor","descriptor#type","#last_type","#logicinner_tmp","#typeswitch_tmp","p","p#type","desc","configurable","configurable#type","#member_obj","#member_prop","#loadArray_offset","#member_allocd","#swap","#makearray_pointer_tmp","enumerable","enumerable#type","value","value#type","writable","writable#type","get","get#type","set","set#type","accessor","logictmpi","flags"],
1750
- };
1751
- this.__Object_defineProperties = {
1752
- 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],[32,2],[252,2],[32,3],[16, ...builtin('__Porffor_object_isObjectOrSymbol')],[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', `Props needs to be an object or symbol`),[11],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[34,8],[4,64],[32,3],[33,6],[2,64],[32,6],[65,7],[70],[4,64,"TYPESWITCH|Object"],[3,64],[32,7],[40,0,5],[34,12],[65,31],[118],[4,127],[32,12],[65,255,255,255,255,7],[113],[33,12],[65,67],[5],[65,195,1],[11],[33,11],[32,12],[184],[33,10],[2,64],[2,64],[32,0],[32,1],[32,10],[32,11],[32,2],[33,13],[32,10],[33,14],[32,3],[33,6],[2,124],[32,6],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,13],[252,3],[32,3],[32,14],[32,11],[16, ...builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[16, ...builtin('__Porffor_object_get')],[33,4],[12,1],[11],[32,6],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,13],[252,3],[32,3],[32,14],[32,11],[16, ...builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[16, ...builtin('__Porffor_object_get')],[33,4],[12,1],[11],[32,6],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[16, ...builtin('__Porffor_allocate')],[34,16],[65,1],[54,0,0],[32,16],[32,14],[252,3],[65,2],[108],[32,13],[252,3],[106],[47,0,4],[59,0,4],[32,16],[184],[65,195,0],[33,4],[12,1],[11],[32,6],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,14],[252,3],[65,9],[108],[32,13],[252,3],[106],[34,15],[43,0,4],[32,15],[45,0,12],[33,4],[12,1],[11],[32,6],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[106],[45,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[106],[44,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[106],[45,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,4],[12,1],[11],[32,6],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,4],[12,1],[11],[32,6],[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,6],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[16, ...builtin('__Porffor_allocate')],[34,16],[65,1],[54,0,0],[32,16],[32,14],[252,3],[32,13],[252,3],[106],[45,0,4],[58,0,4],[32,16],[184],[65,195,1],[33,4],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,4],[11,"TYPESWITCH_end"],[32,4],[16, ...builtin('__Object_defineProperty')],[33,4],[26],[11],[32,7],[65,14],[106],[33,7],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..in on unsupported type`),[11,"TYPESWITCH_end"],[11],[32,0],[32,1],[15]],
1753
- params: [124,127,124,127], typedParams: 1,
1754
- returns: [124,127], typedReturns: 1,
1755
- locals: [127,124,127,127,127,127,124,127,127,124,124,127,127,127], localNames: ["target","target#type","props","props#type","#last_type","#logicinner_tmp","#typeswitch_tmp","#forin_base_pointer","#forin_length","#forin_counter","x","x#type","#forin_tmp","#member_obj","#member_prop","#loadArray_offset","#member_allocd","#swap"],
1756
- };
1757
1745
  this.__Object_prototype_propertyIsEnumerable = {
1758
1746
  wasm: (scope, {builtin}) => [[32,2],[32,3],[16, ...builtin('__ecma262_ToPropertyKey')],[33,5],[33,4],[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[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],[34,8],[68,0,0,0,0,0,0,240,191],[97],[4,64],[68,0,0,0,0,0,0,0,0],[65,2],[15],[11],[32,8],[252,2],[65,1],[16, ...builtin('__Porffor_object_isEnumerable')],[33,6],[183],[32,6],[15],[11],[32,0],[32,1],[16, ...builtin('__Object_keys')],[26],[34,9],[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]],
1759
1747
  params: [124,127,124,127], typedParams: 1,
@@ -1766,12 +1754,6 @@ export const BuiltinFuncs = function() {
1766
1754
  returns: [124,127], typedReturns: 1,
1767
1755
  locals: [124,124,127,127,127,127,127,124,127,124,127], localNames: ["x","x#type","y","y#type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end","logictmp","#last_type","#logicinner_tmp","#typeswitch_tmp"],
1768
1756
  };
1769
- this.__Object_create = {
1770
- 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],[32,0],[68,0,0,0,0,0,0,0,0],[98],[32,1],[65,128,1],[114],[65,7],[65,128,1],[114],[71],[114],[4,64],...internalThrow(scope, 'TypeError', `Prototype should be an object or null`),[11],[11],[16, ...builtin('__Porffor_allocate')],[184],[33,7],[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]],
1771
- params: [124,127,124,127], typedParams: 1,
1772
- returns: [124,127], typedReturns: 1,
1773
- locals: [127,124,127,124], localNames: ["proto","proto#type","props","props#type","#last_type","#logicinner_tmp","#typeswitch_tmp","out"],
1774
- };
1775
1757
  this.__Object_preventExtensions = {
1776
1758
  wasm: (scope, {builtin}) => [[32,0],[32,1],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,28,64],[98],[4,64],[32,0],[32,1],[15],[11],[32,0],[252,2],[32,1],[16, ...builtin('__Porffor_object_preventExtensions')],[26],[183],[26],[32,0],[32,1],[15]],
1777
1759
  params: [124,127], typedParams: 1,
@@ -1832,6 +1814,24 @@ export const BuiltinFuncs = function() {
1832
1814
  returns: [124,127], typedReturns: 1,
1833
1815
  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"],
1834
1816
  };
1817
+ this.__Object_defineProperty = {
1818
+ wasm: (scope, {allocPage,builtin,internalThrow}) => [[32,0],[252,2],[32,1],[16, ...builtin('__Porffor_object_isObject')],[33,6],[183],[33,7],[32,6],[33,8],[2,124],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,7],[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,4],[252,2],[32,5],[16, ...builtin('__Porffor_object_isObject')],[33,6],[183],[33,7],[32,6],[33,8],[2,124],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,7],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Descriptor is a non-object`),[11],[32,2],[32,3],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[33,9],[32,4],[34,11],[33,14],...number(allocPage(scope, 'bytestring: __Object_defineProperty/#member_prop', 'i8') * pageSize, 124),[34,15],[252,3],[34,19],[65,12],[54,1,0],[32,19],[65,227,0],[58,0,4],[32,19],[65,239,0],[58,0,5],[32,19],[65,238,0],[58,0,6],[32,19],[65,230,0],[58,0,7],[32,19],[65,233,0],[58,0,8],[32,19],[65,231,0],[58,0,9],[32,19],[65,245,0],[58,0,10],[32,19],[65,242,0],[58,0,11],[32,19],[65,225,0],[58,0,12],[32,19],[65,226,0],[58,0,13],[32,19],[65,236,0],[58,0,14],[32,19],[65,229,0],[58,0,15],[32,19],[184],[33,15],[32,14],[252,3],[65,7],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,13],[33,12],[32,11],[33,14],[32,15],[252,3],[34,19],[65,10],[54,1,0],[32,19],[65,229,0],[58,0,4],[32,19],[65,238,0],[58,0,5],[32,19],[65,245,0],[58,0,6],[32,19],[65,237,0],[58,0,7],[32,19],[65,229,0],[58,0,8],[32,19],[65,242,0],[58,0,9],[32,19],[65,225,0],[58,0,10],[32,19],[65,226,0],[58,0,11],[32,19],[65,236,0],[58,0,12],[32,19],[65,229,0],[58,0,13],[32,19],[184],[33,15],[32,14],[252,3],[65,7],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,21],[33,20],[32,11],[33,14],[32,15],[252,3],[34,19],[65,5],[54,1,0],[32,19],[65,246,0],[58,0,4],[32,19],[65,225,0],[58,0,5],[32,19],[65,236,0],[58,0,6],[32,19],[65,245,0],[58,0,7],[32,19],[65,229,0],[58,0,8],[32,19],[184],[33,15],[32,14],[252,3],[65,7],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,23],[33,22],[32,11],[33,14],[32,15],[252,3],[34,19],[65,8],[54,1,0],[32,19],[65,247,0],[58,0,4],[32,19],[65,242,0],[58,0,5],[32,19],[65,233,0],[58,0,6],[32,19],[65,244,0],[58,0,7],[32,19],[65,225,0],[58,0,8],[32,19],[65,226,0],[58,0,9],[32,19],[65,236,0],[58,0,10],[32,19],[65,229,0],[58,0,11],[32,19],[184],[33,15],[32,14],[252,3],[65,7],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,25],[33,24],[32,11],[33,14],[32,15],[252,3],[34,19],[65,3],[54,1,0],[32,19],[65,231,0],[58,0,4],[32,19],[65,229,0],[58,0,5],[32,19],[65,244,0],[58,0,6],[32,19],[184],[33,15],[32,14],[252,3],[65,7],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,27],[33,26],[32,11],[33,14],[32,15],[252,3],[34,19],[65,3],[54,1,0],[32,19],[65,243,0],[58,0,4],[32,19],[65,229,0],[58,0,5],[32,19],[65,244,0],[58,0,6],[32,19],[184],[33,15],[32,14],[252,3],[65,7],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,29],[33,28],[68,0,0,0,0,0,0,0,0],[33,30],[32,26],[68,0,0,0,0,0,0,0,0],[98],[32,27],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[34,31],[69],[4,127],[32,28],[68,0,0,0,0,0,0,0,0],[98],[32,29],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[65,2],[33,6],[5],[32,31],[65,2],[33,6],[11],[4,64],[32,26],[68,0,0,0,0,0,0,0,0],[98],[32,27],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[34,31],[4,127],[32,26],[32,27],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,24,64],[98],[65,2],[33,6],[5],[32,31],[65,2],[33,6],[11],[4,64],...internalThrow(scope, 'TypeError', `Getter must be a function`),[11],[32,28],[68,0,0,0,0,0,0,0,0],[98],[32,29],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[34,31],[4,127],[32,28],[32,29],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,24,64],[98],[65,2],[33,6],[5],[32,31],[65,2],[33,6],[11],[4,64],...internalThrow(scope, 'TypeError', `Setter must be a function`),[11],[32,22],[68,0,0,0,0,0,0,0,0],[98],[32,23],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[34,31],[69],[4,127],[32,24],[68,0,0,0,0,0,0,0,0],[98],[32,25],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[65,2],[33,6],[5],[32,31],[65,2],[33,6],[11],[4,64],...internalThrow(scope, 'TypeError', `Descriptor cannot define both accessor and data descriptor attributes`),[11],[68,0,0,0,0,0,0,240,63],[33,30],[11],[32,0],[32,1],[32,2],[32,3],[16, ...builtin('__Object_getOwnPropertyDescriptor')],[33,33],[34,32],[33,7],[32,33],[33,8],[2,127],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,7],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,12],[34,34],[33,7],[32,13],[33,8],[2,127],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,7],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,8],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[32,32],[33,14],[32,15],[252,3],[34,19],[65,12],[54,1,0],[32,19],[65,227,0],[58,0,4],[32,19],[65,239,0],[58,0,5],[32,19],[65,238,0],[58,0,6],[32,19],[65,230,0],[58,0,7],[32,19],[65,233,0],[58,0,8],[32,19],[65,231,0],[58,0,9],[32,19],[65,245,0],[58,0,10],[32,19],[65,242,0],[58,0,11],[32,19],[65,225,0],[58,0,12],[32,19],[65,226,0],[58,0,13],[32,19],[65,236,0],[58,0,14],[32,19],[65,229,0],[58,0,15],[32,19],[184],[33,15],[32,33],[33,8],[2,124],[32,8],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,14],[252,3],[32,33],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,6],[12,1],[11],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,14],[252,3],[32,33],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,6],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[16, ...builtin('__Porffor_allocate')],[34,17],[65,1],[54,0,0],[32,17],[32,15],[252,3],[65,2],[108],[32,14],[252,3],[106],[47,0,4],[59,0,4],[32,17],[184],[65,195,0],[33,6],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,15],[252,3],[65,9],[108],[32,14],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,6],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[45,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[44,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[45,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,6],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,6],[12,1],[11],[32,8],[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,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[16, ...builtin('__Porffor_allocate')],[34,17],[65,1],[54,0,0],[32,17],[32,15],[252,3],[32,14],[252,3],[106],[45,0,4],[58,0,4],[32,17],[184],[65,195,1],[33,6],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,6],[11,"TYPESWITCH_end"],[34,12],[32,6],[33,6],[5],[32,34],[32,13],[33,6],[11],[32,12],[32,6],[33,13],[26],[26],[32,20],[34,34],[33,7],[32,21],[33,8],[2,127],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,7],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,8],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[32,32],[33,14],[32,15],[252,3],[34,19],[65,10],[54,1,0],[32,19],[65,229,0],[58,0,4],[32,19],[65,238,0],[58,0,5],[32,19],[65,245,0],[58,0,6],[32,19],[65,237,0],[58,0,7],[32,19],[65,229,0],[58,0,8],[32,19],[65,242,0],[58,0,9],[32,19],[65,225,0],[58,0,10],[32,19],[65,226,0],[58,0,11],[32,19],[65,236,0],[58,0,12],[32,19],[65,229,0],[58,0,13],[32,19],[184],[33,15],[32,33],[33,8],[2,124],[32,8],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,14],[252,3],[32,33],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,6],[12,1],[11],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,14],[252,3],[32,33],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,6],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[16, ...builtin('__Porffor_allocate')],[34,17],[65,1],[54,0,0],[32,17],[32,15],[252,3],[65,2],[108],[32,14],[252,3],[106],[47,0,4],[59,0,4],[32,17],[184],[65,195,0],[33,6],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,15],[252,3],[65,9],[108],[32,14],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,6],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[45,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[44,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[45,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,6],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,6],[12,1],[11],[32,8],[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,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[16, ...builtin('__Porffor_allocate')],[34,17],[65,1],[54,0,0],[32,17],[32,15],[252,3],[32,14],[252,3],[106],[45,0,4],[58,0,4],[32,17],[184],[65,195,1],[33,6],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,6],[11,"TYPESWITCH_end"],[34,20],[32,6],[33,6],[5],[32,34],[32,21],[33,6],[11],[32,20],[32,6],[33,21],[26],[26],[32,30],[252,3],[4,64],[32,26],[34,34],[33,7],[32,27],[33,8],[2,127],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,7],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,8],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[32,32],[33,14],[32,15],[252,3],[34,19],[65,3],[54,1,0],[32,19],[65,231,0],[58,0,4],[32,19],[65,229,0],[58,0,5],[32,19],[65,244,0],[58,0,6],[32,19],[184],[33,15],[32,33],[33,8],[2,124],[32,8],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,14],[252,3],[32,33],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,6],[12,1],[11],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,14],[252,3],[32,33],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,6],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[16, ...builtin('__Porffor_allocate')],[34,17],[65,1],[54,0,0],[32,17],[32,15],[252,3],[65,2],[108],[32,14],[252,3],[106],[47,0,4],[59,0,4],[32,17],[184],[65,195,0],[33,6],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,15],[252,3],[65,9],[108],[32,14],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,6],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[45,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[44,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[45,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,6],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,6],[12,1],[11],[32,8],[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,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[16, ...builtin('__Porffor_allocate')],[34,17],[65,1],[54,0,0],[32,17],[32,15],[252,3],[32,14],[252,3],[106],[45,0,4],[58,0,4],[32,17],[184],[65,195,1],[33,6],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,6],[11,"TYPESWITCH_end"],[34,26],[32,6],[33,6],[5],[32,34],[32,27],[33,6],[11],[32,26],[32,6],[33,27],[26],[26],[32,28],[34,34],[33,7],[32,29],[33,8],[2,127],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,7],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,8],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[32,32],[33,14],[32,15],[252,3],[34,19],[65,3],[54,1,0],[32,19],[65,243,0],[58,0,4],[32,19],[65,229,0],[58,0,5],[32,19],[65,244,0],[58,0,6],[32,19],[184],[33,15],[32,33],[33,8],[2,124],[32,8],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,14],[252,3],[32,33],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,6],[12,1],[11],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,14],[252,3],[32,33],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,6],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[16, ...builtin('__Porffor_allocate')],[34,17],[65,1],[54,0,0],[32,17],[32,15],[252,3],[65,2],[108],[32,14],[252,3],[106],[47,0,4],[59,0,4],[32,17],[184],[65,195,0],[33,6],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,15],[252,3],[65,9],[108],[32,14],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,6],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[45,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[44,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[45,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,6],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,6],[12,1],[11],[32,8],[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,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[16, ...builtin('__Porffor_allocate')],[34,17],[65,1],[54,0,0],[32,17],[32,15],[252,3],[32,14],[252,3],[106],[45,0,4],[58,0,4],[32,17],[184],[65,195,1],[33,6],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,6],[11,"TYPESWITCH_end"],[34,28],[32,6],[33,6],[5],[32,34],[32,29],[33,6],[11],[32,28],[32,6],[33,29],[26],[26],[5],[32,22],[34,34],[33,7],[32,23],[33,8],[2,127],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,7],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,8],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[32,32],[33,14],[32,15],[252,3],[34,19],[65,5],[54,1,0],[32,19],[65,246,0],[58,0,4],[32,19],[65,225,0],[58,0,5],[32,19],[65,236,0],[58,0,6],[32,19],[65,245,0],[58,0,7],[32,19],[65,229,0],[58,0,8],[32,19],[184],[33,15],[32,33],[33,8],[2,124],[32,8],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,14],[252,3],[32,33],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,6],[12,1],[11],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,14],[252,3],[32,33],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,6],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[16, ...builtin('__Porffor_allocate')],[34,17],[65,1],[54,0,0],[32,17],[32,15],[252,3],[65,2],[108],[32,14],[252,3],[106],[47,0,4],[59,0,4],[32,17],[184],[65,195,0],[33,6],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,15],[252,3],[65,9],[108],[32,14],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,6],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[45,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[44,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[45,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,6],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,6],[12,1],[11],[32,8],[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,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[16, ...builtin('__Porffor_allocate')],[34,17],[65,1],[54,0,0],[32,17],[32,15],[252,3],[32,14],[252,3],[106],[45,0,4],[58,0,4],[32,17],[184],[65,195,1],[33,6],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,6],[11,"TYPESWITCH_end"],[34,22],[32,6],[33,6],[5],[32,34],[32,23],[33,6],[11],[32,22],[32,6],[33,23],[26],[26],[32,24],[34,34],[33,7],[32,25],[33,8],[2,127],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,7],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,8],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[32,32],[33,14],[32,15],[252,3],[34,19],[65,5],[54,1,0],[32,19],[65,246,0],[58,0,4],[32,19],[65,225,0],[58,0,5],[32,19],[65,236,0],[58,0,6],[32,19],[65,245,0],[58,0,7],[32,19],[65,229,0],[58,0,8],[32,19],[184],[33,15],[32,33],[33,8],[2,124],[32,8],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,14],[252,3],[32,33],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,6],[12,1],[11],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,14],[252,3],[32,33],[32,15],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,18],[252,3],[32,18],[16, ...builtin('__Porffor_object_get')],[33,6],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[16, ...builtin('__Porffor_allocate')],[34,17],[65,1],[54,0,0],[32,17],[32,15],[252,3],[65,2],[108],[32,14],[252,3],[106],[47,0,4],[59,0,4],[32,17],[184],[65,195,0],[33,6],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,15],[252,3],[65,9],[108],[32,14],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,6],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[45,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[44,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[106],[45,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,6],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,6],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,6],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,14],[252,3],[40,0,4],[32,15],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,6],[12,1],[11],[32,8],[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,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[16, ...builtin('__Porffor_allocate')],[34,17],[65,1],[54,0,0],[32,17],[32,15],[252,3],[32,14],[252,3],[106],[45,0,4],[58,0,4],[32,17],[184],[65,195,1],[33,6],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,6],[11,"TYPESWITCH_end"],[34,24],[32,6],[33,6],[5],[32,34],[32,25],[33,6],[11],[32,24],[32,6],[33,25],[26],[26],[11],[11],[68,0,0,0,0,0,0,0,0],[33,35],[32,30],[252,3],[4,64],[32,35],[68,0,0,0,0,0,0,240,63],[16, ...builtin('f64_|')],[33,35],[11],[32,12],[33,7],[32,13],[33,8],[2,127],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,7],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,35],[68,0,0,0,0,0,0,0,64],[16, ...builtin('f64_|')],[33,35],[11],[32,20],[33,7],[32,21],[33,8],[2,127],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,7],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,35],[68,0,0,0,0,0,0,16,64],[16, ...builtin('f64_|')],[33,35],[11],[32,24],[33,7],[32,25],[33,8],[2,127],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,7],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,35],[68,0,0,0,0,0,0,32,64],[16, ...builtin('f64_|')],[33,35],[11],[32,30],[252,3],[4,64],[32,26],[252,2],[32,27],[32,28],[252,2],[32,29],[16, ...builtin('__Porffor_object_packAccessor')],[33,23],[33,22],[11],[32,0],[252,2],[32,1],[32,9],[252,2],[32,10],[32,22],[32,23],[32,35],[252,2],[65,1],[16, ...builtin('__Porffor_object_define')],[33,6],[183],[26],[32,0],[32,1],[15]],
1819
+ params: [124,127,124,127,124,127], typedParams: 1,
1820
+ returns: [124,127], typedReturns: 1,
1821
+ locals: [127,124,127,124,127,124,124,127,124,124,127,127,127,127,124,127,124,127,124,127,124,127,124,127,124,127,124,127,124,124], localNames: ["target","target#type","prop","prop#type","descriptor","descriptor#type","#last_type","#logicinner_tmp","#typeswitch_tmp","p","p#type","desc","configurable","configurable#type","#member_obj","#member_prop","#loadArray_offset","#member_allocd","#swap","#makearray_pointer_tmp","enumerable","enumerable#type","value","value#type","writable","writable#type","get","get#type","set","set#type","accessor","logictmpi","existingDesc","existingDesc#type","logictmp","flags"],
1822
+ };
1823
+ this.__Object_defineProperties = {
1824
+ 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],[32,2],[252,2],[32,3],[16, ...builtin('__Porffor_object_isObjectOrSymbol')],[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', `Props needs to be an object or symbol`),[11],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[34,8],[4,64],[32,3],[33,6],[2,64],[32,6],[65,7],[70],[4,64,"TYPESWITCH|Object"],[3,64],[32,7],[40,0,5],[34,12],[65,31],[118],[4,127],[32,12],[65,255,255,255,255,7],[113],[33,12],[65,67],[5],[65,195,1],[11],[33,11],[32,12],[184],[33,10],[2,64],[2,64],[32,0],[32,1],[32,10],[32,11],[32,2],[33,13],[32,10],[33,14],[32,3],[33,6],[2,124],[32,6],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,13],[252,3],[32,3],[32,14],[32,11],[16, ...builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[16, ...builtin('__Porffor_object_get')],[33,4],[12,1],[11],[32,6],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,13],[252,3],[32,3],[32,14],[32,11],[16, ...builtin('__ecma262_ToPropertyKey')],[33,17],[252,3],[32,17],[16, ...builtin('__Porffor_object_get')],[33,4],[12,1],[11],[32,6],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[16, ...builtin('__Porffor_allocate')],[34,16],[65,1],[54,0,0],[32,16],[32,14],[252,3],[65,2],[108],[32,13],[252,3],[106],[47,0,4],[59,0,4],[32,16],[184],[65,195,0],[33,4],[12,1],[11],[32,6],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,14],[252,3],[65,9],[108],[32,13],[252,3],[106],[34,15],[43,0,4],[32,15],[45,0,12],[33,4],[12,1],[11],[32,6],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[106],[45,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[106],[44,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[106],[45,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,4],[12,1],[11],[32,6],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,13],[252,3],[40,0,4],[32,14],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,4],[12,1],[11],[32,6],[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,6],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[16, ...builtin('__Porffor_allocate')],[34,16],[65,1],[54,0,0],[32,16],[32,14],[252,3],[32,13],[252,3],[106],[45,0,4],[58,0,4],[32,16],[184],[65,195,1],[33,4],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,4],[11,"TYPESWITCH_end"],[32,4],[16, ...builtin('__Object_defineProperty')],[33,4],[26],[11],[32,7],[65,14],[106],[33,7],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..in on unsupported type`),[11,"TYPESWITCH_end"],[11],[32,0],[32,1],[15]],
1825
+ params: [124,127,124,127], typedParams: 1,
1826
+ returns: [124,127], typedReturns: 1,
1827
+ locals: [127,124,127,127,127,127,124,127,127,124,124,127,127,127], localNames: ["target","target#type","props","props#type","#last_type","#logicinner_tmp","#typeswitch_tmp","#forin_base_pointer","#forin_length","#forin_counter","x","x#type","#forin_tmp","#member_obj","#member_prop","#loadArray_offset","#member_allocd","#swap"],
1828
+ };
1829
+ this.__Object_create = {
1830
+ 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],[32,0],[68,0,0,0,0,0,0,0,0],[98],[32,1],[65,128,1],[114],[65,7],[65,128,1],[114],[71],[114],[4,64],...internalThrow(scope, 'TypeError', `Prototype should be an object or null`),[11],[11],[16, ...builtin('__Porffor_allocate')],[184],[33,7],[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]],
1831
+ params: [124,127,124,127], typedParams: 1,
1832
+ returns: [124,127], typedReturns: 1,
1833
+ locals: [127,124,127,124], localNames: ["proto","proto#type","props","props#type","#last_type","#logicinner_tmp","#typeswitch_tmp","out"],
1834
+ };
1835
1835
  this.__Object_groupBy = {
1836
1836
  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,128,1],[108],[65,2],[106],[45,0,128,128,12,"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,128,1],[108],[47,0,128,128,12,"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,35],[32,22],[34,36],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,35],[32,36],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,10],[57,0,4],[65,128,128,16],[32,11],[58,0,12],[68,0,0,0,0,0,0,16,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],[16, ...builtin('__Porffor_allocate')],[34,37],[65,1],[54,0,0],[3,64],[32,37],[32,7],[47,0,4],[59,0,4],[32,37],[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,128,1],[108],[65,2],[106],[45,0,128,128,12,"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,128,1],[108],[47,0,128,128,12,"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,35],[32,22],[34,36],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,35],[32,36],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,10],[57,0,4],[65,128,128,16],[32,11],[58,0,12],[68,0,0,0,0,0,0,16,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,128,1],[108],[65,2],[106],[45,0,128,128,12,"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,128,1],[108],[47,0,128,128,12,"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,35],[32,22],[34,36],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,35],[32,36],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,10],[57,0,4],[65,128,128,16],[32,11],[58,0,12],[68,0,0,0,0,0,0,16,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,128,1],[108],[65,2],[106],[45,0,128,128,12,"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,128,1],[108],[47,0,128,128,12,"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,35],[32,22],[34,36],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,35],[32,36],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,10],[57,0,4],[65,128,128,16],[32,11],[58,0,12],[68,0,0,0,0,0,0,16,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,128,1],[108],[65,2],[106],[45,0,128,128,12,"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,128,1],[108],[47,0,128,128,12,"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,35],[32,22],[34,36],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,35],[32,36],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,10],[57,0,4],[65,128,128,16],[32,11],[58,0,12],[68,0,0,0,0,0,0,16,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,128,1],[108],[65,2],[106],[45,0,128,128,12,"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,128,1],[108],[47,0,128,128,12,"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,35],[32,22],[34,36],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,35],[32,36],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,10],[57,0,4],[65,128,128,16],[32,11],[58,0,12],[68,0,0,0,0,0,0,16,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,128,1],[108],[65,2],[106],[45,0,128,128,12,"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,128,1],[108],[47,0,128,128,12,"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,35],[32,22],[34,36],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,35],[32,36],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,10],[57,0,4],[65,128,128,16],[32,11],[58,0,12],[68,0,0,0,0,0,0,16,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,128,1],[108],[65,2],[106],[45,0,128,128,12,"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,128,1],[108],[47,0,128,128,12,"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,35],[32,22],[34,36],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,35],[32,36],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,10],[57,0,4],[65,128,128,16],[32,11],[58,0,12],[68,0,0,0,0,0,0,16,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,128,1],[108],[65,2],[106],[45,0,128,128,12,"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,128,1],[108],[47,0,128,128,12,"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,35],[32,22],[34,36],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,35],[32,36],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,10],[57,0,4],[65,128,128,16],[32,11],[58,0,12],[68,0,0,0,0,0,0,16,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,128,1],[108],[65,2],[106],[45,0,128,128,12,"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,128,1],[108],[47,0,128,128,12,"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,35],[32,22],[34,36],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,35],[32,36],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,10],[57,0,4],[65,128,128,16],[32,11],[58,0,12],[68,0,0,0,0,0,0,16,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,128,1],[108],[65,2],[106],[45,0,128,128,12,"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,128,1],[108],[47,0,128,128,12,"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,35],[32,22],[34,36],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,35],[32,36],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,10],[57,0,4],[65,128,128,16],[32,11],[58,0,12],[68,0,0,0,0,0,0,16,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,128,1],[108],[65,2],[106],[45,0,128,128,12,"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,128,1],[108],[47,0,128,128,12,"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,35],[32,22],[34,36],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,35],[32,36],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,10],[57,0,4],[65,128,128,16],[32,11],[58,0,12],[68,0,0,0,0,0,0,16,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],[16, ...builtin('__Porffor_allocate')],[34,37],[65,1],[54,0,0],[3,64],[32,37],[32,7],[32,9],[106],[45,0,4],[58,0,4],[32,37],[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,128,1],[108],[65,2],[106],[45,0,128,128,12,"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,128,1],[108],[47,0,128,128,12,"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,35],[32,22],[34,36],[33,24],[2,124],[32,24],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,35],[32,36],[65,128,128,16],[65,1],[54,1,0],[65,128,128,16],[32,10],[57,0,4],[65,128,128,16],[32,11],[58,0,12],[68,0,0,0,0,0,0,16,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]],
1837
1837
  params: [124,127,124,127], typedParams: 1,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "porffor",
3
3
  "description": "a basic experimental wip aot optimizing js -> wasm engine/compiler/runtime in js",
4
- "version": "0.24.2+c071f9a2f",
4
+ "version": "0.24.4+cf5eee48b",
5
5
  "author": "CanadaHonk",
6
6
  "license": "MIT",
7
7
  "scripts": {},
package/runner/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import fs from 'node:fs';
3
- globalThis.version = '0.24.2+c071f9a2f';
3
+ globalThis.version = '0.24.4+cf5eee48b';
4
4
 
5
5
  // deno compat
6
6
  if (typeof process === 'undefined' && typeof Deno !== 'undefined') {