porffor 0.40.3 → 0.40.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.
@@ -1,5 +1,5 @@
1
- const underlyingKeys: any[] = new Array(0);
2
- const underlyingVals: any[] = new Array(0);
1
+ const underlyingKeys: any[] = [];
2
+ const underlyingVals: any[] = [];
3
3
  export const __Porffor_object_underlying = (obj: any): any => {
4
4
  const t: i32 = Porffor.rawType(obj);
5
5
  if (t == Porffor.TYPES.object) return obj;
@@ -1,5 +1,37 @@
1
1
  import type {} from './porffor.d.ts';
2
2
 
3
+ export const Array = function (...args: any[]): any[] {
4
+ const argsLen: number = args.length;
5
+ if (argsLen == 0) {
6
+ // 0 args, new 0 length array
7
+ const out: any[] = Porffor.allocate();
8
+ return out;
9
+ }
10
+
11
+ if (argsLen == 1) {
12
+ // 1 arg, length (number) or first element (non-number)
13
+ const arg: any = args[0];
14
+ if (Porffor.rawType(arg) == Porffor.TYPES.number) {
15
+ // number so use as length
16
+ const n: number = args[0];
17
+ if (Porffor.fastOr(
18
+ n < 0, // negative
19
+ n > 4294967295, // over 2**32 - 1
20
+ !Number.isInteger(n) // non-integer/non-finite
21
+ )) throw new RangeError('Invalid array length');
22
+
23
+ const out: any[] = Porffor.allocate();
24
+ out.length = arg;
25
+ return out;
26
+ }
27
+
28
+ // not number, leave to fallthrough as same as >1
29
+ }
30
+
31
+ // >1 arg, just return args array
32
+ return args;
33
+ };
34
+
3
35
  export const __Array_isArray = (x: unknown): boolean =>
4
36
  Porffor.rawType(x) == Porffor.TYPES.array;
5
37
 
@@ -1,8 +1,6 @@
1
1
  import type {} from './porffor.d.ts';
2
2
 
3
3
  export const Object = function (value: any): object {
4
- new.target; // trick compiler into allowing as constructor
5
-
6
4
  if (value == null) {
7
5
  // if nullish, return new empty object
8
6
  const obj: object = Porffor.allocate();
@@ -8,7 +8,7 @@ export const __ecma262_NewPromiseReactionJob = (reaction: any[], argument: any):
8
8
  return job;
9
9
  };
10
10
 
11
- const jobQueue: any[] = new Array(0);
11
+ const jobQueue: any[] = [];
12
12
  export const __ecma262_HostEnqueuePromiseJob = (job: any[]): void => {
13
13
  Porffor.array.fastPush(jobQueue, job);
14
14
  };
@@ -1,6 +1,6 @@
1
1
  import type {} from './porffor.d.ts';
2
2
 
3
- const descStore: any[] = new Array(0);
3
+ const descStore: any[] = [];
4
4
 
5
5
  // 20.4.1.1 Symbol ([ description ])
6
6
  // https://tc39.es/ecma262/#sec-symbol-description
@@ -7,7 +7,7 @@ wasm:(_,{allocPage,glbl,builtin})=>[[32,1],[184],[34,2],[68,7],[97],[4,64],[32,0
7
7
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
8
8
  locals:[124,124,124,124,127,127,124,124,124,127,124,124,124,124,124,124,124,124,127,124,127,127],localNames:["obj","obj#type","t","remap","idx","#proto_target","#proto_target#type","#last_type","underlying","flags","proto","proto#type","key1","key2","arr","len","key3","i","#member_obj","#member_prop","#loadArray_offset","str","#makearray_pointer_tmp","#member_allocd"],
9
9
  usedTypes:[7,80,195,67],
10
- globalInits:{underlyingKeys:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingKeys','f64'),124),...glbl(36,'underlyingKeys',124),...glbl(35,'underlyingKeys',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],underlyingVals:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingVals','f64'),124),...glbl(36,'underlyingVals',124),...glbl(35,'underlyingVals',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},data:{"bytestring: __Porffor_object_underlying/key1":[9,0,0,0,112,114,111,116,111,116,121,112,101],"bytestring: __Porffor_object_underlying/key2":[11,0,0,0,99,111,110,115,116,114,117,99,116,111,114],"bytestring: __Porffor_object_underlying/key3":[6,0,0,0,108,101,110,103,116,104]},
10
+ globalInits:{underlyingKeys:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingKeys','f64'),124),...glbl(36,'underlyingKeys',124),...glbl(35,'underlyingKeys',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],underlyingVals:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingVals','f64'),124),...glbl(36,'underlyingVals',124),...glbl(35,'underlyingVals',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},data:{"bytestring: __Porffor_object_underlying/key1":[9,0,0,0,112,114,111,116,111,116,121,112,101],"bytestring: __Porffor_object_underlying/key2":[11,0,0,0,99,111,110,115,116,114,117,99,116,111,114],"bytestring: __Porffor_object_underlying/key3":[6,0,0,0,108,101,110,103,116,104]},
11
11
  };
12
12
  this.__Porffor_strcmp = {
13
13
  wasm:()=>[[32,0],[32,2],[70],[4,64],[65,1],[65,2],[15],[11],[32,0],[40,0,0],[33,4],[32,2],[40,0,0],[33,5],[32,4],[32,5],[71],[4,64],[65,0],[65,2],[15],[11],[32,1],[65,195,1],[70],[4,64],[32,3],[65,195,1],[70],[4,64],[32,0],[65,28],[107],[33,6],[32,2],[65,28],[107],[33,7],[32,0],[65,4],[107],[33,8],[32,2],[65,4],[107],[33,9],[32,4],[65,32],[78],[4,64],[3,64],[32,6],[32,4],[106],[253,0,0,0],[32,7],[32,4],[106],[253,0,0,0],[253,81],[32,6],[32,4],[106],[253,0,0,16],[32,7],[32,4],[106],[253,0,0,16],[253,81],[253,80],[253,83],[4,64],[65,0],[65,2],[15],[11],[32,4],[65,32],[107],[34,4],[65,32],[78],[13,0],[11],[11],[32,4],[65,8],[78],[4,64],[3,64],[32,8],[32,4],[106],[41,0,0],[32,9],[32,4],[106],[41,0,0],[82],[4,64],[65,0],[65,2],[15],[11],[32,4],[65,8],[107],[34,4],[65,8],[78],[13,0],[11],[11],[32,4],[65,2],[78],[4,64],[3,64],[32,0],[32,4],[106],[47,0,2],[32,2],[32,4],[106],[47,0,2],[71],[4,64],[65,0],[65,2],[15],[11],[32,4],[65,2],[107],[34,4],[65,2],[78],[13,0],[11],[11],[32,4],[65,1],[70],[4,64],[32,0],[45,0,4],[32,2],[45,0,4],[71],[4,64],[65,0],[65,2],[15],[11],[11],[65,1],[65,2],[15],[5],[65,0],[33,10],[3,64],[32,10],[32,4],[72],[4,64],[32,0],[32,10],[106],[45,0,4],[32,2],[32,10],[65,2],[108],[106],[47,0,4],[71],[4,64],[65,0],[65,2],[15],[11],[32,10],[65,1],[106],[33,10],[12,1],[11],[11],[65,1],[65,2],[15],[11],[5],[32,3],[65,195,1],[70],[4,64],[65,0],[33,10],[3,64],[32,10],[32,4],[72],[4,64],[32,0],[32,10],[65,2],[108],[106],[47,0,4],[32,2],[32,10],[106],[45,0,4],[71],[4,64],[65,0],[65,2],[15],[11],[32,10],[65,1],[106],[33,10],[12,1],[11],[11],[65,1],[65,2],[15],[5],[32,0],[65,4],[107],[33,11],[32,2],[65,4],[107],[33,12],[3,64],[32,11],[32,4],[65,2],[108],[106],[41,0,0],[32,12],[32,4],[65,2],[108],[106],[41,0,0],[82],[4,64],[65,0],[65,2],[15],[11],[32,4],[65,4],[107],[34,4],[65,4],[78],[13,0],[11],[65,0],[33,10],[3,64],[32,10],[32,4],[72],[4,64],[32,0],[32,10],[65,2],[108],[106],[47,0,4],[32,2],[32,10],[65,2],[108],[106],[47,0,4],[71],[4,64],[65,0],[65,2],[15],[11],[32,10],[65,1],[106],[33,10],[12,1],[11],[11],[65,1],[65,2],[15],[11],[11],[65,0],[65,128,1],[15]],
@@ -328,6 +328,13 @@ wasm:(_,{builtin})=>[[32,0],[32,1],[32,2],[32,3],[16,builtin('__String_prototype
328
328
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
329
329
  locals:[127],localNames:["_this","_this#type","arg","arg#type","#last_type"],
330
330
  };
331
+ this.Array = {
332
+ wasm:(_,{builtin,internalThrow})=>[[32,4],[252,3],[40,1,0],[184],[34,6],[68,0],[97],[4,64],[16,builtin('__Porffor_allocate')],[183],[34,7],[65,208,0],[15],[11],[32,6],[68,1],[97],[4,64],[32,4],[33,10],[68,0],[34,11],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[34,12],[33,9],[33,8],[32,9],[184],[68,1],[97],[4,64],[32,4],[33,10],[68,0],[34,11],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,12],[34,14],[68,0],[99],[32,14],[68,4294967295],[100],[114],[32,14],[16,builtin('__Number_isInteger')],[68,0],[97],[114],[4,64],...internalThrow(_,'RangeError',`Invalid array length`),[11],[16,builtin('__Porffor_allocate')],[183],[34,7],[252,3],[34,16],[32,8],[34,15],[252,3],[54,1,0],[32,7],[65,208,0],[15],[11],[11],[32,4],[65,208,0],[15]],
333
+ params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
334
+ locals:[124,124,124,127,124,124,127,127,124,124,127],localNames:["#newtarget","#newtarget#type","#this","#this#type","args","args#type","argsLen","out","arg","arg#type","#member_obj","#member_prop","#last_type","#loadArray_offset","n","__length_setter_tmp","__member_setter_ptr_tmp"],
335
+ usedTypes:[80],
336
+ constr:1,hasRestArgument:1,
337
+ };
331
338
  this.__Array_isArray = {
332
339
  wasm:()=>[[32,1],[184],[68,80],[97],[184],[65,2],[15]],
333
340
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
@@ -2022,7 +2029,7 @@ wasm:(_,{glbl,builtin})=>[...glbl(35,'jobQueue',124),[65,208,0],[32,0],[65,208,0
2022
2029
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2023
2030
  locals:[127],localNames:["job","job#type","#last_type"],
2024
2031
  usedTypes:[80],
2025
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2032
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2026
2033
  };
2027
2034
  this.__ecma262_TriggerPromiseReactions = {
2028
2035
  wasm:(_,{t,builtin,internalThrow})=>[[32,0],[252,3],[33,4],[65,208,0],[33,7],[65,0],[33,6],[32,7],[65,208,0],[70],[32,7],[65,19],[70],[114],[32,7],[65,195,0],[70],[114],[32,7],[65,195,1],[70],[114],[32,7],[65,216,0],[78],[32,7],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,4],[40,1,0],[34,5],[4,64],[32,7],[33,13],[2,64],...t([19],()=>[[32,13],[65,19],[70],[4,64],[3,64],[32,4],[43,0,4],[33,8],[32,4],[45,0,12],[33,9],[32,8],[33,10],[32,9],[33,11],[2,64],[32,10],[32,11],[32,2],[32,3],[16,builtin('__ecma262_NewPromiseReactionJob')],[34,12],[16,builtin('__ecma262_HostEnqueuePromiseJob')],[33,12],[26],[32,4],[65,9],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,13],[65,195,0],[70],[4,64],[65,195,0],[33,9],[16,builtin('__Porffor_allocate')],[34,14],[65,1],[54,0,0],[3,64],[32,14],[32,4],[47,0,4],[59,0,4],[32,14],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[32,10],[32,11],[32,2],[32,3],[16,builtin('__ecma262_NewPromiseReactionJob')],[34,12],[16,builtin('__ecma262_HostEnqueuePromiseJob')],[33,12],[26],[32,4],[65,2],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,13],[65,208,0],[70],[4,64],[3,64],[32,4],[43,0,4],[33,8],[32,4],[45,0,12],[33,9],[32,8],[33,10],[32,9],[33,11],[2,64],[32,10],[32,11],[32,2],[32,3],[16,builtin('__ecma262_NewPromiseReactionJob')],[34,12],[16,builtin('__ecma262_HostEnqueuePromiseJob')],[33,12],[26],[32,4],[65,9],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,13],[65,216,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[106],[45,0,4],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[32,10],[32,11],[32,2],[32,3],[16,builtin('__ecma262_NewPromiseReactionJob')],[34,12],[16,builtin('__ecma262_HostEnqueuePromiseJob')],[33,12],[26],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,13],[65,217,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[106],[44,0,4],[183],[34,8],[33,10],[32,9],[33,11],[2,64],[32,10],[32,11],[32,2],[32,3],[16,builtin('__ecma262_NewPromiseReactionJob')],[34,12],[16,builtin('__ecma262_HostEnqueuePromiseJob')],[33,12],[26],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,13],[65,218,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[106],[45,0,4],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[32,10],[32,11],[32,2],[32,3],[16,builtin('__ecma262_NewPromiseReactionJob')],[34,12],[16,builtin('__ecma262_HostEnqueuePromiseJob')],[33,12],[26],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,13],[65,219,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,2],[108],[106],[47,0,4],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[32,10],[32,11],[32,2],[32,3],[16,builtin('__ecma262_NewPromiseReactionJob')],[34,12],[16,builtin('__ecma262_HostEnqueuePromiseJob')],[33,12],[26],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,13],[65,220,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,2],[108],[106],[46,0,4],[183],[34,8],[33,10],[32,9],[33,11],[2,64],[32,10],[32,11],[32,2],[32,3],[16,builtin('__ecma262_NewPromiseReactionJob')],[34,12],[16,builtin('__ecma262_HostEnqueuePromiseJob')],[33,12],[26],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,13],[65,221,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,4],[108],[106],[40,0,4],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[32,10],[32,11],[32,2],[32,3],[16,builtin('__ecma262_NewPromiseReactionJob')],[34,12],[16,builtin('__ecma262_HostEnqueuePromiseJob')],[33,12],[26],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,13],[65,222,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,4],[108],[106],[40,0,4],[183],[34,8],[33,10],[32,9],[33,11],[2,64],[32,10],[32,11],[32,2],[32,3],[16,builtin('__ecma262_NewPromiseReactionJob')],[34,12],[16,builtin('__ecma262_HostEnqueuePromiseJob')],[33,12],[26],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,13],[65,223,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,4],[108],[106],[42,0,4],[187],[34,8],[33,10],[32,9],[33,11],[2,64],[32,10],[32,11],[32,2],[32,3],[16,builtin('__ecma262_NewPromiseReactionJob')],[34,12],[16,builtin('__ecma262_HostEnqueuePromiseJob')],[33,12],[26],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,13],[65,224,0],[70],[4,64],[65,1],[33,9],[3,64],[32,4],[40,0,4],[32,6],[65,8],[108],[106],[43,0,4],[34,8],[33,10],[32,9],[33,11],[2,64],[32,10],[32,11],[32,2],[32,3],[16,builtin('__ecma262_NewPromiseReactionJob')],[34,12],[16,builtin('__ecma262_HostEnqueuePromiseJob')],[33,12],[26],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,13],[65,195,1],[70],[4,64],[65,195,1],[33,9],[16,builtin('__Porffor_allocate')],[34,14],[65,1],[54,0,0],[3,64],[32,14],[32,4],[32,6],[106],[45,0,4],[58,0,4],[32,14],[184],[34,8],[33,10],[32,9],[33,11],[2,64],[32,10],[32,11],[32,2],[32,3],[16,builtin('__ecma262_NewPromiseReactionJob')],[34,12],[16,builtin('__ecma262_HostEnqueuePromiseJob')],[33,12],[26],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],[68,0],[65,128,1],[15]],
@@ -2084,27 +2091,27 @@ wasm:(_,{t,glbl,builtin,internalThrow})=>[[3,64],[65,1],[4,64],...glbl(35,'jobQu
2084
2091
  params:[],typedParams:1,returns:[124,127],typedReturns:1,
2085
2092
  locals:[124,127,127,127,127,124,127,124,124,124,127,127,127,124,124,127,124,124,127,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124],localNames:["x","x#type","__proto_length_cache","__proto_pointer_cache","#last_type","#logicinner_tmp","#typeswitch_tmp1","reaction","#member_obj","#member_prop","#member_allocd","#loadArray_offset","#swap","handler","outPromise","outPromise#type","type","value","value#type","outValue","outValue#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee"],
2086
2093
  usedTypes:[80,67,195],
2087
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2094
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2088
2095
  table:1,
2089
2096
  };
2090
2097
  this.__Porffor_promise_resolveActive = {
2091
2098
  wasm:(_,{glbl,builtin})=>[[32,0],[32,1],...glbl(35,'activePromise',124),...glbl(35,'activePromise#type',127),[16,builtin('__Porffor_promise_resolve')],[34,2],[15]],
2092
2099
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2093
2100
  locals:[127],localNames:["value","value#type","#last_type"],
2094
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2101
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2095
2102
  };
2096
2103
  this.__Porffor_promise_rejectActive = {
2097
2104
  wasm:(_,{glbl,builtin})=>[[32,0],[32,1],...glbl(35,'activePromise',124),...glbl(35,'activePromise#type',127),[16,builtin('__Porffor_promise_reject')],[34,2],[15]],
2098
2105
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2099
2106
  locals:[127],localNames:["reason","reason#type","#last_type"],
2100
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2107
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2101
2108
  };
2102
2109
  this.Promise = {
2103
2110
  wasm:(_,{t,glbl,builtin,funcRef,internalThrow})=>[[32,0],[33,6],[32,1],[33,7],[2,124],...t([67,195],()=>[[32,7],[65,195,0],[70],[32,7],[65,195,1],[70],[114],[4,64],[32,6],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,6],[68,0],[97],[184],[11],[252,3],[4,64],...internalThrow(_,'TypeError',`Constructor Promise requires 'new'`),[11],[32,5],[184],[68,6],[98],[4,64],...internalThrow(_,'TypeError',`Promise executor is not a function`),[11],[16,builtin('__Porffor_promise_create')],[33,9],[34,8],...glbl(36,'activePromise',124),...glbl(35,'activePromise',124),[65,208,0],...glbl(36,'activePromise#type',127),[26],[6,64],[32,4],[33,22],[32,5],[33,7],[2,124],...t([6],()=>[[32,7],[65,6],[70],[4,64],...funcRef('__Porffor_promise_resolveActive'),[65,6],[33,10],[33,11],...funcRef('__Porffor_promise_rejectActive'),[65,6],[33,12],[33,13],[68,0],[65,128,1],[33,14],[33,15],[68,0],[65,128,1],[33,16],[33,17],[68,0],[65,128,1],[33,18],[33,19],[32,22],[252,3],[34,20],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,21],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,20],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,20],[17,2,0,"no_type_return"],[5],[32,20],[17,0,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,20],[17,2,0],[33,9],[5],[32,20],[17,0,0],[33,9],[11],[11],[12,5],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[32,10],[32,20],[17,3,0,"no_type_return"],[5],[32,11],[32,10],[32,20],[17,1,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[32,10],[32,20],[17,3,0],[33,9],[5],[32,11],[32,10],[32,20],[17,1,0],[33,9],[11],[11],[12,4],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[32,10],[32,13],[32,12],[32,20],[17,4,0,"no_type_return"],[5],[32,11],[32,10],[32,13],[32,12],[32,20],[17,2,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[32,10],[32,13],[32,12],[32,20],[17,4,0],[33,9],[5],[32,11],[32,10],[32,13],[32,12],[32,20],[17,2,0],[33,9],[11],[11],[12,3],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,20],[17,5,0,"no_type_return"],[5],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,20],[17,3,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,20],[17,5,0],[33,9],[5],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,20],[17,3,0],[33,9],[11],[11],[12,2],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,17],[32,16],[32,20],[17,6,0,"no_type_return"],[5],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,17],[32,16],[32,20],[17,4,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,17],[32,16],[32,20],[17,6,0],[33,9],[5],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,17],[32,16],[32,20],[17,4,0],[33,9],[11],[11],[12,1],[11],[32,21],[65,1],[113],[4,124],[32,21],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,7,0,"no_type_return"],[5],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,5,0,"no_type_return"],[11],[5],[32,21],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,7,0],[33,9],[5],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,20],[17,5,0],[33,9],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`executor is not a function`),[68,0],[11],[26],[7,0],[33,24],[34,23],[33,25],[32,24],[33,26],[32,8],[65,208,0],[32,25],[32,26],[16,builtin('__ecma262_RejectPromise')],[33,9],[26],[11],[32,8],[34,27],[65,36],[15]],
2104
2111
  params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
2105
2112
  locals:[124,127,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,124,127,124,127,124],localNames:["#newtarget","#newtarget#type","#this","#this#type","executor","executor#type","#logicinner_tmp","#typeswitch_tmp1","obj","#last_type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#catch_tmp1","#catch_tmp1#type","e","e#type","pro"],
2106
2113
  usedTypes:[80,36],
2107
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2114
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2108
2115
  table:1,constr:1,
2109
2116
  };
2110
2117
  this.__Promise_resolve = {
@@ -2140,49 +2147,49 @@ this.__Promise_all = {
2140
2147
  wasm:(_,{glbl,builtin,funcRef})=>[[32,0],...glbl(36,'_allPromises',124),...glbl(35,'_allPromises',124),[32,1],...glbl(36,'_allPromises#type',127),[26],[68,21],[65,6],[68,0],[65,7],...funcRef('#anonymous_3'),[65,6],[16,builtin('Promise')],[34,2],[15]],
2141
2148
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2142
2149
  locals:[127],localNames:["promises","promises#type","#last_type"],
2143
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2150
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2144
2151
  };
2145
2152
  this['#anonymous_3'] = {
2146
2153
  wasm:(_,{t,glbl,builtin,funcRef,internalThrow})=>[[32,0],...glbl(36,'_allRes',124),...glbl(35,'_allRes',124),[32,1],...glbl(36,'_allRes#type',127),[26],[32,2],...glbl(36,'_allRej',124),...glbl(35,'_allRej',124),[32,3],...glbl(36,'_allRej#type',127),[26],[16,builtin('__Porffor_allocate')],[183],[34,4],...glbl(36,'_allOut',124),...glbl(35,'_allOut',124),[65,208,0],...glbl(36,'_allOut#type',127),[26],[68,0],...glbl(36,'_allLen',124),...glbl(35,'_allLen',124),[65,1],...glbl(36,'_allLen#type',127),[26],...glbl(35,'_allPromises',124),[252,3],[33,5],...glbl(35,'_allPromises#type',127),[33,8],[65,0],[33,7],[32,8],[65,208,0],[70],[32,8],[65,19],[70],[114],[32,8],[65,195,0],[70],[114],[32,8],[65,195,1],[70],[114],[32,8],[65,216,0],[78],[32,8],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,5],[40,1,0],[34,6],[4,64],[32,8],[33,15],[2,64],...t([19],()=>[[32,15],[65,19],[70],[4,64],[3,64],[32,5],[43,0,4],[33,9],[32,5],[45,0,12],[33,10],[32,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_4'),[65,6],...funcRef('#anonymous_5'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,11],[32,12],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,5],[65,9],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,15],[65,195,0],[70],[4,64],[65,195,0],[33,10],[16,builtin('__Porffor_allocate')],[34,18],[65,1],[54,0,0],[3,64],[32,18],[32,5],[47,0,4],[59,0,4],[32,18],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_4'),[65,6],...funcRef('#anonymous_5'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,11],[32,12],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,5],[65,2],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,15],[65,208,0],[70],[4,64],[3,64],[32,5],[43,0,4],[33,9],[32,5],[45,0,12],[33,10],[32,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_4'),[65,6],...funcRef('#anonymous_5'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,11],[32,12],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,5],[65,9],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,15],[65,216,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_4'),[65,6],...funcRef('#anonymous_5'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,11],[32,12],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,15],[65,217,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[44,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_4'),[65,6],...funcRef('#anonymous_5'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,11],[32,12],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,15],[65,218,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_4'),[65,6],...funcRef('#anonymous_5'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,11],[32,12],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,15],[65,219,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[47,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_4'),[65,6],...funcRef('#anonymous_5'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,11],[32,12],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,15],[65,220,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[46,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_4'),[65,6],...funcRef('#anonymous_5'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,11],[32,12],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,15],[65,221,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_4'),[65,6],...funcRef('#anonymous_5'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,11],[32,12],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,15],[65,222,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_4'),[65,6],...funcRef('#anonymous_5'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,11],[32,12],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,15],[65,223,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[42,0,4],[187],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_4'),[65,6],...funcRef('#anonymous_5'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,11],[32,12],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,15],[65,224,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,8],[108],[106],[43,0,4],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_4'),[65,6],...funcRef('#anonymous_5'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,11],[32,12],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,15],[65,195,1],[70],[4,64],[65,195,1],[33,10],[16,builtin('__Porffor_allocate')],[34,18],[65,1],[54,0,0],[3,64],[32,18],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,18],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_4'),[65,6],...funcRef('#anonymous_5'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,11],[32,12],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],...glbl(35,'_allLen',124),[68,0],[97],[4,64],...glbl(35,'_allRes',124),[33,31],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[33,19],[33,20],[68,0],[65,128,1],[33,21],[33,22],[68,0],[65,128,1],[33,23],[33,24],[68,0],[65,128,1],[33,25],[33,26],[68,0],[65,128,1],[33,27],[33,28],[32,31],[252,3],[34,29],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,30],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,29],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,30],[65,1],[113],[4,124],[32,30],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,29],[17,2,0,"no_type_return"],[5],[32,29],[17,0,0,"no_type_return"],[11],[5],[32,30],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,29],[17,2,0],[33,13],[5],[32,29],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,30],[65,1],[113],[4,124],[32,30],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,20],[32,19],[32,29],[17,3,0,"no_type_return"],[5],[32,20],[32,19],[32,29],[17,1,0,"no_type_return"],[11],[5],[32,30],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,20],[32,19],[32,29],[17,3,0],[33,13],[5],[32,20],[32,19],[32,29],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,30],[65,1],[113],[4,124],[32,30],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,20],[32,19],[32,22],[32,21],[32,29],[17,4,0,"no_type_return"],[5],[32,20],[32,19],[32,22],[32,21],[32,29],[17,2,0,"no_type_return"],[11],[5],[32,30],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,20],[32,19],[32,22],[32,21],[32,29],[17,4,0],[33,13],[5],[32,20],[32,19],[32,22],[32,21],[32,29],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,30],[65,1],[113],[4,124],[32,30],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,29],[17,5,0,"no_type_return"],[5],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,29],[17,3,0,"no_type_return"],[11],[5],[32,30],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,29],[17,5,0],[33,13],[5],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,29],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,30],[65,1],[113],[4,124],[32,30],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,29],[17,6,0,"no_type_return"],[5],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,29],[17,4,0,"no_type_return"],[11],[5],[32,30],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,29],[17,6,0],[33,13],[5],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,29],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,30],[65,1],[113],[4,124],[32,30],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,28],[32,27],[32,29],[17,7,0,"no_type_return"],[5],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,28],[32,27],[32,29],[17,5,0,"no_type_return"],[11],[5],[32,30],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,28],[32,27],[32,29],[17,7,0],[33,13],[5],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,28],[32,27],[32,29],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),[252,3],[40,1,0],[184],...glbl(35,'_allLen',124),[97],[4,64],...funcRef('#anonymous_6'),[65,6],[16,builtin('__Porffor_promise_runNext')],[33,13],[26],[11],[11],[68,0],[65,128,1],[15]],
2147
2154
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
2148
2155
  locals:[124,127,127,127,127,124,127,124,127,127,124,127,124,127,127,127,124,127,124,127,124,127,124,127,124,127,127,124],localNames:["res","res#type","rej","rej#type","arr","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_itertype0","#forof_tmp0","#forof_tmp0#type","x","x#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","#proto_target","#proto_target#type","#forof_allocd","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee"],
2149
2156
  usedTypes:[80,67,195],
2150
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2157
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2151
2158
  table:1,
2152
2159
  };
2153
2160
  this['#anonymous_4'] = {
2154
2161
  wasm:(_,{t,glbl,builtin,internalThrow})=>[[2,127],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,0],[32,1],[16,builtin('__Porffor_array_fastPush')],[33,2],[34,3],...glbl(35,'_allLen',124),[34,4],[32,2],[65,128,1],[114],[65,195,1],[70],...glbl(35,'_allLen#type',127),[65,128,1],[114],[65,195,1],[70],[114],[4,64],[32,3],[32,2],[32,4],...glbl(35,'_allLen#type',127),[16,builtin('__Porffor_compareStrings')],[26],[252,3],[12,1],[11],[97],[11],[4,64],...glbl(35,'_allRes',124),[33,17],...glbl(35,'_allRes#type',127),[33,18],[2,124],...t([6],()=>[[32,18],[65,6],[70],[4,64],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[33,5],[33,6],[68,0],[65,128,1],[33,7],[33,8],[68,0],[65,128,1],[33,9],[33,10],[68,0],[65,128,1],[33,11],[33,12],[68,0],[65,128,1],[33,13],[33,14],[32,17],[252,3],[34,15],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,16],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,15],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[17,2,0,"no_type_return"],[5],[32,15],[17,0,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[17,2,0],[33,2],[5],[32,15],[17,0,0],[33,2],[11],[11],[12,5],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,15],[17,3,0,"no_type_return"],[5],[32,6],[32,5],[32,15],[17,1,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,15],[17,3,0],[33,2],[5],[32,6],[32,5],[32,15],[17,1,0],[33,2],[11],[11],[12,4],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,15],[17,4,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,15],[17,2,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,15],[17,4,0],[33,2],[5],[32,6],[32,5],[32,8],[32,7],[32,15],[17,2,0],[33,2],[11],[11],[12,3],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,5,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,3,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,5,0],[33,2],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,15],[17,3,0],[33,2],[11],[11],[12,2],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,6,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,4,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,6,0],[33,2],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,15],[17,4,0],[33,2],[11],[11],[12,1],[11],[32,16],[65,1],[113],[4,124],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,7,0,"no_type_return"],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,5,0,"no_type_return"],[11],[5],[32,16],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,7,0],[33,2],[5],[32,6],[32,5],[32,8],[32,7],[32,10],[32,9],[32,12],[32,11],[32,14],[32,13],[32,15],[17,5,0],[33,2],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[26],[11],[68,0],[65,128,1],[15]],
2155
2162
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2156
2163
  locals:[127,124,124,127,124,127,124,127,124,127,124,127,124,127,127,124,127],localNames:["r","r#type","#last_type","__tmpop_left","__tmpop_right","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","#typeswitch_tmp2"],
2157
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2164
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2158
2165
  table:1,
2159
2166
  };
2160
2167
  this['#anonymous_5'] = {
2161
2168
  wasm:(_,{t,glbl,internalThrow})=>[...glbl(35,'_allRej',124),[33,15],...glbl(35,'_allRej#type',127),[33,16],[2,124],...t([6],()=>[[32,16],[65,6],[70],[4,64],[32,0],[32,1],[33,2],[33,3],[68,0],[65,128,1],[33,4],[33,5],[68,0],[65,128,1],[33,6],[33,7],[68,0],[65,128,1],[33,8],[33,9],[68,0],[65,128,1],[33,10],[33,11],[32,15],[252,3],[34,12],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,13],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,12],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0,"no_type_return"],[5],[32,12],[17,0,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,12],[17,2,0],[26],[5],[32,12],[17,0,0],[26],[11],[11],[12,5],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0,"no_type_return"],[5],[32,3],[32,2],[32,12],[17,1,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,12],[17,3,0],[26],[5],[32,3],[32,2],[32,12],[17,1,0],[26],[11],[11],[12,4],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,12],[17,4,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,12],[17,2,0],[26],[11],[11],[12,3],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,5,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,12],[17,3,0],[26],[11],[11],[12,2],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,6,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,12],[17,4,0],[26],[11],[11],[12,1],[11],[32,13],[65,1],[113],[4,124],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0,"no_type_return"],[11],[5],[32,13],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,7,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,11],[32,10],[32,12],[17,5,0],[26],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRej is not a function`),[68,0],[11],[26],[68,0],[65,128,1],[15]],
2162
2169
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2163
2170
  locals:[127,124,127,124,127,124,127,124,127,124,127,127,127,124,127],localNames:["r","r#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp2"],
2164
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2171
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2165
2172
  table:1,
2166
2173
  };
2167
2174
  this['#anonymous_6'] = {
2168
2175
  wasm:(_,{t,glbl,internalThrow})=>[...glbl(35,'_allRes',124),[33,13],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[33,0],[33,1],[68,0],[65,128,1],[33,2],[33,3],[68,0],[65,128,1],[33,4],[33,5],[68,0],[65,128,1],[33,6],[33,7],[68,0],[65,128,1],[33,8],[33,9],[32,13],[252,3],[34,10],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,10],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,11],[65,1],[113],[4,124],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,10],[17,2,0,"no_type_return"],[5],[32,10],[17,0,0,"no_type_return"],[11],[5],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,10],[17,2,0],[26],[5],[32,10],[17,0,0],[26],[11],[11],[12,5],[11],[32,11],[65,1],[113],[4,124],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,10],[17,3,0,"no_type_return"],[5],[32,1],[32,0],[32,10],[17,1,0,"no_type_return"],[11],[5],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,10],[17,3,0],[26],[5],[32,1],[32,0],[32,10],[17,1,0],[26],[11],[11],[12,4],[11],[32,11],[65,1],[113],[4,124],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,10],[17,4,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,10],[17,2,0,"no_type_return"],[11],[5],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,10],[17,4,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,10],[17,2,0],[26],[11],[11],[12,3],[11],[32,11],[65,1],[113],[4,124],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,10],[17,5,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,10],[17,3,0,"no_type_return"],[11],[5],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,10],[17,5,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,10],[17,3,0],[26],[11],[11],[12,2],[11],[32,11],[65,1],[113],[4,124],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,10],[17,6,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,10],[17,4,0,"no_type_return"],[11],[5],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,10],[17,6,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,10],[17,4,0],[26],[11],[11],[12,1],[11],[32,11],[65,1],[113],[4,124],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,10],[17,7,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,10],[17,5,0,"no_type_return"],[11],[5],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,10],[17,7,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,10],[17,5,0],[26],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[26],[68,0],[65,128,1],[15]],
2169
2176
  params:[],typedParams:1,returns:[124,127],typedReturns:1,
2170
2177
  locals:[127,124,127,124,127,124,127,124,127,124,127,127,127,124,127],localNames:["#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp1"],
2171
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2178
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2172
2179
  table:1,
2173
2180
  };
2174
2181
  this.__Promise_allSettled = {
2175
2182
  wasm:(_,{glbl,builtin,funcRef})=>[[32,0],...glbl(36,'_allPromises',124),...glbl(35,'_allPromises',124),[32,1],...glbl(36,'_allPromises#type',127),[26],[68,21],[65,6],[68,0],[65,7],...funcRef('#anonymous_7'),[65,6],[16,builtin('Promise')],[34,2],[15]],
2176
2183
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2177
2184
  locals:[127],localNames:["promises","promises#type","#last_type"],
2178
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2185
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2179
2186
  };
2180
2187
  this['#anonymous_7'] = {
2181
2188
  wasm:(_,{t,allocPage,glbl,builtin,funcRef,internalThrow})=>[[32,0],...glbl(36,'_allRes',124),...glbl(35,'_allRes',124),[32,1],...glbl(36,'_allRes#type',127),[26],[32,2],...glbl(36,'_allRej',124),...glbl(35,'_allRej',124),[32,3],...glbl(36,'_allRej#type',127),[26],[16,builtin('__Porffor_allocate')],[183],[34,4],...glbl(36,'_allOut',124),...glbl(35,'_allOut',124),[65,208,0],...glbl(36,'_allOut#type',127),[26],[68,0],...glbl(36,'_allLen',124),...glbl(35,'_allLen',124),[65,1],...glbl(36,'_allLen#type',127),[26],...glbl(35,'_allPromises',124),[252,3],[33,5],...glbl(35,'_allPromises#type',127),[33,8],[65,0],[33,7],[32,8],[65,208,0],[70],[32,8],[65,19],[70],[114],[32,8],[65,195,0],[70],[114],[32,8],[65,195,1],[70],[114],[32,8],[65,216,0],[78],[32,8],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,5],[40,1,0],[34,6],[4,64],[32,8],[33,15],[2,64],...t([19],()=>[[32,15],[65,19],[70],[4,64],[3,64],[32,5],[43,0,4],[33,9],[32,5],[45,0,12],[33,10],[32,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_8'),[65,6],...funcRef('#anonymous_9'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],[16,builtin('__Porffor_allocate')],[184],[33,18],[65,7],[33,19],...number(allocPage(_,'bytestring: #anonymous_7/status','i8'),124),[34,20],[252,3],[34,21],[65,9],[54,1,0],[32,21],[65,230,0],[58,0,4],[32,21],[65,245,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,230,0],[58,0,7],[32,21],[65,233,0],[58,0,8],[32,21],[65,236,0],[58,0,9],[32,21],[65,236,0],[58,0,10],[32,21],[65,229,0],[58,0,11],[32,21],[65,228,0],[58,0,12],[32,21],[184],[33,20],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,6],[54,1,0],[32,21],[65,243,0],[58,0,4],[32,21],[65,244,0],[58,0,5],[32,21],[65,225,0],[58,0,6],[32,21],[65,244,0],[58,0,7],[32,21],[65,245,0],[58,0,8],[32,21],[65,243,0],[58,0,9],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,20],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[11],[26],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,5],[54,1,0],[32,21],[65,246,0],[58,0,4],[32,21],[65,225,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,245,0],[58,0,7],[32,21],[65,229,0],[58,0,8],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,11],[32,12],[16,builtin('__Porffor_object_set')],[26],[11],[26],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,18],[32,19],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,5],[65,9],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,15],[65,195,0],[70],[4,64],[65,195,0],[33,10],[16,builtin('__Porffor_allocate')],[34,26],[65,1],[54,0,0],[3,64],[32,26],[32,5],[47,0,4],[59,0,4],[32,26],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_8'),[65,6],...funcRef('#anonymous_9'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],[16,builtin('__Porffor_allocate')],[184],[33,18],[65,7],[33,19],[68,393216],[34,20],[252,3],[34,21],[65,9],[54,1,0],[32,21],[65,230,0],[58,0,4],[32,21],[65,245,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,230,0],[58,0,7],[32,21],[65,233,0],[58,0,8],[32,21],[65,236,0],[58,0,9],[32,21],[65,236,0],[58,0,10],[32,21],[65,229,0],[58,0,11],[32,21],[65,228,0],[58,0,12],[32,21],[184],[33,20],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,6],[54,1,0],[32,21],[65,243,0],[58,0,4],[32,21],[65,244,0],[58,0,5],[32,21],[65,225,0],[58,0,6],[32,21],[65,244,0],[58,0,7],[32,21],[65,245,0],[58,0,8],[32,21],[65,243,0],[58,0,9],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,20],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[11],[26],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,5],[54,1,0],[32,21],[65,246,0],[58,0,4],[32,21],[65,225,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,245,0],[58,0,7],[32,21],[65,229,0],[58,0,8],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,11],[32,12],[16,builtin('__Porffor_object_set')],[26],[11],[26],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,18],[32,19],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,5],[65,2],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,15],[65,208,0],[70],[4,64],[3,64],[32,5],[43,0,4],[33,9],[32,5],[45,0,12],[33,10],[32,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_8'),[65,6],...funcRef('#anonymous_9'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],[16,builtin('__Porffor_allocate')],[184],[33,18],[65,7],[33,19],[68,393216],[34,20],[252,3],[34,21],[65,9],[54,1,0],[32,21],[65,230,0],[58,0,4],[32,21],[65,245,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,230,0],[58,0,7],[32,21],[65,233,0],[58,0,8],[32,21],[65,236,0],[58,0,9],[32,21],[65,236,0],[58,0,10],[32,21],[65,229,0],[58,0,11],[32,21],[65,228,0],[58,0,12],[32,21],[184],[33,20],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,6],[54,1,0],[32,21],[65,243,0],[58,0,4],[32,21],[65,244,0],[58,0,5],[32,21],[65,225,0],[58,0,6],[32,21],[65,244,0],[58,0,7],[32,21],[65,245,0],[58,0,8],[32,21],[65,243,0],[58,0,9],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,20],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[11],[26],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,5],[54,1,0],[32,21],[65,246,0],[58,0,4],[32,21],[65,225,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,245,0],[58,0,7],[32,21],[65,229,0],[58,0,8],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,11],[32,12],[16,builtin('__Porffor_object_set')],[26],[11],[26],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,18],[32,19],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,5],[65,9],[106],[33,5],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,15],[65,216,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_8'),[65,6],...funcRef('#anonymous_9'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],[16,builtin('__Porffor_allocate')],[184],[33,18],[65,7],[33,19],[68,393216],[34,20],[252,3],[34,21],[65,9],[54,1,0],[32,21],[65,230,0],[58,0,4],[32,21],[65,245,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,230,0],[58,0,7],[32,21],[65,233,0],[58,0,8],[32,21],[65,236,0],[58,0,9],[32,21],[65,236,0],[58,0,10],[32,21],[65,229,0],[58,0,11],[32,21],[65,228,0],[58,0,12],[32,21],[184],[33,20],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,6],[54,1,0],[32,21],[65,243,0],[58,0,4],[32,21],[65,244,0],[58,0,5],[32,21],[65,225,0],[58,0,6],[32,21],[65,244,0],[58,0,7],[32,21],[65,245,0],[58,0,8],[32,21],[65,243,0],[58,0,9],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,20],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[11],[26],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,5],[54,1,0],[32,21],[65,246,0],[58,0,4],[32,21],[65,225,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,245,0],[58,0,7],[32,21],[65,229,0],[58,0,8],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,11],[32,12],[16,builtin('__Porffor_object_set')],[26],[11],[26],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,18],[32,19],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,15],[65,217,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[44,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_8'),[65,6],...funcRef('#anonymous_9'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],[16,builtin('__Porffor_allocate')],[184],[33,18],[65,7],[33,19],[68,393216],[34,20],[252,3],[34,21],[65,9],[54,1,0],[32,21],[65,230,0],[58,0,4],[32,21],[65,245,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,230,0],[58,0,7],[32,21],[65,233,0],[58,0,8],[32,21],[65,236,0],[58,0,9],[32,21],[65,236,0],[58,0,10],[32,21],[65,229,0],[58,0,11],[32,21],[65,228,0],[58,0,12],[32,21],[184],[33,20],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,6],[54,1,0],[32,21],[65,243,0],[58,0,4],[32,21],[65,244,0],[58,0,5],[32,21],[65,225,0],[58,0,6],[32,21],[65,244,0],[58,0,7],[32,21],[65,245,0],[58,0,8],[32,21],[65,243,0],[58,0,9],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,20],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[11],[26],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,5],[54,1,0],[32,21],[65,246,0],[58,0,4],[32,21],[65,225,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,245,0],[58,0,7],[32,21],[65,229,0],[58,0,8],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,11],[32,12],[16,builtin('__Porffor_object_set')],[26],[11],[26],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,18],[32,19],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,15],[65,218,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_8'),[65,6],...funcRef('#anonymous_9'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],[16,builtin('__Porffor_allocate')],[184],[33,18],[65,7],[33,19],[68,393216],[34,20],[252,3],[34,21],[65,9],[54,1,0],[32,21],[65,230,0],[58,0,4],[32,21],[65,245,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,230,0],[58,0,7],[32,21],[65,233,0],[58,0,8],[32,21],[65,236,0],[58,0,9],[32,21],[65,236,0],[58,0,10],[32,21],[65,229,0],[58,0,11],[32,21],[65,228,0],[58,0,12],[32,21],[184],[33,20],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,6],[54,1,0],[32,21],[65,243,0],[58,0,4],[32,21],[65,244,0],[58,0,5],[32,21],[65,225,0],[58,0,6],[32,21],[65,244,0],[58,0,7],[32,21],[65,245,0],[58,0,8],[32,21],[65,243,0],[58,0,9],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,20],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[11],[26],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,5],[54,1,0],[32,21],[65,246,0],[58,0,4],[32,21],[65,225,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,245,0],[58,0,7],[32,21],[65,229,0],[58,0,8],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,11],[32,12],[16,builtin('__Porffor_object_set')],[26],[11],[26],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,18],[32,19],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,15],[65,219,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[47,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_8'),[65,6],...funcRef('#anonymous_9'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],[16,builtin('__Porffor_allocate')],[184],[33,18],[65,7],[33,19],[68,393216],[34,20],[252,3],[34,21],[65,9],[54,1,0],[32,21],[65,230,0],[58,0,4],[32,21],[65,245,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,230,0],[58,0,7],[32,21],[65,233,0],[58,0,8],[32,21],[65,236,0],[58,0,9],[32,21],[65,236,0],[58,0,10],[32,21],[65,229,0],[58,0,11],[32,21],[65,228,0],[58,0,12],[32,21],[184],[33,20],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,6],[54,1,0],[32,21],[65,243,0],[58,0,4],[32,21],[65,244,0],[58,0,5],[32,21],[65,225,0],[58,0,6],[32,21],[65,244,0],[58,0,7],[32,21],[65,245,0],[58,0,8],[32,21],[65,243,0],[58,0,9],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,20],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[11],[26],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,5],[54,1,0],[32,21],[65,246,0],[58,0,4],[32,21],[65,225,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,245,0],[58,0,7],[32,21],[65,229,0],[58,0,8],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,11],[32,12],[16,builtin('__Porffor_object_set')],[26],[11],[26],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,18],[32,19],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,15],[65,220,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[46,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_8'),[65,6],...funcRef('#anonymous_9'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],[16,builtin('__Porffor_allocate')],[184],[33,18],[65,7],[33,19],[68,393216],[34,20],[252,3],[34,21],[65,9],[54,1,0],[32,21],[65,230,0],[58,0,4],[32,21],[65,245,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,230,0],[58,0,7],[32,21],[65,233,0],[58,0,8],[32,21],[65,236,0],[58,0,9],[32,21],[65,236,0],[58,0,10],[32,21],[65,229,0],[58,0,11],[32,21],[65,228,0],[58,0,12],[32,21],[184],[33,20],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,6],[54,1,0],[32,21],[65,243,0],[58,0,4],[32,21],[65,244,0],[58,0,5],[32,21],[65,225,0],[58,0,6],[32,21],[65,244,0],[58,0,7],[32,21],[65,245,0],[58,0,8],[32,21],[65,243,0],[58,0,9],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,20],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[11],[26],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,5],[54,1,0],[32,21],[65,246,0],[58,0,4],[32,21],[65,225,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,245,0],[58,0,7],[32,21],[65,229,0],[58,0,8],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,11],[32,12],[16,builtin('__Porffor_object_set')],[26],[11],[26],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,18],[32,19],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,15],[65,221,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_8'),[65,6],...funcRef('#anonymous_9'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],[16,builtin('__Porffor_allocate')],[184],[33,18],[65,7],[33,19],[68,393216],[34,20],[252,3],[34,21],[65,9],[54,1,0],[32,21],[65,230,0],[58,0,4],[32,21],[65,245,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,230,0],[58,0,7],[32,21],[65,233,0],[58,0,8],[32,21],[65,236,0],[58,0,9],[32,21],[65,236,0],[58,0,10],[32,21],[65,229,0],[58,0,11],[32,21],[65,228,0],[58,0,12],[32,21],[184],[33,20],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,6],[54,1,0],[32,21],[65,243,0],[58,0,4],[32,21],[65,244,0],[58,0,5],[32,21],[65,225,0],[58,0,6],[32,21],[65,244,0],[58,0,7],[32,21],[65,245,0],[58,0,8],[32,21],[65,243,0],[58,0,9],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,20],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[11],[26],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,5],[54,1,0],[32,21],[65,246,0],[58,0,4],[32,21],[65,225,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,245,0],[58,0,7],[32,21],[65,229,0],[58,0,8],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,11],[32,12],[16,builtin('__Porffor_object_set')],[26],[11],[26],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,18],[32,19],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,15],[65,222,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[183],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_8'),[65,6],...funcRef('#anonymous_9'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],[16,builtin('__Porffor_allocate')],[184],[33,18],[65,7],[33,19],[68,393216],[34,20],[252,3],[34,21],[65,9],[54,1,0],[32,21],[65,230,0],[58,0,4],[32,21],[65,245,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,230,0],[58,0,7],[32,21],[65,233,0],[58,0,8],[32,21],[65,236,0],[58,0,9],[32,21],[65,236,0],[58,0,10],[32,21],[65,229,0],[58,0,11],[32,21],[65,228,0],[58,0,12],[32,21],[184],[33,20],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,6],[54,1,0],[32,21],[65,243,0],[58,0,4],[32,21],[65,244,0],[58,0,5],[32,21],[65,225,0],[58,0,6],[32,21],[65,244,0],[58,0,7],[32,21],[65,245,0],[58,0,8],[32,21],[65,243,0],[58,0,9],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,20],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[11],[26],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,5],[54,1,0],[32,21],[65,246,0],[58,0,4],[32,21],[65,225,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,245,0],[58,0,7],[32,21],[65,229,0],[58,0,8],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,11],[32,12],[16,builtin('__Porffor_object_set')],[26],[11],[26],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,18],[32,19],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,15],[65,223,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[42,0,4],[187],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_8'),[65,6],...funcRef('#anonymous_9'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],[16,builtin('__Porffor_allocate')],[184],[33,18],[65,7],[33,19],[68,393216],[34,20],[252,3],[34,21],[65,9],[54,1,0],[32,21],[65,230,0],[58,0,4],[32,21],[65,245,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,230,0],[58,0,7],[32,21],[65,233,0],[58,0,8],[32,21],[65,236,0],[58,0,9],[32,21],[65,236,0],[58,0,10],[32,21],[65,229,0],[58,0,11],[32,21],[65,228,0],[58,0,12],[32,21],[184],[33,20],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,6],[54,1,0],[32,21],[65,243,0],[58,0,4],[32,21],[65,244,0],[58,0,5],[32,21],[65,225,0],[58,0,6],[32,21],[65,244,0],[58,0,7],[32,21],[65,245,0],[58,0,8],[32,21],[65,243,0],[58,0,9],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,20],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[11],[26],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,5],[54,1,0],[32,21],[65,246,0],[58,0,4],[32,21],[65,225,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,245,0],[58,0,7],[32,21],[65,229,0],[58,0,8],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,11],[32,12],[16,builtin('__Porffor_object_set')],[26],[11],[26],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,18],[32,19],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,15],[65,224,0],[70],[4,64],[65,1],[33,10],[3,64],[32,5],[40,0,4],[32,7],[65,8],[108],[106],[43,0,4],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_8'),[65,6],...funcRef('#anonymous_9'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],[16,builtin('__Porffor_allocate')],[184],[33,18],[65,7],[33,19],[68,393216],[34,20],[252,3],[34,21],[65,9],[54,1,0],[32,21],[65,230,0],[58,0,4],[32,21],[65,245,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,230,0],[58,0,7],[32,21],[65,233,0],[58,0,8],[32,21],[65,236,0],[58,0,9],[32,21],[65,236,0],[58,0,10],[32,21],[65,229,0],[58,0,11],[32,21],[65,228,0],[58,0,12],[32,21],[184],[33,20],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,6],[54,1,0],[32,21],[65,243,0],[58,0,4],[32,21],[65,244,0],[58,0,5],[32,21],[65,225,0],[58,0,6],[32,21],[65,244,0],[58,0,7],[32,21],[65,245,0],[58,0,8],[32,21],[65,243,0],[58,0,9],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,20],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[11],[26],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,5],[54,1,0],[32,21],[65,246,0],[58,0,4],[32,21],[65,225,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,245,0],[58,0,7],[32,21],[65,229,0],[58,0,8],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,11],[32,12],[16,builtin('__Porffor_object_set')],[26],[11],[26],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,18],[32,19],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,15],[65,195,1],[70],[4,64],[65,195,1],[33,10],[16,builtin('__Porffor_allocate')],[34,26],[65,1],[54,0,0],[3,64],[32,26],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,26],[184],[34,9],[33,11],[32,10],[33,12],[2,64],[2,64],...glbl(35,'_allLen',124),[68,1],[160],...glbl(36,'_allLen',124),[32,11],[32,12],[16,builtin('__ecma262_IsPromise')],[33,13],[33,14],[32,13],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,11],[33,16],[32,12],[33,17],[32,12],[33,15],[2,124],...t([36],()=>[[32,15],[65,36],[70],[4,64],[32,16],[32,17],...funcRef('#anonymous_8'),[65,6],...funcRef('#anonymous_9'),[65,6],[16,builtin('__Promise_prototype_then')],[33,13],[12,1],[11]]),...internalThrow(_,'TypeError',`'then' proto func tried to be called on a type without an impl`),[68,0],[11],[26],[5],[16,builtin('__Porffor_allocate')],[184],[33,18],[65,7],[33,19],[68,393216],[34,20],[252,3],[34,21],[65,9],[54,1,0],[32,21],[65,230,0],[58,0,4],[32,21],[65,245,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,230,0],[58,0,7],[32,21],[65,233,0],[58,0,8],[32,21],[65,236,0],[58,0,9],[32,21],[65,236,0],[58,0,10],[32,21],[65,229,0],[58,0,11],[32,21],[65,228,0],[58,0,12],[32,21],[184],[33,20],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,6],[54,1,0],[32,21],[65,243,0],[58,0,4],[32,21],[65,244,0],[58,0,5],[32,21],[65,225,0],[58,0,6],[32,21],[65,244,0],[58,0,7],[32,21],[65,245,0],[58,0,8],[32,21],[65,243,0],[58,0,9],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,20],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[11],[26],[32,18],[33,24],[16,builtin('__Porffor_allocate')],[184],[34,25],[252,3],[34,21],[65,5],[54,1,0],[32,21],[65,246,0],[58,0,4],[32,21],[65,225,0],[58,0,5],[32,21],[65,236,0],[58,0,6],[32,21],[65,245,0],[58,0,7],[32,21],[65,229,0],[58,0,8],[32,21],[184],[33,25],[32,19],[33,15],[2,124],...t([128],()=>[[32,15],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,24],[252,2],[32,19],[32,25],[252,3],[65,195,1],[32,11],[32,12],[16,builtin('__Porffor_object_set')],[26],[11],[26],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[32,18],[32,19],[16,builtin('__Porffor_array_fastPush')],[33,13],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],...glbl(35,'_allLen',124),[68,0],[97],[4,64],...glbl(35,'_allRes',124),[33,39],...glbl(35,'_allRes#type',127),[33,15],[2,124],...t([6],()=>[[32,15],[65,6],[70],[4,64],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[33,27],[33,28],[68,0],[65,128,1],[33,29],[33,30],[68,0],[65,128,1],[33,31],[33,32],[68,0],[65,128,1],[33,33],[33,34],[68,0],[65,128,1],[33,35],[33,36],[32,39],[252,3],[34,37],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,38],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,37],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,38],[65,1],[113],[4,124],[32,38],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,37],[17,2,0,"no_type_return"],[5],[32,37],[17,0,0,"no_type_return"],[11],[5],[32,38],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,37],[17,2,0],[33,13],[5],[32,37],[17,0,0],[33,13],[11],[11],[12,5],[11],[32,38],[65,1],[113],[4,124],[32,38],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[32,27],[32,37],[17,3,0,"no_type_return"],[5],[32,28],[32,27],[32,37],[17,1,0,"no_type_return"],[11],[5],[32,38],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[32,27],[32,37],[17,3,0],[33,13],[5],[32,28],[32,27],[32,37],[17,1,0],[33,13],[11],[11],[12,4],[11],[32,38],[65,1],[113],[4,124],[32,38],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[32,27],[32,30],[32,29],[32,37],[17,4,0,"no_type_return"],[5],[32,28],[32,27],[32,30],[32,29],[32,37],[17,2,0,"no_type_return"],[11],[5],[32,38],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[32,27],[32,30],[32,29],[32,37],[17,4,0],[33,13],[5],[32,28],[32,27],[32,30],[32,29],[32,37],[17,2,0],[33,13],[11],[11],[12,3],[11],[32,38],[65,1],[113],[4,124],[32,38],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,37],[17,5,0,"no_type_return"],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,37],[17,3,0,"no_type_return"],[11],[5],[32,38],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,37],[17,5,0],[33,13],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,37],[17,3,0],[33,13],[11],[11],[12,2],[11],[32,38],[65,1],[113],[4,124],[32,38],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,37],[17,6,0,"no_type_return"],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,37],[17,4,0,"no_type_return"],[11],[5],[32,38],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,37],[17,6,0],[33,13],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,37],[17,4,0],[33,13],[11],[11],[12,1],[11],[32,38],[65,1],[113],[4,124],[32,38],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,36],[32,35],[32,37],[17,7,0,"no_type_return"],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,36],[32,35],[32,37],[17,5,0,"no_type_return"],[11],[5],[32,38],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,36],[32,35],[32,37],[17,7,0],[33,13],[5],[32,28],[32,27],[32,30],[32,29],[32,32],[32,31],[32,34],[32,33],[32,36],[32,35],[32,37],[17,5,0],[33,13],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[26],[5],...glbl(35,'_allOut',124),[252,3],[40,1,0],[184],...glbl(35,'_allLen',124),[97],[4,64],...funcRef('#anonymous_10'),[65,6],[16,builtin('__Porffor_promise_runNext')],[33,13],[26],[11],[11],[68,0],[65,128,1],[15]],
2182
2189
  params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
2183
2190
  locals:[124,127,127,127,127,124,127,124,127,127,124,127,124,127,124,127,124,127,124,127,124,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124],localNames:["res","res#type","rej","rej#type","arr","#forof_base_pointer0","#forof_length0","#forof_counter0","#forof_itertype0","#forof_tmp0","#forof_tmp0#type","x","x#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","#proto_target","#proto_target#type","o","o#type","status","#makearray_pointer_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#forof_allocd","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee"],
2184
2191
  usedTypes:[80,7,195,67],
2185
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2192
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2186
2193
  table:1,
2187
2194
  };
2188
2195
  this['#anonymous_8'] = {
@@ -2190,7 +2197,7 @@ wasm:(_,{t,allocPage,glbl,builtin,internalThrow})=>[[16,builtin('__Porffor_alloc
2190
2197
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2191
2198
  locals:[124,127,124,127,124,127,124,124,127,127,124,124,127,124,127,124,127,124,127,124,127,124,127,127,124],localNames:["r","r#type","o","o#type","status","#makearray_pointer_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#typeswitch_tmp2","#last_type","__tmpop_left","__tmpop_right","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee"],
2192
2199
  usedTypes:[7,195],
2193
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2200
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2194
2201
  table:1,
2195
2202
  };
2196
2203
  this['#anonymous_9'] = {
@@ -2198,14 +2205,14 @@ wasm:(_,{t,allocPage,glbl,builtin,internalThrow})=>[[16,builtin('__Porffor_alloc
2198
2205
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2199
2206
  locals:[124,127,124,127,124,127,124,124,127,127,124,124,127,124,127,124,127,124,127,124,127,124,127,127,124],localNames:["r","r#type","o","o#type","status","#makearray_pointer_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#typeswitch_tmp2","#last_type","__tmpop_left","__tmpop_right","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee"],
2200
2207
  usedTypes:[7,195],
2201
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2208
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2202
2209
  table:1,
2203
2210
  };
2204
2211
  this['#anonymous_10'] = {
2205
2212
  wasm:(_,{t,glbl,internalThrow})=>[...glbl(35,'_allRes',124),[33,13],...glbl(35,'_allRes#type',127),[33,14],[2,124],...t([6],()=>[[32,14],[65,6],[70],[4,64],...glbl(35,'_allOut',124),...glbl(35,'_allOut#type',127),[33,0],[33,1],[68,0],[65,128,1],[33,2],[33,3],[68,0],[65,128,1],[33,4],[33,5],[68,0],[65,128,1],[33,6],[33,7],[68,0],[65,128,1],[33,8],[33,9],[32,13],[252,3],[34,10],[65,192,0],[108],[65,4],[106],[45,0,128,128,4,"read func lut"],[33,11],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,10],[65,192,0],[108],[47,0,128,128,4,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,11],[65,1],[113],[4,124],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,10],[17,2,0,"no_type_return"],[5],[32,10],[17,0,0,"no_type_return"],[11],[5],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,10],[17,2,0],[26],[5],[32,10],[17,0,0],[26],[11],[11],[12,5],[11],[32,11],[65,1],[113],[4,124],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,10],[17,3,0,"no_type_return"],[5],[32,1],[32,0],[32,10],[17,1,0,"no_type_return"],[11],[5],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,10],[17,3,0],[26],[5],[32,1],[32,0],[32,10],[17,1,0],[26],[11],[11],[12,4],[11],[32,11],[65,1],[113],[4,124],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,10],[17,4,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,10],[17,2,0,"no_type_return"],[11],[5],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,10],[17,4,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,10],[17,2,0],[26],[11],[11],[12,3],[11],[32,11],[65,1],[113],[4,124],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,10],[17,5,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,10],[17,3,0,"no_type_return"],[11],[5],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,10],[17,5,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,10],[17,3,0],[26],[11],[11],[12,2],[11],[32,11],[65,1],[113],[4,124],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,10],[17,6,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,10],[17,4,0,"no_type_return"],[11],[5],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,10],[17,6,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,10],[17,4,0],[26],[11],[11],[12,1],[11],[32,11],[65,1],[113],[4,124],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,10],[17,7,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,10],[17,5,0,"no_type_return"],[11],[5],[32,11],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,10],[17,7,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,9],[32,8],[32,10],[17,5,0],[26],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`_allRes is not a function`),[68,0],[11],[26],[68,0],[65,128,1],[15]],
2206
2213
  params:[],typedParams:1,returns:[124,127],typedReturns:1,
2207
2214
  locals:[127,124,127,124,127,124,127,124,127,124,127,127,127,124,127],localNames:["#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp1"],
2208
- globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2215
+ globalInits:{jobQueue:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: promise.ts/jobQueue','f64'),124),...glbl(36,'jobQueue',124),...glbl(35,'jobQueue',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},
2209
2216
  table:1,
2210
2217
  };
2211
2218
  this.__Promise_prototype_toString = {
@@ -2745,14 +2752,14 @@ wasm:(_,{glbl,builtin})=>[[68,0],[33,2],[65,128,1],[33,3],[32,1],[184],[68,128],
2745
2752
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2746
2753
  locals:[124,127,127,124],localNames:["description","description#type","descString","descString#type","#last_type","sym"],
2747
2754
  usedTypes:[80,5],
2748
- globalInits:{descStore:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: symbol.ts/descStore','f64'),124),...glbl(36,'descStore',124),...glbl(35,'descStore',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],forStore:(_,{glbl,loc,builtin})=>[[68,9],[65,6],[68,0],[65,7],[68,0],[65,128,1],[16,builtin('Map')],[34,loc('#last_type',127)],[26],...glbl(36,'forStore',124)]},
2755
+ globalInits:{descStore:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: symbol.ts/descStore','f64'),124),...glbl(36,'descStore',124),...glbl(35,'descStore',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],forStore:(_,{glbl,loc,builtin})=>[[68,9],[65,6],[68,0],[65,7],[68,0],[65,128,1],[16,builtin('Map')],[34,loc('#last_type',127)],[26],...glbl(36,'forStore',124)]},
2749
2756
  };
2750
2757
  this.__Symbol_prototype_description$get = {
2751
2758
  wasm:(_,{glbl,internalThrow})=>[[32,1],[65,5],[71],[4,64],...internalThrow(_,'TypeError',`Symbol.prototype.description$get expects 'this' to be a Symbol`),[11],...glbl(35,'descStore',124),[33,2],[32,0],[68,1],[161],[34,3],[252,3],[65,9],[108],[32,2],[252,3],[106],[34,5],[43,0,4],[32,5],[45,0,12],[34,4],[15]],
2752
2759
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2753
2760
  locals:[124,124,127,127],localNames:["_this","_this#type","#member_obj","#member_prop","#last_type","#loadArray_offset"],
2754
2761
  usedTypes:[80],
2755
- globalInits:{descStore:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: symbol.ts/descStore','f64'),124),...glbl(36,'descStore',124),...glbl(35,'descStore',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],forStore:(_,{glbl,loc,builtin})=>[[68,9],[65,6],[68,0],[65,7],[68,0],[65,128,1],[16,builtin('Map')],[34,loc('#last_type',127)],[26],...glbl(36,'forStore',124)]},
2762
+ globalInits:{descStore:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: symbol.ts/descStore','f64'),124),...glbl(36,'descStore',124),...glbl(35,'descStore',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],forStore:(_,{glbl,loc,builtin})=>[[68,9],[65,6],[68,0],[65,7],[68,0],[65,128,1],[16,builtin('Map')],[34,loc('#last_type',127)],[26],...glbl(36,'forStore',124)]},
2756
2763
  };
2757
2764
  this.__Symbol_prototype_toString = {
2758
2765
  wasm:(_,{builtin,internalThrow})=>[[32,1],[65,5],[71],[4,64],...internalThrow(_,'TypeError',`Symbol.prototype.toString expects 'this' to be a Symbol`),[11],[16,builtin('__Porffor_allocate')],[183],[34,2],[252,2],[65,211,0],[58,0,4],[32,2],[252,2],[65,249,0],[58,0,5],[32,2],[252,2],[65,237,0],[58,0,6],[32,2],[252,2],[65,226,0],[58,0,7],[32,2],[252,2],[65,239,0],[58,0,8],[32,2],[252,2],[65,236,0],[58,0,9],[32,2],[252,2],[65,40],[58,0,10],[32,0],[65,5],[16,builtin('__Symbol_prototype_description$get')],[34,7],[33,4],[33,3],[68,0],[33,8],[32,3],[68,0],[98],[32,4],[65,128,1],[114],[65,128,1],[65,128,1],[114],[71],[114],[4,64],[32,3],[252,3],[40,1,0],[184],[33,8],[32,2],[68,7],[160],[33,9],[32,3],[34,10],[32,8],[160],[33,11],[3,64],[32,10],[32,11],[99],[4,64],[32,9],[32,9],[68,1],[160],[33,9],[252,2],[32,10],[32,10],[68,1],[160],[33,10],[252,2],[45,0,4],[58,0,4],[12,1],[11],[11],[11],[32,2],[32,8],[160],[252,2],[65,41],[58,0,11],[32,2],[252,3],[34,13],[68,8],[32,8],[160],[34,12],[252,3],[54,1,0],[32,2],[65,195,1],[15]],
@@ -2777,14 +2784,14 @@ wasm:(_,{t,glbl,builtin})=>[...glbl(35,'forStore',124),[33,2],[65,20],[33,3],[32
2777
2784
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2778
2785
  locals:[124,127,127,124,127,124],localNames:["key","key#type","#proto_target","#proto_target#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","out"],
2779
2786
  usedTypes:[20,5],
2780
- globalInits:{descStore:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: symbol.ts/descStore','f64'),124),...glbl(36,'descStore',124),...glbl(35,'descStore',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],forStore:(_,{glbl,loc,builtin})=>[[68,9],[65,6],[68,0],[65,7],[68,0],[65,128,1],[16,builtin('Map')],[34,loc('#last_type',127)],[26],...glbl(36,'forStore',124)]},
2787
+ globalInits:{descStore:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: symbol.ts/descStore','f64'),124),...glbl(36,'descStore',124),...glbl(35,'descStore',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],forStore:(_,{glbl,loc,builtin})=>[[68,9],[65,6],[68,0],[65,7],[68,0],[65,128,1],[16,builtin('Map')],[34,loc('#last_type',127)],[26],...glbl(36,'forStore',124)]},
2781
2788
  };
2782
2789
  this.__Symbol_keyFor = {
2783
2790
  wasm:(_,{glbl,builtin,internalThrow})=>[[32,1],[184],[68,5],[98],[4,64],...internalThrow(_,'TypeError',`Symbol.keyFor argument should be a Symbol`),[11],[32,0],[34,2],[65,5],[16,builtin('__Symbol_prototype_description$get')],[34,7],[33,4],[33,3],...glbl(35,'forStore',124),[33,9],[65,20],[33,10],[32,9],[32,10],[32,3],[32,4],[16,builtin('__Map_prototype_get')],[33,7],[33,8],[32,2],[32,8],[97],[4,64],[32,3],[32,4],[15],[11],[68,0],[65,128,1],[15]],
2784
2791
  params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
2785
2792
  locals:[124,124,127,124,127,127,124,124,127],localNames:["arg","arg#type","sym","desc","desc#type","#member_obj","#member_obj#type","#last_type","stored","#proto_target","#proto_target#type"],
2786
2793
  usedTypes:[5,20],
2787
- globalInits:{descStore:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: symbol.ts/descStore','f64'),124),...glbl(36,'descStore',124),...glbl(35,'descStore',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],forStore:(_,{glbl,loc,builtin})=>[[68,9],[65,6],[68,0],[65,7],[68,0],[65,128,1],[16,builtin('Map')],[34,loc('#last_type',127)],[26],...glbl(36,'forStore',124)]},
2794
+ globalInits:{descStore:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: symbol.ts/descStore','f64'),124),...glbl(36,'descStore',124),...glbl(35,'descStore',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],forStore:(_,{glbl,loc,builtin})=>[[68,9],[65,6],[68,0],[65,7],[68,0],[65,128,1],[16,builtin('Map')],[34,loc('#last_type',127)],[26],...glbl(36,'forStore',124)]},
2788
2795
  };
2789
2796
  this.Uint8Array = {
2790
2797
  wasm:(_,{t,allocPage,builtin,internalThrow})=>[[32,0],[33,10],[32,1],[33,11],[2,124],...t([67,195],()=>[[32,11],[65,195,0],[70],[32,11],[65,195,1],[70],[114],[4,64],[32,10],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,10],[68,0],[97],[184],[11],[252,3],[4,64],...internalThrow(_,'TypeError',`Constructor Uint8Array requires 'new'`),[11],[65,12],[16,builtin('__Porffor_allocateBytes')],[183],[34,12],[33,13],[68,0],[33,14],[32,5],[184],[34,16],[68,21],[97],[32,16],[68,22],[97],[114],[4,64],[32,4],[33,15],[32,4],[33,17],[32,5],[33,18],...number(allocPage(_,'bytestring: Uint8Array/#member_prop','i8'),124),[34,19],[252,3],[34,21],[65,8],[54,1,0],[32,21],[65,228,0],[58,0,4],[32,21],[65,229,0],[58,0,5],[32,21],[65,244,0],[58,0,6],[32,21],[65,225,0],[58,0,7],[32,21],[65,227,0],[58,0,8],[32,21],[65,232,0],[58,0,9],[32,21],[65,229,0],[58,0,10],[32,21],[65,228,0],[58,0,11],[32,21],[184],[33,19],[32,5],[33,11],[2,124],...t([21],()=>[[32,11],[65,21],[70],[4,64],[32,17],[32,18],[16,builtin('__ArrayBuffer_prototype_detached$get')],[33,20],[12,1],[11]]),...t([128],()=>[[32,11],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot read property of undefined`),[68,0],[12,1],[11]]),[32,17],[252,2],[32,5],[32,19],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[33,20],[11],[33,10],[32,20],[33,11],[2,127],...t([67,195],()=>[[32,11],[65,195,0],[70],[32,11],[65,195,1],[70],[114],[4,64],[32,10],[252,3],[40,1,0],[12,1],[11]]),[32,10],[252,3],[11],[4,64],...internalThrow(_,'TypeError',`Constructed Uint8Array with a detached ArrayBuffer`),[11],[68,0],[33,22],[32,7],[184],[68,128],[98],[4,64],[32,6],[16,builtin('__Math_trunc')],[33,22],[11],[32,22],[68,0],[99],[4,64],...internalThrow(_,'RangeError',`Invalid DataView byte offset (negative)`),[11],[32,13],[252,2],[32,22],[252,2],[54,0,8],[32,13],[252,2],[32,15],[32,22],[160],[252,2],[54,0,4],[32,9],[184],[68,128],[97],[4,64],[32,15],[252,2],[40,0,0],[183],[34,23],[32,6],[161],[68,1],[163],[34,14],[16,builtin('__Number_isInteger')],[68,0],[97],[4,64],...internalThrow(_,'RangeError',`Byte length of Uint8Array should be divisible by BYTES_PER_ELEMENT`),[11],[5],[32,8],[16,builtin('__Math_trunc')],[33,14],[11],[5],[16,builtin('__Porffor_allocate')],[183],[33,15],[32,13],[252,2],[32,15],[252,2],[54,0,4],[32,16],[68,80],[97],[32,16],[68,67],[97],[114],[32,16],[68,195],[97],[114],[32,16],[68,19],[97],[114],[32,16],[68,88],[102],[32,16],[68,96],[101],[113],[114],[4,64],[68,0],[33,24],[32,4],[252,3],[33,25],[32,5],[33,28],[65,0],[33,27],[32,28],[65,208,0],[70],[32,28],[65,19],[70],[114],[32,28],[65,195,0],[70],[114],[32,28],[65,195,1],[70],[114],[32,28],[65,216,0],[78],[32,28],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,25],[40,1,0],[34,26],[4,64],[32,28],[33,11],[2,64],...t([19],()=>[[32,11],[65,19],[70],[4,64],[3,64],[32,25],[43,0,4],[33,29],[32,25],[45,0,12],[33,30],[32,29],[33,31],[32,30],[33,32],[2,64],[32,12],[33,17],[32,24],[32,24],[68,1],[160],[33,24],[33,35],[32,17],[252,3],[40,0,4],[32,35],[252,3],[106],[32,31],[34,33],[252,3],[58,0,4],[32,25],[65,9],[106],[33,25],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,11],[65,195,0],[70],[4,64],[65,195,0],[33,30],[16,builtin('__Porffor_allocate')],[34,36],[65,1],[54,0,0],[3,64],[32,36],[32,25],[47,0,4],[59,0,4],[32,36],[184],[34,29],[33,31],[32,30],[33,32],[2,64],[32,12],[33,17],[32,24],[32,24],[68,1],[160],[33,24],[33,35],[32,17],[252,3],[40,0,4],[32,35],[252,3],[106],[32,31],[34,33],[252,3],[58,0,4],[32,25],[65,2],[106],[33,25],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,11],[65,208,0],[70],[4,64],[3,64],[32,25],[43,0,4],[33,29],[32,25],[45,0,12],[33,30],[32,29],[33,31],[32,30],[33,32],[2,64],[32,12],[33,17],[32,24],[32,24],[68,1],[160],[33,24],[33,35],[32,17],[252,3],[40,0,4],[32,35],[252,3],[106],[32,31],[34,33],[252,3],[58,0,4],[32,25],[65,9],[106],[33,25],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,11],[65,216,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[106],[45,0,4],[184],[34,29],[33,31],[32,30],[33,32],[2,64],[32,12],[33,17],[32,24],[32,24],[68,1],[160],[33,24],[33,35],[32,17],[252,3],[40,0,4],[32,35],[252,3],[106],[32,31],[34,33],[252,3],[58,0,4],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,11],[65,217,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[106],[44,0,4],[183],[34,29],[33,31],[32,30],[33,32],[2,64],[32,12],[33,17],[32,24],[32,24],[68,1],[160],[33,24],[33,35],[32,17],[252,3],[40,0,4],[32,35],[252,3],[106],[32,31],[34,33],[252,3],[58,0,4],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,11],[65,218,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[106],[45,0,4],[184],[34,29],[33,31],[32,30],[33,32],[2,64],[32,12],[33,17],[32,24],[32,24],[68,1],[160],[33,24],[33,35],[32,17],[252,3],[40,0,4],[32,35],[252,3],[106],[32,31],[34,33],[252,3],[58,0,4],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,11],[65,219,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[65,2],[108],[106],[47,0,4],[184],[34,29],[33,31],[32,30],[33,32],[2,64],[32,12],[33,17],[32,24],[32,24],[68,1],[160],[33,24],[33,35],[32,17],[252,3],[40,0,4],[32,35],[252,3],[106],[32,31],[34,33],[252,3],[58,0,4],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,11],[65,220,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[65,2],[108],[106],[46,0,4],[183],[34,29],[33,31],[32,30],[33,32],[2,64],[32,12],[33,17],[32,24],[32,24],[68,1],[160],[33,24],[33,35],[32,17],[252,3],[40,0,4],[32,35],[252,3],[106],[32,31],[34,33],[252,3],[58,0,4],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,11],[65,221,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[65,4],[108],[106],[40,0,4],[184],[34,29],[33,31],[32,30],[33,32],[2,64],[32,12],[33,17],[32,24],[32,24],[68,1],[160],[33,24],[33,35],[32,17],[252,3],[40,0,4],[32,35],[252,3],[106],[32,31],[34,33],[252,3],[58,0,4],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,11],[65,222,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[65,4],[108],[106],[40,0,4],[183],[34,29],[33,31],[32,30],[33,32],[2,64],[32,12],[33,17],[32,24],[32,24],[68,1],[160],[33,24],[33,35],[32,17],[252,3],[40,0,4],[32,35],[252,3],[106],[32,31],[34,33],[252,3],[58,0,4],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,11],[65,223,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[65,4],[108],[106],[42,0,4],[187],[34,29],[33,31],[32,30],[33,32],[2,64],[32,12],[33,17],[32,24],[32,24],[68,1],[160],[33,24],[33,35],[32,17],[252,3],[40,0,4],[32,35],[252,3],[106],[32,31],[34,33],[252,3],[58,0,4],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,11],[65,224,0],[70],[4,64],[65,1],[33,30],[3,64],[32,25],[40,0,4],[32,27],[65,8],[108],[106],[43,0,4],[34,29],[33,31],[32,30],[33,32],[2,64],[32,12],[33,17],[32,24],[32,24],[68,1],[160],[33,24],[33,35],[32,17],[252,3],[40,0,4],[32,35],[252,3],[106],[32,31],[34,33],[252,3],[58,0,4],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,11],[65,195,1],[70],[4,64],[65,195,1],[33,30],[16,builtin('__Porffor_allocate')],[34,36],[65,1],[54,0,0],[3,64],[32,36],[32,25],[32,27],[106],[45,0,4],[58,0,4],[32,36],[184],[34,29],[33,31],[32,30],[33,32],[2,64],[32,12],[33,17],[32,24],[32,24],[68,1],[160],[33,24],[33,35],[32,17],[252,3],[40,0,4],[32,35],[252,3],[106],[32,31],[34,33],[252,3],[58,0,4],[32,27],[65,1],[106],[34,27],[32,26],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],[32,24],[33,14],[5],[32,16],[68,1],[97],[4,64],[32,4],[16,builtin('__Math_trunc')],[33,14],[11],[11],[32,15],[252,2],[32,14],[68,1],[162],[252,2],[54,0,0],[11],[32,14],[68,0],[99],[4,64],...internalThrow(_,'RangeError',`Invalid TypedArray length (negative)`),[11],[32,14],[68,4294967295],[100],[4,64],...internalThrow(_,'RangeError',`Invalid ArrayBuffer length (over 32 bit address space)`),[11],[32,13],[252,2],[32,14],[252,2],[54,0,0],[32,12],[65,216,0],[15]],
@@ -6223,38 +6223,6 @@ const generateCode = (scope, decl) => {
6223
6223
  };
6224
6224
 
6225
6225
  const internalConstrs = {
6226
- Array: {
6227
- generate: (scope, decl, global, name) => {
6228
- // new Array(i0, i1, ...)
6229
- if (decl.arguments.length > 1) return generateArray(scope, {
6230
- elements: decl.arguments
6231
- }, global, name);
6232
-
6233
- // new Array(n)
6234
- const [ out, pointer ] = makeArray(scope, {
6235
- rawElements: new Array(0)
6236
- }, global, name, true, undefined, true, true);
6237
-
6238
- const arg = decl.arguments[0] ?? DEFAULT_VALUE();
6239
-
6240
- // todo: check in wasm instead of here
6241
- const literalValue = arg.value ?? 0;
6242
- if (literalValue < 0 || !Number.isFinite(literalValue) || literalValue > 4294967295) return internalThrow(scope, 'RangeError', 'Invalid array length', true);
6243
-
6244
- return [
6245
- ...out,
6246
- ...generate(scope, arg, global, name),
6247
- Opcodes.i32_to_u,
6248
- [ Opcodes.i32_store, Math.log2(ValtypeSize.i32) - 1, 0 ],
6249
-
6250
- ...pointer,
6251
- Opcodes.i32_from_u
6252
- ];
6253
- },
6254
- type: TYPES.array,
6255
- length: 1
6256
- },
6257
-
6258
6226
  __Array_of: {
6259
6227
  // this is not a constructor but best fits internal structure here
6260
6228
  generate: (scope, decl, global, name) => {
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.40.3+5f310db4d",
4
+ "version": "0.40.4+cc1f25444",
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.40.3+5f310db4d';
3
+ globalThis.version = '0.40.4+cc1f25444';
4
4
 
5
5
  // deno compat
6
6
  if (typeof process === 'undefined' && typeof Deno !== 'undefined') {