porffor 0.25.6 → 0.25.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/compiler/builtins/promise.ts +11 -11
- package/compiler/builtins_precompiled.js +37 -27
- package/compiler/codegen.js +55 -14
- package/compiler/diagram.js +31 -0
- package/compiler/index.js +30 -0
- package/package.json +1 -1
- package/runner/index.js +7 -27
package/README.md
CHANGED
@@ -236,6 +236,7 @@ Porffor can run Test262 via some hacks/transforms which remove unsupported featu
|
|
236
236
|
- `codegen.js`: code (wasm) generation, ast -> wasm. The bulk of the effort
|
237
237
|
- `cyclone.js`: wasm partial constant evaluator (it is fast and dangerous hence "cyclone")
|
238
238
|
- `decompile.js`: basic wasm decompiler for debug info
|
239
|
+
- `diagram.js`: produces [Mermaid](https://mermaid.js.org) graphs
|
239
240
|
- `embedding.js`: utils for embedding consts
|
240
241
|
- `encoding.js`: utils for encoding things as bytes as wasm expects
|
241
242
|
- `expression.js`: mapping most operators to an opcode (advanced are as built-ins eg `f64_%`)
|
@@ -94,25 +94,23 @@ export const __ecma262_RejectPromise = (promise: any[], reason: any): void => {
|
|
94
94
|
|
95
95
|
export const __Porffor_promise_noop = () => {};
|
96
96
|
|
97
|
-
|
98
|
-
let activePromise: any;
|
99
|
-
export const __Porffor_promise_resolve = (value: any): any => {
|
97
|
+
export const __Porffor_promise_resolve = (promise: any, value: any): any => {
|
100
98
|
// todo: if value is own promise, reject with typeerror
|
101
99
|
|
102
100
|
if (__ecma262_IsPromise(value)) {
|
103
101
|
// todo
|
104
102
|
} else {
|
105
|
-
__ecma262_FulfillPromise(
|
103
|
+
__ecma262_FulfillPromise(promise, value);
|
106
104
|
}
|
107
105
|
|
108
106
|
return undefined;
|
109
107
|
};
|
110
108
|
|
111
|
-
export const __Porffor_promise_reject = (reason: any): any => {
|
109
|
+
export const __Porffor_promise_reject = (promise: any, reason: any): any => {
|
112
110
|
if (__ecma262_IsPromise(reason)) {
|
113
111
|
// todo
|
114
112
|
} else {
|
115
|
-
__ecma262_RejectPromise(
|
113
|
+
__ecma262_RejectPromise(promise, reason);
|
116
114
|
}
|
117
115
|
|
118
116
|
return undefined;
|
@@ -181,6 +179,10 @@ export const __Porffor_promise_runJobs = () => {
|
|
181
179
|
}
|
182
180
|
};
|
183
181
|
|
182
|
+
// hack: cannot share scope so use a global
|
183
|
+
let activePromise: any;
|
184
|
+
export const __Porffor_promise_resolveActive = (value: any) => __Porffor_promise_resolve(activePromise, value);
|
185
|
+
export const __Porffor_promise_rejectActive = (reason: any) => __Porffor_promise_reject(activePromise, reason);
|
184
186
|
|
185
187
|
export const Promise = function (executor: any): void {
|
186
188
|
if (!new.target) throw new TypeError("Constructor Promise requires 'new'");
|
@@ -189,7 +191,7 @@ export const Promise = function (executor: any): void {
|
|
189
191
|
const obj: any[] = __Porffor_promise_create();
|
190
192
|
|
191
193
|
activePromise = obj;
|
192
|
-
executor(
|
194
|
+
executor(__Porffor_promise_resolveActive, __Porffor_promise_rejectActive);
|
193
195
|
|
194
196
|
const pro: Promise = obj;
|
195
197
|
return pro;
|
@@ -198,8 +200,7 @@ export const Promise = function (executor: any): void {
|
|
198
200
|
export const __Promise_resolve = (value: any): Promise => {
|
199
201
|
const obj: any[] = __Porffor_promise_create();
|
200
202
|
|
201
|
-
|
202
|
-
__Porffor_promise_resolve(value);
|
203
|
+
__Porffor_promise_resolve(obj, value);
|
203
204
|
|
204
205
|
const pro: Promise = obj;
|
205
206
|
return pro;
|
@@ -208,8 +209,7 @@ export const __Promise_resolve = (value: any): Promise => {
|
|
208
209
|
export const __Promise_reject = (reason: any): Promise => {
|
209
210
|
const obj: any[] = __Porffor_promise_create();
|
210
211
|
|
211
|
-
|
212
|
-
__Porffor_promise_reject(reason);
|
212
|
+
__Porffor_promise_reject(obj, reason);
|
213
213
|
|
214
214
|
const pro: Promise = obj;
|
215
215
|
return pro;
|
@@ -1921,18 +1921,16 @@ export const BuiltinFuncs = function() {
|
|
1921
1921
|
locals: [], localNames: [],
|
1922
1922
|
};
|
1923
1923
|
this.__Porffor_promise_resolve = {
|
1924
|
-
wasm: (scope, {
|
1925
|
-
params: [124,127], typedParams: 1,
|
1924
|
+
wasm: (scope, {builtin}) => [[32,2],[32,3],[16, ...builtin('__ecma262_IsPromise')],[33,4],[33,5],[32,4],[33,6],[2,127],[32,6],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,5],[252,3],[40,1,0],[12,1],[11],[32,6],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,5],[252,3],[40,1,0],[12,1],[11],[32,5],[252,3],[11,"TYPESWITCH_end"],[4,64],[5],[32,0],[32,1],[32,2],[32,3],[16, ...builtin('__ecma262_FulfillPromise')],[33,4],[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
1925
|
+
params: [124,127,124,127], typedParams: 1,
|
1926
1926
|
returns: [124,127], typedReturns: 1,
|
1927
|
-
locals: [127,124,127], localNames: ["value","value#type","#last_type","#logicinner_tmp","#typeswitch_tmp"],
|
1928
|
-
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
1927
|
+
locals: [127,124,127], localNames: ["promise","promise#type","value","value#type","#last_type","#logicinner_tmp","#typeswitch_tmp"],
|
1929
1928
|
};
|
1930
1929
|
this.__Porffor_promise_reject = {
|
1931
|
-
wasm: (scope, {
|
1932
|
-
params: [124,127], typedParams: 1,
|
1930
|
+
wasm: (scope, {builtin}) => [[32,2],[32,3],[16, ...builtin('__ecma262_IsPromise')],[33,4],[33,5],[32,4],[33,6],[2,127],[32,6],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,5],[252,3],[40,1,0],[12,1],[11],[32,6],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,5],[252,3],[40,1,0],[12,1],[11],[32,5],[252,3],[11,"TYPESWITCH_end"],[4,64],[5],[32,0],[32,1],[32,2],[32,3],[16, ...builtin('__ecma262_RejectPromise')],[33,4],[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
1931
|
+
params: [124,127,124,127], typedParams: 1,
|
1933
1932
|
returns: [124,127], typedReturns: 1,
|
1934
|
-
locals: [127,124,127], localNames: ["reason","reason#type","#last_type","#logicinner_tmp","#typeswitch_tmp"],
|
1935
|
-
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
1933
|
+
locals: [127,124,127], localNames: ["promise","promise#type","reason","reason#type","#last_type","#logicinner_tmp","#typeswitch_tmp"],
|
1936
1934
|
};
|
1937
1935
|
this.__Porffor_promise_create = {
|
1938
1936
|
wasm: (scope, {builtin}) => [[65,40],[16, ...builtin('__Porffor_allocateBytes')],[183],[34,0],[33,3],[68,0,0,0,0,0,0,0,0],[33,4],[32,3],[252,3],[32,4],[252,3],[65,9],[108],[106],[34,2],[68,0,0,0,0,0,0,0,0],[34,1],[57,0,4],[32,2],[65,128,1],[58,0,12],[32,0],[33,3],[68,0,0,0,0,0,0,240,63],[33,4],[32,3],[252,3],[32,4],[252,3],[65,9],[108],[106],[34,2],[68,0,0,0,0,0,0,0,0],[34,1],[57,0,4],[32,2],[65,1],[58,0,12],[65,128,2],[16, ...builtin('__Porffor_allocateBytes')],[183],[33,6],[32,0],[33,3],[68,0,0,0,0,0,0,0,64],[33,4],[32,3],[252,3],[32,4],[252,3],[65,9],[108],[106],[34,2],[32,6],[34,1],[57,0,4],[32,2],[65,208,0],[58,0,12],[65,128,2],[16, ...builtin('__Porffor_allocateBytes')],[183],[33,7],[32,0],[33,3],[68,0,0,0,0,0,0,8,64],[33,4],[32,3],[252,3],[32,4],[252,3],[65,9],[108],[106],[34,2],[32,7],[34,1],[57,0,4],[32,2],[65,208,0],[58,0,12],[32,0],[65,208,0],[15]],
|
@@ -1960,8 +1958,22 @@ export const BuiltinFuncs = function() {
|
|
1960
1958
|
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
1961
1959
|
table: 1,
|
1962
1960
|
};
|
1961
|
+
this.__Porffor_promise_resolveActive = {
|
1962
|
+
wasm: (scope, {glbl,builtin}) => [...glbl(35, 'activePromise', 124),...glbl(35, 'activePromise#type', 127),[32,0],[32,1],[16, ...builtin('__Porffor_promise_resolve')],[34,2],[15]],
|
1963
|
+
params: [124,127], typedParams: 1,
|
1964
|
+
returns: [124,127], typedReturns: 1,
|
1965
|
+
locals: [127], localNames: ["value","value#type","#last_type"],
|
1966
|
+
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
1967
|
+
};
|
1968
|
+
this.__Porffor_promise_rejectActive = {
|
1969
|
+
wasm: (scope, {glbl,builtin}) => [...glbl(35, 'activePromise', 124),...glbl(35, 'activePromise#type', 127),[32,0],[32,1],[16, ...builtin('__Porffor_promise_reject')],[34,2],[15]],
|
1970
|
+
params: [124,127], typedParams: 1,
|
1971
|
+
returns: [124,127], typedReturns: 1,
|
1972
|
+
locals: [127], localNames: ["reason","reason#type","#last_type"],
|
1973
|
+
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
1974
|
+
};
|
1963
1975
|
this.Promise = {
|
1964
|
-
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[33,6],[32,1],[33,7],[2,124],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,6],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Constructor Promise requires 'new'`),[11],[32,4],[32,5],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,24,64],[98],[4,64],...internalThrow(scope, 'TypeError', `Promise executor is not a function`),[11],[16, ...builtin('__Porffor_promise_create')],[26],[34,8],...glbl(36, 'activePromise', 124),...glbl(35, 'activePromise', 124),[65,208,0],...glbl(36, 'activePromise#type', 127),[26],[32,4],[33,18],[32,5],[33,7],[2,124],[32,7],[65,6],[70],[4,64,"TYPESWITCH|Function"],[68,...builtin('
|
1976
|
+
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[33,6],[32,1],[33,7],[2,124],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,6],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Constructor Promise requires 'new'`),[11],[32,4],[32,5],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,24,64],[98],[4,64],...internalThrow(scope, 'TypeError', `Promise executor is not a function`),[11],[16, ...builtin('__Porffor_promise_create')],[26],[34,8],...glbl(36, 'activePromise', 124),...glbl(35, 'activePromise', 124),[65,208,0],...glbl(36, 'activePromise#type', 127),[26],[32,4],[33,18],[32,5],[33,7],[2,124],[32,7],[65,6],[70],[4,64,"TYPESWITCH|Function"],[68,...builtin('__Porffor_promise_resolveActive', true, true)],[65,6],[33,10],[33,11],[68,...builtin('__Porffor_promise_rejectActive', true, true)],[65,6],[33,12],[33,13],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,14],[33,15],[32,18],[252,3],[34,16],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,17],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `executor is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,16],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,17],[65,1],[113],[4,124],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,16],[17,2,0,"no_type_return"],[5],[32,16],[17,0,0,"no_type_return"],[11],[5],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,16],[17,2,0],[33,9],[5],[32,16],[17,0,0],[33,9],[11],[11],[12,3],[11],[32,17],[65,1],[113],[4,124],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,16],[17,3,0,"no_type_return"],[5],[32,11],[32,10],[32,16],[17,1,0,"no_type_return"],[11],[5],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,16],[17,3,0],[33,9],[5],[32,11],[32,10],[32,16],[17,1,0],[33,9],[11],[11],[12,2],[11],[32,17],[65,1],[113],[4,124],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,13],[32,12],[32,16],[17,4,0,"no_type_return"],[5],[32,11],[32,10],[32,13],[32,12],[32,16],[17,2,0,"no_type_return"],[11],[5],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,13],[32,12],[32,16],[17,4,0],[33,9],[5],[32,11],[32,10],[32,13],[32,12],[32,16],[17,2,0],[33,9],[11],[11],[12,1],[11],[32,17],[65,1],[113],[4,124],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,16],[17,5,0,"no_type_return"],[5],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,16],[17,3,0,"no_type_return"],[11],[5],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,16],[17,5,0],[33,9],[5],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,16],[17,3,0],[33,9],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `executor is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[32,8],[34,19],[65,36],[15]],
|
1965
1977
|
params: [124,127,124,127,124,127], typedParams: 1,
|
1966
1978
|
returns: [124,127], typedReturns: 1,
|
1967
1979
|
locals: [124,127,124,127,127,124,127,124,127,124,127,127,124,124], localNames: ["#newtarget","#newtarget#type","#this","#this#type","executor","executor#type","#logicinner_tmp","#typeswitch_tmp","obj","#last_type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#indirect_callee","pro"],
|
@@ -1969,18 +1981,16 @@ export const BuiltinFuncs = function() {
|
|
1969
1981
|
table: 1, constr: 1,
|
1970
1982
|
};
|
1971
1983
|
this.__Promise_resolve = {
|
1972
|
-
wasm: (scope, {
|
1984
|
+
wasm: (scope, {builtin}) => [[16, ...builtin('__Porffor_promise_create')],[26],[34,2],[65,208,0],[32,0],[32,1],[16, ...builtin('__Porffor_promise_resolve')],[33,3],[26],[32,2],[34,4],[65,36],[15]],
|
1973
1985
|
params: [124,127], typedParams: 1,
|
1974
1986
|
returns: [124,127], typedReturns: 1,
|
1975
1987
|
locals: [124,127,124], localNames: ["value","value#type","obj","#last_type","pro"],
|
1976
|
-
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
1977
1988
|
};
|
1978
1989
|
this.__Promise_reject = {
|
1979
|
-
wasm: (scope, {
|
1990
|
+
wasm: (scope, {builtin}) => [[16, ...builtin('__Porffor_promise_create')],[26],[34,2],[65,208,0],[32,0],[32,1],[16, ...builtin('__Porffor_promise_reject')],[33,3],[26],[32,2],[34,4],[65,36],[15]],
|
1980
1991
|
params: [124,127], typedParams: 1,
|
1981
1992
|
returns: [124,127], typedReturns: 1,
|
1982
1993
|
locals: [124,127,124], localNames: ["reason","reason#type","obj","#last_type","pro"],
|
1983
|
-
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
1984
1994
|
};
|
1985
1995
|
this.__Promise_prototype_then = {
|
1986
1996
|
wasm: (scope, {builtin,internalThrow}) => [[32,0],[32,1],[16, ...builtin('__ecma262_IsPromise')],[33,6],[33,7],[32,6],[33,8],[2,124],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,7],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `Promise.prototype.then called on non-Promise`),[11],[32,2],[32,3],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,24,64],[98],[4,64],[68,...builtin('__Porffor_promise_noop', true, true)],[34,2],[65,6],[33,3],[26],[11],[32,4],[32,5],[16, ...builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,24,64],[98],[4,64],[68,...builtin('__Porffor_promise_noop', true, true)],[34,4],[65,6],[33,5],[26],[11],[32,0],[34,9],[33,11],[68,0,0,0,0,0,0,240,63],[34,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[26],[33,10],[16, ...builtin('__Porffor_promise_create')],[26],[33,16],[32,2],[32,3],[32,16],[65,208,0],[68,0,0,0,0,0,0,0,0],[65,1],[16, ...builtin('__Porffor_promise_newReaction')],[26],[33,17],[32,4],[32,5],[32,16],[65,208,0],[68,0,0,0,0,0,0,0,0],[65,1],[16, ...builtin('__Porffor_promise_newReaction')],[26],[33,18],[32,10],[68,0,0,0,0,0,0,0,0],[97],[4,64],[32,9],[33,11],[68,0,0,0,0,0,0,0,64],[34,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[26],[34,19],[65,208,0],[32,17],[65,208,0],[16, ...builtin('__Porffor_fastPush')],[33,6],[26],[32,9],[33,11],[68,0,0,0,0,0,0,8,64],[34,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[26],[34,20],[65,208,0],[32,18],[65,208,0],[16, ...builtin('__Porffor_fastPush')],[33,6],[26],[5],[32,10],[68,0,0,0,0,0,0,240,63],[97],[4,64],[32,9],[33,11],[68,0,0,0,0,0,0,0,0],[34,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,22],[33,21],[32,17],[65,208,0],[32,21],[32,22],[16, ...builtin('__ecma262_NewPromiseReactionJob')],[34,6],[16, ...builtin('__ecma262_HostEnqueuePromiseJob')],[33,6],[26],[5],[32,9],[33,11],[68,0,0,0,0,0,0,0,0],[34,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,24],[33,23],[32,18],[65,208,0],[32,23],[32,24],[16, ...builtin('__ecma262_NewPromiseReactionJob')],[34,6],[16, ...builtin('__ecma262_HostEnqueuePromiseJob')],[33,6],[26],[11],[11],[32,16],[34,25],[65,36],[15]],
|
@@ -2001,21 +2011,21 @@ export const BuiltinFuncs = function() {
|
|
2001
2011
|
locals: [127,124,127,124,124,124,124,127,127,127,124,124,124,124,124,127,124], localNames: ["_this","_this#type","onFinally","onFinally#type","#last_type","#logicinner_tmp","#typeswitch_tmp","promise","state","#member_obj","#member_prop","#loadArray_offset","#member_allocd","#swap","outPromise","finallyReaction","fulfillReactions","rejectReactions","value","value#type","pro"],
|
2002
2012
|
};
|
2003
2013
|
this.__Promise_all = {
|
2004
|
-
wasm: (scope, {glbl,builtin}) => [[32,0],...glbl(36, '_allPromises', 124),...glbl(35, '_allPromises', 124),[32,1],...glbl(36, '_allPromises#type', 127),[26],[68,0,0,0,0,0,0,
|
2014
|
+
wasm: (scope, {glbl,builtin}) => [[32,0],...glbl(36, '_allPromises', 124),...glbl(35, '_allPromises', 124),[32,1],...glbl(36, '_allPromises#type', 127),[26],[68,0,0,0,0,0,0,56,64],[65,6],[16, ...builtin('__Porffor_allocate')],[184],[65,7],[68,...builtin('anonymous_fa70db224c50', true, true)],[65,6],[16, ...builtin('Promise')],[34,2],[15]],
|
2005
2015
|
params: [124,127], typedParams: 1,
|
2006
2016
|
returns: [124,127], typedReturns: 1,
|
2007
2017
|
locals: [127], localNames: ["promises","promises#type","#last_type"],
|
2008
2018
|
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
2009
2019
|
};
|
2010
|
-
this.
|
2011
|
-
wasm: (scope, {glbl,builtin,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,0,0,0,0,0,0,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],[65,0],[33,7],[32,5],[40,1,0],[34,6],[4,64],...glbl(35, '_allPromises#type', 127),[33,12],[2,64],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a71b9f6d01c0', true, true)],[65,6],[68,...builtin('anonymous_1a03f3263500', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[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],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,195,0],[33,9],[16, ...builtin('__Porffor_allocate')],[34,15],[65,1],[54,0,0],[3,64],[32,15],[32,5],[47,0,4],[59,0,4],[32,15],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a71b9f6d01c0', true, true)],[65,6],[68,...builtin('anonymous_1a03f3263500', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[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],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a71b9f6d01c0', true, true)],[65,6],[68,...builtin('anonymous_1a03f3263500', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[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],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a71b9f6d01c0', true, true)],[65,6],[68,...builtin('anonymous_1a03f3263500', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[44,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a71b9f6d01c0', true, true)],[65,6],[68,...builtin('anonymous_1a03f3263500', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a71b9f6d01c0', true, true)],[65,6],[68,...builtin('anonymous_1a03f3263500', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[47,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a71b9f6d01c0', true, true)],[65,6],[68,...builtin('anonymous_1a03f3263500', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[46,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a71b9f6d01c0', true, true)],[65,6],[68,...builtin('anonymous_1a03f3263500', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a71b9f6d01c0', true, true)],[65,6],[68,...builtin('anonymous_1a03f3263500', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a71b9f6d01c0', true, true)],[65,6],[68,...builtin('anonymous_1a03f3263500', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[42,0,4],[187],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a71b9f6d01c0', true, true)],[65,6],[68,...builtin('anonymous_1a03f3263500', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,8],[108],[106],[43,0,4],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a71b9f6d01c0', true, true)],[65,6],[68,...builtin('anonymous_1a03f3263500', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,195,1],[33,9],[16, ...builtin('__Porffor_allocate')],[34,15],[65,1],[54,0,0],[3,64],[32,15],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,15],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a71b9f6d01c0', true, true)],[65,6],[68,...builtin('anonymous_1a03f3263500', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[11],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,0,0],[97],[4,64],...glbl(35, '_allRes', 124),[33,24],...glbl(35, '_allRes#type', 127),[33,12],[2,124],[32,12],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[32,24],[252,3],[34,22],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,23],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,22],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,22],[17,2,0,"no_type_return"],[5],[32,22],[17,0,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,22],[17,2,0],[33,10],[5],[32,22],[17,0,0],[33,10],[11],[11],[12,3],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,22],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,22],[17,1,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,22],[17,3,0],[33,10],[5],[32,17],[32,16],[32,22],[17,1,0],[33,10],[11],[11],[12,2],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,22],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,22],[17,2,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,22],[17,4,0],[33,10],[5],[32,17],[32,16],[32,19],[32,18],[32,22],[17,2,0],[33,10],[11],[11],[12,1],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,3,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,5,0],[33,10],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,3,0],[33,10],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),[252,3],[40,1,0],[184],...glbl(35, '_allLen', 124),[97],[4,64],[68,...builtin('anonymous_05321f705450', true, true)],[65,6],[16, ...builtin('__Porffor_promise_runNext')],[33,10],[26],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
2020
|
+
this.anonymous_fa70db224c50 = {
|
2021
|
+
wasm: (scope, {glbl,builtin,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,0,0,0,0,0,0,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],[65,0],[33,7],[32,5],[40,1,0],[34,6],[4,64],...glbl(35, '_allPromises#type', 127),[33,12],[2,64],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[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],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,195,0],[33,9],[16, ...builtin('__Porffor_allocate')],[34,15],[65,1],[54,0,0],[3,64],[32,15],[32,5],[47,0,4],[59,0,4],[32,15],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[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],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[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],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[44,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[47,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[46,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[42,0,4],[187],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,8],[108],[106],[43,0,4],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,195,1],[33,9],[16, ...builtin('__Porffor_allocate')],[34,15],[65,1],[54,0,0],[3,64],[32,15],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,15],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_a618f49822f0', true, true)],[65,6],[68,...builtin('anonymous_6f6aa2660540', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,8],[32,9],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[11],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,0,0],[97],[4,64],...glbl(35, '_allRes', 124),[33,24],...glbl(35, '_allRes#type', 127),[33,12],[2,124],[32,12],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,16],[33,17],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,18],[33,19],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,20],[33,21],[32,24],[252,3],[34,22],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,23],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,22],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,22],[17,2,0,"no_type_return"],[5],[32,22],[17,0,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,22],[17,2,0],[33,10],[5],[32,22],[17,0,0],[33,10],[11],[11],[12,3],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,22],[17,3,0,"no_type_return"],[5],[32,17],[32,16],[32,22],[17,1,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,22],[17,3,0],[33,10],[5],[32,17],[32,16],[32,22],[17,1,0],[33,10],[11],[11],[12,2],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,22],[17,4,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,22],[17,2,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,22],[17,4,0],[33,10],[5],[32,17],[32,16],[32,19],[32,18],[32,22],[17,2,0],[33,10],[11],[11],[12,1],[11],[32,23],[65,1],[113],[4,124],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,5,0,"no_type_return"],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,3,0,"no_type_return"],[11],[5],[32,23],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,5,0],[33,10],[5],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,22],[17,3,0],[33,10],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),[252,3],[40,1,0],[184],...glbl(35, '_allLen', 124),[97],[4,64],[68,...builtin('anonymous_f3446a746cb0', true, true)],[65,6],[16, ...builtin('__Porffor_promise_runNext')],[33,10],[26],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
2012
2022
|
params: [124,127,124,127], typedParams: 1,
|
2013
2023
|
returns: [124,127], typedReturns: 1,
|
2014
2024
|
locals: [124,127,127,127,124,127,127,124,127,124,127,127,127,124,127,124,127,124,127,127,124], localNames: ["res","res#type","rej","rej#type","arr","forof_base_pointer","forof_length","forof_counter","x","x#type","#last_type","#logicinner_tmp","#typeswitch_tmp","#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_func","#indirect_flags","#indirect_callee"],
|
2015
2025
|
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
2016
2026
|
table: 1,
|
2017
2027
|
};
|
2018
|
-
this.
|
2028
|
+
this.anonymous_a618f49822f0 = {
|
2019
2029
|
wasm: (scope, {glbl,builtin,internalThrow}) => [[2,127,"string_only"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,0],[32,1],[16, ...builtin('__Porffor_fastPush')],[33,2],[34,3,"string_only"],...glbl(35, '_allLen', 124),[34,4,"string_only"],[32,2,"string_only|start"],[65,195,1],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[113],[4,64],[32,3],[252,3],[34,5],[32,4],[252,3],[34,7],[71],[4,127],[32,5],[40,0,0],[34,6],[32,7],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,8],[32,6],[33,9],[3,64],[32,8],[32,5],[106],[45,0,4],[32,8],[32,7],[106],[45,0,4],[71],[4,64],[65,0],[12,2],[11],[32,8],[65,1],[106],[34,8],[32,9],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11],[32,2],[65,195,0],[70],[32,2],[65,195,1],[70],[114],...glbl(35, '_allLen#type', 127),[65,195,0],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[114],[114],[4,64],[32,3],[252,3],[34,5],[32,4],[252,3],[34,7],[71],[4,127],[32,5],[40,0,0],[34,6],[32,7],[40,0,0],[32,2],[65,195,1],[70],[4,64],[32,5],[32,6],[16, ...builtin('__Porffor_bytestringToString')],[33,5],[11],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[4,64],[32,7],[32,7],[40,0,0],[16, ...builtin('__Porffor_bytestringToString')],[33,7],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,8],[32,6],[65,2],[108],[33,9],[3,64],[32,8],[32,5],[106],[47,0,4],[32,8],[32,7],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,8],[65,2],[106],[34,8],[32,9],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11,"string_only|end"],[97],[11,"string_only"],[4,64],...glbl(35, '_allRes', 124),[33,18],...glbl(35, '_allRes#type', 127),[33,19],[2,124],[32,19],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,10],[33,11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,12],[33,13],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,14],[33,15],[32,18],[252,3],[34,16],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,17],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,16],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,17],[65,1],[113],[4,124],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,16],[17,2,0,"no_type_return"],[5],[32,16],[17,0,0,"no_type_return"],[11],[5],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,16],[17,2,0],[33,2],[5],[32,16],[17,0,0],[33,2],[11],[11],[12,3],[11],[32,17],[65,1],[113],[4,124],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,16],[17,3,0,"no_type_return"],[5],[32,11],[32,10],[32,16],[17,1,0,"no_type_return"],[11],[5],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,16],[17,3,0],[33,2],[5],[32,11],[32,10],[32,16],[17,1,0],[33,2],[11],[11],[12,2],[11],[32,17],[65,1],[113],[4,124],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,13],[32,12],[32,16],[17,4,0,"no_type_return"],[5],[32,11],[32,10],[32,13],[32,12],[32,16],[17,2,0,"no_type_return"],[11],[5],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,13],[32,12],[32,16],[17,4,0],[33,2],[5],[32,11],[32,10],[32,13],[32,12],[32,16],[17,2,0],[33,2],[11],[11],[12,1],[11],[32,17],[65,1],[113],[4,124],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,16],[17,5,0,"no_type_return"],[5],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,16],[17,3,0,"no_type_return"],[11],[5],[32,17],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,16],[17,5,0],[33,2],[5],[32,11],[32,10],[32,13],[32,12],[32,15],[32,14],[32,16],[17,3,0],[33,2],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
2020
2030
|
params: [124,127], typedParams: 1,
|
2021
2031
|
returns: [124,127], typedReturns: 1,
|
@@ -2023,7 +2033,7 @@ export const BuiltinFuncs = function() {
|
|
2023
2033
|
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
2024
2034
|
table: 1,
|
2025
2035
|
};
|
2026
|
-
this.
|
2036
|
+
this.anonymous_6f6aa2660540 = {
|
2027
2037
|
wasm: (scope, {glbl,builtin,internalThrow}) => [...glbl(35, '_allRej', 124),[33,11],...glbl(35, '_allRej#type', 127),[33,12],[2,124],[32,12],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,0],[32,1],[33,2],[33,3],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,4],[33,5],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,6],[33,7],[32,11],[252,3],[34,8],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,9],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRej is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,8],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,9],[65,1],[113],[4,124],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,8],[17,2,0,"no_type_return"],[5],[32,8],[17,0,0,"no_type_return"],[11],[5],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,8],[17,2,0],[26],[5],[32,8],[17,0,0],[26],[11],[11],[12,3],[11],[32,9],[65,1],[113],[4,124],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,3],[32,2],[32,8],[17,3,0,"no_type_return"],[5],[32,3],[32,2],[32,8],[17,1,0,"no_type_return"],[11],[5],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,3],[32,2],[32,8],[17,3,0],[26],[5],[32,3],[32,2],[32,8],[17,1,0],[26],[11],[11],[12,2],[11],[32,9],[65,1],[113],[4,124],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,3],[32,2],[32,5],[32,4],[32,8],[17,4,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,8],[17,2,0,"no_type_return"],[11],[5],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,3],[32,2],[32,5],[32,4],[32,8],[17,4,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,8],[17,2,0],[26],[11],[11],[12,1],[11],[32,9],[65,1],[113],[4,124],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,8],[17,5,0,"no_type_return"],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,8],[17,3,0,"no_type_return"],[11],[5],[32,9],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,8],[17,5,0],[26],[5],[32,3],[32,2],[32,5],[32,4],[32,7],[32,6],[32,8],[17,3,0],[26],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRej is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
2028
2038
|
params: [124,127], typedParams: 1,
|
2029
2039
|
returns: [124,127], typedReturns: 1,
|
@@ -2031,7 +2041,7 @@ export const BuiltinFuncs = function() {
|
|
2031
2041
|
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
2032
2042
|
table: 1,
|
2033
2043
|
};
|
2034
|
-
this.
|
2044
|
+
this.anonymous_f3446a746cb0 = {
|
2035
2045
|
wasm: (scope, {glbl,builtin,internalThrow}) => [...glbl(35, '_allRes', 124),[33,9],...glbl(35, '_allRes#type', 127),[33,10],[2,124],[32,10],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,0],[33,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,2],[33,3],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,4],[33,5],[32,9],[252,3],[34,6],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,7],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,6],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,6],[17,2,0,"no_type_return"],[5],[32,6],[17,0,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,6],[17,2,0],[26],[5],[32,6],[17,0,0],[26],[11],[11],[12,3],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,6],[17,3,0,"no_type_return"],[5],[32,1],[32,0],[32,6],[17,1,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,6],[17,3,0],[26],[5],[32,1],[32,0],[32,6],[17,1,0],[26],[11],[11],[12,2],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,6],[17,4,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,6],[17,2,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,6],[17,4,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,6],[17,2,0],[26],[11],[11],[12,1],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,5,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,3,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,5,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,3,0],[26],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
2036
2046
|
params: [], typedParams: 1,
|
2037
2047
|
returns: [124,127], typedReturns: 1,
|
@@ -2040,37 +2050,37 @@ export const BuiltinFuncs = function() {
|
|
2040
2050
|
table: 1,
|
2041
2051
|
};
|
2042
2052
|
this.__Promise_allSettled = {
|
2043
|
-
wasm: (scope, {glbl,builtin}) => [[32,0],...glbl(36, '_allPromises', 124),...glbl(35, '_allPromises', 124),[32,1],...glbl(36, '_allPromises#type', 127),[26],[68,0,0,0,0,0,0,
|
2053
|
+
wasm: (scope, {glbl,builtin}) => [[32,0],...glbl(36, '_allPromises', 124),...glbl(35, '_allPromises', 124),[32,1],...glbl(36, '_allPromises#type', 127),[26],[68,0,0,0,0,0,0,56,64],[65,6],[16, ...builtin('__Porffor_allocate')],[184],[65,7],[68,...builtin('anonymous_ec597ee0eff0', true, true)],[65,6],[16, ...builtin('Promise')],[34,2],[15]],
|
2044
2054
|
params: [124,127], typedParams: 1,
|
2045
2055
|
returns: [124,127], typedReturns: 1,
|
2046
2056
|
locals: [127], localNames: ["promises","promises#type","#last_type"],
|
2047
2057
|
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
2048
2058
|
};
|
2049
|
-
this.
|
2050
|
-
wasm: (scope, {allocPage,glbl,builtin,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,0,0,0,0,0,0,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],[65,0],[33,7],[32,5],[40,1,0],[34,6],[4,64],...glbl(35, '_allPromises#type', 127),[33,12],[2,64],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3590f3ad04c0', true, true)],[65,6],[68,...builtin('anonymous_335ea5c1dd80', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],...number(allocPage(scope, 'bytestring: anonymous_e620fdf22230/status', 'i8') * pageSize, 124),[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[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],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,195,0],[33,9],[16, ...builtin('__Porffor_allocate')],[34,24],[65,1],[54,0,0],[3,64],[32,24],[32,5],[47,0,4],[59,0,4],[32,24],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3590f3ad04c0', true, true)],[65,6],[68,...builtin('anonymous_335ea5c1dd80', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[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],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3590f3ad04c0', true, true)],[65,6],[68,...builtin('anonymous_335ea5c1dd80', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[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],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3590f3ad04c0', true, true)],[65,6],[68,...builtin('anonymous_335ea5c1dd80', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[44,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3590f3ad04c0', true, true)],[65,6],[68,...builtin('anonymous_335ea5c1dd80', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3590f3ad04c0', true, true)],[65,6],[68,...builtin('anonymous_335ea5c1dd80', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[47,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3590f3ad04c0', true, true)],[65,6],[68,...builtin('anonymous_335ea5c1dd80', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[46,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3590f3ad04c0', true, true)],[65,6],[68,...builtin('anonymous_335ea5c1dd80', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3590f3ad04c0', true, true)],[65,6],[68,...builtin('anonymous_335ea5c1dd80', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3590f3ad04c0', true, true)],[65,6],[68,...builtin('anonymous_335ea5c1dd80', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[42,0,4],[187],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3590f3ad04c0', true, true)],[65,6],[68,...builtin('anonymous_335ea5c1dd80', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,8],[108],[106],[43,0,4],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3590f3ad04c0', true, true)],[65,6],[68,...builtin('anonymous_335ea5c1dd80', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,195,1],[33,9],[16, ...builtin('__Porffor_allocate')],[34,24],[65,1],[54,0,0],[3,64],[32,24],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,24],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3590f3ad04c0', true, true)],[65,6],[68,...builtin('anonymous_335ea5c1dd80', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[11],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,0,0],[97],[4,64],...glbl(35, '_allRes', 124),[33,33],...glbl(35, '_allRes#type', 127),[33,12],[2,124],[32,12],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,25],[33,26],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,27],[33,28],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,29],[33,30],[32,33],[252,3],[34,31],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,32],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,31],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,31],[17,2,0,"no_type_return"],[5],[32,31],[17,0,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,31],[17,2,0],[33,10],[5],[32,31],[17,0,0],[33,10],[11],[11],[12,3],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,31],[17,3,0,"no_type_return"],[5],[32,26],[32,25],[32,31],[17,1,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,31],[17,3,0],[33,10],[5],[32,26],[32,25],[32,31],[17,1,0],[33,10],[11],[11],[12,2],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,31],[17,4,0,"no_type_return"],[5],[32,26],[32,25],[32,28],[32,27],[32,31],[17,2,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,31],[17,4,0],[33,10],[5],[32,26],[32,25],[32,28],[32,27],[32,31],[17,2,0],[33,10],[11],[11],[12,1],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,5,0,"no_type_return"],[5],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,3,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,5,0],[33,10],[5],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,3,0],[33,10],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),[252,3],[40,1,0],[184],...glbl(35, '_allLen', 124),[97],[4,64],[68,...builtin('anonymous_57c3a2a21be0', true, true)],[65,6],[16, ...builtin('__Porffor_promise_runNext')],[33,10],[26],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
2059
|
+
this.anonymous_ec597ee0eff0 = {
|
2060
|
+
wasm: (scope, {allocPage,glbl,builtin,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,0,0,0,0,0,0,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],[65,0],[33,7],[32,5],[40,1,0],[34,6],[4,64],...glbl(35, '_allPromises#type', 127),[33,12],[2,64],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],...number(allocPage(scope, 'bytestring: anonymous_ec597ee0eff0/status', 'i8') * pageSize, 124),[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[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],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,195,0],[33,9],[16, ...builtin('__Porffor_allocate')],[34,24],[65,1],[54,0,0],[3,64],[32,24],[32,5],[47,0,4],[59,0,4],[32,24],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[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],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,5],[43,0,4],[32,5],[45,0,12],[33,9],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[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],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[44,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[106],[45,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[47,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,2],[108],[106],[46,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[40,0,4],[183],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,4],[108],[106],[42,0,4],[187],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,1],[33,9],[3,64],[32,5],[40,0,4],[32,7],[65,8],[108],[106],[43,0,4],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,195,1],[33,9],[16, ...builtin('__Porffor_allocate')],[34,24],[65,1],[54,0,0],[3,64],[32,24],[32,5],[32,7],[106],[45,0,4],[58,0,4],[32,24],[184],[33,8],[2,64],[2,64],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, '_allLen', 124),[32,8],[32,9],[16, ...builtin('__ecma262_IsPromise')],[33,10],[33,11],[32,10],[33,12],[2,127],[32,12],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,12],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,11],[252,3],[40,1,0],[12,1],[11],[32,11],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,8],[33,13],[32,9],[34,14],[33,12],[2,124],[32,12],[65,36],[70],[4,64,"TYPESWITCH|Promise"],[32,13],[32,14],[68,...builtin('anonymous_3a401c4aba00', true, true)],[65,6],[68,...builtin('anonymous_17ecdf83eba0', true, true)],[65,6],[16, ...builtin('__Promise_prototype_then')],[33,10],[12,1],[11],...internalThrow(scope, 'TypeError', `'then' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[5],[16, ...builtin('__Porffor_allocate')],[184],[33,15],[65,7],[33,16],[68,0,0,0,0,0,0,24,65],[34,17],[252,3],[34,18],[65,9],[54,1,0],[32,18],[65,230,0],[58,0,4],[32,18],[65,245,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,230,0],[58,0,7],[32,18],[65,233,0],[58,0,8],[32,18],[65,236,0],[58,0,9],[32,18],[65,236,0],[58,0,10],[32,18],[65,229,0],[58,0,11],[32,18],[65,228,0],[58,0,12],[32,18],[184],[33,17],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,6],[54,1,0],[32,18],[65,243,0],[58,0,4],[32,18],[65,244,0],[58,0,5],[32,18],[65,225,0],[58,0,6],[32,18],[65,244,0],[58,0,7],[32,18],[65,245,0],[58,0,8],[32,18],[65,243,0],[58,0,9],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,17],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,17],[34,19],[57,0,4],[32,20],[65,195,1],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,17],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,17],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,17],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,17],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,17],[11,"TYPESWITCH_end"],[26],[32,15],[33,21],[16, ...builtin('__Porffor_allocate')],[34,18],[65,5],[54,1,0],[32,18],[65,246,0],[58,0,4],[32,18],[65,225,0],[58,0,5],[32,18],[65,236,0],[58,0,6],[32,18],[65,245,0],[58,0,7],[32,18],[65,229,0],[58,0,8],[32,18],[184],[33,22],[32,16],[33,12],[2,124],[32,12],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,21],[252,3],[32,16],[32,22],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,23],[252,3],[32,23],[32,8],[32,9],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,8],[34,19],[57,0,4],[32,20],[32,9],[58,0,12],[32,19],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,8],[34,19],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,19],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,8],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,8],[34,19],[182],[56,0,4],[32,19],[12,1],[11],[32,12],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,8],[34,19],[57,0,4],[32,19],[12,1],[11],[32,12],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,8],[11,"TYPESWITCH_end"],[26],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,15],[32,16],[16, ...builtin('__Porffor_fastPush')],[33,10],[26],[11],[11],[32,7],[65,1],[106],[34,7],[32,6],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[11],...glbl(35, '_allLen', 124),[68,0,0,0,0,0,0,0,0],[97],[4,64],...glbl(35, '_allRes', 124),[33,33],...glbl(35, '_allRes#type', 127),[33,12],[2,124],[32,12],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,25],[33,26],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,27],[33,28],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,29],[33,30],[32,33],[252,3],[34,31],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,32],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,31],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,31],[17,2,0,"no_type_return"],[5],[32,31],[17,0,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,31],[17,2,0],[33,10],[5],[32,31],[17,0,0],[33,10],[11],[11],[12,3],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,31],[17,3,0,"no_type_return"],[5],[32,26],[32,25],[32,31],[17,1,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,31],[17,3,0],[33,10],[5],[32,26],[32,25],[32,31],[17,1,0],[33,10],[11],[11],[12,2],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,31],[17,4,0,"no_type_return"],[5],[32,26],[32,25],[32,28],[32,27],[32,31],[17,2,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,31],[17,4,0],[33,10],[5],[32,26],[32,25],[32,28],[32,27],[32,31],[17,2,0],[33,10],[11],[11],[12,1],[11],[32,32],[65,1],[113],[4,124],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,5,0,"no_type_return"],[5],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,3,0,"no_type_return"],[11],[5],[32,32],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,5,0],[33,10],[5],[32,26],[32,25],[32,28],[32,27],[32,30],[32,29],[32,31],[17,3,0],[33,10],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[5],...glbl(35, '_allOut', 124),[252,3],[40,1,0],[184],...glbl(35, '_allLen', 124),[97],[4,64],[68,...builtin('anonymous_a0f5591ab300', true, true)],[65,6],[16, ...builtin('__Porffor_promise_runNext')],[33,10],[26],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
2051
2061
|
params: [124,127,124,127], typedParams: 1,
|
2052
2062
|
returns: [124,127], typedReturns: 1,
|
2053
2063
|
locals: [124,127,127,127,124,127,127,124,127,124,127,124,127,124,127,124,127,124,124,127,127,127,124,127,124,127,124,127,127,124], localNames: ["res","res#type","rej","rej#type","arr","forof_base_pointer","forof_length","forof_counter","x","x#type","#last_type","#logicinner_tmp","#typeswitch_tmp","#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","#swap","#forof_allocd","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#indirect_callee"],
|
2054
2064
|
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
2055
2065
|
table: 1,
|
2056
2066
|
};
|
2057
|
-
this.
|
2058
|
-
wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, ...builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring:
|
2067
|
+
this.anonymous_3a401c4aba00 = {
|
2068
|
+
wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, ...builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring: anonymous_3a401c4aba00/status', 'i8') * pageSize, 124),[34,4],[252,3],[34,5],[65,9],[54,1,0],[32,5],[65,230,0],[58,0,4],[32,5],[65,245,0],[58,0,5],[32,5],[65,236,0],[58,0,6],[32,5],[65,230,0],[58,0,7],[32,5],[65,233,0],[58,0,8],[32,5],[65,236,0],[58,0,9],[32,5],[65,236,0],[58,0,10],[32,5],[65,229,0],[58,0,11],[32,5],[65,228,0],[58,0,12],[32,5],[184],[33,4],[32,2],[33,8],[16, ...builtin('__Porffor_allocate')],[34,5],[65,6],[54,1,0],[32,5],[65,243,0],[58,0,4],[32,5],[65,244,0],[58,0,5],[32,5],[65,225,0],[58,0,6],[32,5],[65,244,0],[58,0,7],[32,5],[65,245,0],[58,0,8],[32,5],[65,243,0],[58,0,9],[32,5],[184],[33,9],[32,3],[33,11],[2,124],[32,11],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,3],[32,9],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[252,3],[32,10],[32,4],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,11],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,8],[252,3],[32,9],[252,3],[65,9],[108],[106],[34,7],[32,4],[34,6],[57,0,4],[32,7],[65,195,1],[58,0,12],[32,6],[12,1],[11],[32,11],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[252,2],[58,0,4],[32,6],[12,1],[11],[32,11],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,4],[34,6],[252,3],[59,0,4],[32,6],[12,1],[11],[32,11],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,4],[34,6],[252,2],[59,0,4],[32,6],[12,1],[11],[32,11],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[252,3],[54,0,4],[32,6],[12,1],[11],[32,11],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[252,2],[54,0,4],[32,6],[12,1],[11],[32,11],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[182],[56,0,4],[32,6],[12,1],[11],[32,11],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[32,4],[34,6],[57,0,4],[32,6],[12,1],[11],[32,11],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,4],[11,"TYPESWITCH_end"],[26],[32,2],[33,8],[16, ...builtin('__Porffor_allocate')],[34,5],[65,5],[54,1,0],[32,5],[65,246,0],[58,0,4],[32,5],[65,225,0],[58,0,5],[32,5],[65,236,0],[58,0,6],[32,5],[65,245,0],[58,0,7],[32,5],[65,229,0],[58,0,8],[32,5],[184],[33,9],[32,3],[33,11],[2,124],[32,11],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,3],[32,9],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[252,3],[32,10],[32,0],[32,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,11],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,8],[252,3],[32,9],[252,3],[65,9],[108],[106],[34,7],[32,0],[34,6],[57,0,4],[32,7],[32,1],[58,0,12],[32,6],[12,1],[11],[32,11],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[252,2],[58,0,4],[32,6],[12,1],[11],[32,11],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,0],[34,6],[252,3],[59,0,4],[32,6],[12,1],[11],[32,11],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,0],[34,6],[252,2],[59,0,4],[32,6],[12,1],[11],[32,11],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[252,3],[54,0,4],[32,6],[12,1],[11],[32,11],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[252,2],[54,0,4],[32,6],[12,1],[11],[32,11],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[182],[56,0,4],[32,6],[12,1],[11],[32,11],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[32,0],[34,6],[57,0,4],[32,6],[12,1],[11],[32,11],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,0],[11,"TYPESWITCH_end"],[26],[2,127,"string_only"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,2],[32,3],[16, ...builtin('__Porffor_fastPush')],[33,12],[34,13,"string_only"],...glbl(35, '_allLen', 124),[34,14,"string_only"],[32,12,"string_only|start"],[65,195,1],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[113],[4,64],[32,13],[252,3],[34,15],[32,14],[252,3],[34,17],[71],[4,127],[32,15],[40,0,0],[34,16],[32,17],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,18],[32,16],[33,19],[3,64],[32,18],[32,15],[106],[45,0,4],[32,18],[32,17],[106],[45,0,4],[71],[4,64],[65,0],[12,2],[11],[32,18],[65,1],[106],[34,18],[32,19],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11],[32,12],[65,195,0],[70],[32,12],[65,195,1],[70],[114],...glbl(35, '_allLen#type', 127),[65,195,0],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[114],[114],[4,64],[32,13],[252,3],[34,15],[32,14],[252,3],[34,17],[71],[4,127],[32,15],[40,0,0],[34,16],[32,17],[40,0,0],[32,12],[65,195,1],[70],[4,64],[32,15],[32,16],[16, ...builtin('__Porffor_bytestringToString')],[33,15],[11],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[4,64],[32,17],[32,17],[40,0,0],[16, ...builtin('__Porffor_bytestringToString')],[33,17],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,18],[32,16],[65,2],[108],[33,19],[3,64],[32,18],[32,15],[106],[47,0,4],[32,18],[32,17],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,18],[65,2],[106],[34,18],[32,19],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11,"string_only|end"],[97],[11,"string_only"],[4,64],...glbl(35, '_allRes', 124),[33,28],...glbl(35, '_allRes#type', 127),[33,11],[2,124],[32,11],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,28],[252,3],[34,26],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,12],[5],[32,26],[17,0,0],[33,12],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[5],[32,21],[32,20],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,26],[17,3,0],[33,12],[5],[32,21],[32,20],[32,26],[17,1,0],[33,12],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,26],[17,2,0],[33,12],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,3,0],[33,12],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
2059
2069
|
params: [124,127], typedParams: 1,
|
2060
2070
|
returns: [124,127], typedReturns: 1,
|
2061
2071
|
locals: [124,127,124,127,124,127,124,124,127,127,127,124,124,127,127,127,127,127,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","#swap","#typeswitch_tmp","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#indirect_callee"],
|
2062
2072
|
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
2063
2073
|
table: 1,
|
2064
2074
|
};
|
2065
|
-
this.
|
2066
|
-
wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, ...builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring:
|
2075
|
+
this.anonymous_17ecdf83eba0 = {
|
2076
|
+
wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, ...builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring: anonymous_17ecdf83eba0/status', 'i8') * pageSize, 124),[34,4],[252,3],[34,5],[65,8],[54,1,0],[32,5],[65,242,0],[58,0,4],[32,5],[65,229,0],[58,0,5],[32,5],[65,234,0],[58,0,6],[32,5],[65,229,0],[58,0,7],[32,5],[65,227,0],[58,0,8],[32,5],[65,244,0],[58,0,9],[32,5],[65,229,0],[58,0,10],[32,5],[65,228,0],[58,0,11],[32,5],[184],[33,4],[32,2],[33,8],[16, ...builtin('__Porffor_allocate')],[34,5],[65,6],[54,1,0],[32,5],[65,243,0],[58,0,4],[32,5],[65,244,0],[58,0,5],[32,5],[65,225,0],[58,0,6],[32,5],[65,244,0],[58,0,7],[32,5],[65,245,0],[58,0,8],[32,5],[65,243,0],[58,0,9],[32,5],[184],[33,9],[32,3],[33,11],[2,124],[32,11],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,3],[32,9],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[252,3],[32,10],[32,4],[65,195,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,11],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,8],[252,3],[32,9],[252,3],[65,9],[108],[106],[34,7],[32,4],[34,6],[57,0,4],[32,7],[65,195,1],[58,0,12],[32,6],[12,1],[11],[32,11],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[252,2],[58,0,4],[32,6],[12,1],[11],[32,11],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,4],[34,6],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,4],[34,6],[252,3],[59,0,4],[32,6],[12,1],[11],[32,11],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,4],[34,6],[252,2],[59,0,4],[32,6],[12,1],[11],[32,11],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[252,3],[54,0,4],[32,6],[12,1],[11],[32,11],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[252,2],[54,0,4],[32,6],[12,1],[11],[32,11],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,4],[34,6],[182],[56,0,4],[32,6],[12,1],[11],[32,11],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[32,4],[34,6],[57,0,4],[32,6],[12,1],[11],[32,11],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,4],[11,"TYPESWITCH_end"],[26],[32,2],[33,8],[16, ...builtin('__Porffor_allocate')],[34,5],[65,6],[54,1,0],[32,5],[65,242,0],[58,0,4],[32,5],[65,229,0],[58,0,5],[32,5],[65,225,0],[58,0,6],[32,5],[65,243,0],[58,0,7],[32,5],[65,239,0],[58,0,8],[32,5],[65,238,0],[58,0,9],[32,5],[184],[33,9],[32,3],[33,11],[2,124],[32,11],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,3],[32,9],[65,195,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,10],[252,3],[32,10],[32,0],[32,1],[16, ...builtin('__Porffor_object_set')],[26],[12,1],[11],[32,11],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,8],[252,3],[32,9],[252,3],[65,9],[108],[106],[34,7],[32,0],[34,6],[57,0,4],[32,7],[32,1],[58,0,12],[32,6],[12,1],[11],[32,11],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[252,2],[58,0,4],[32,6],[12,1],[11],[32,11],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[32,0],[34,6],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[32,6],[12,1],[11],[32,11],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,0],[34,6],[252,3],[59,0,4],[32,6],[12,1],[11],[32,11],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[32,0],[34,6],[252,2],[59,0,4],[32,6],[12,1],[11],[32,11],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[252,3],[54,0,4],[32,6],[12,1],[11],[32,11],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[252,2],[54,0,4],[32,6],[12,1],[11],[32,11],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[32,0],[34,6],[182],[56,0,4],[32,6],[12,1],[11],[32,11],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[32,0],[34,6],[57,0,4],[32,6],[12,1],[11],[32,11],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot set property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,0],[11,"TYPESWITCH_end"],[26],[2,127,"string_only"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[32,2],[32,3],[16, ...builtin('__Porffor_fastPush')],[33,12],[34,13,"string_only"],...glbl(35, '_allLen', 124),[34,14,"string_only"],[32,12,"string_only|start"],[65,195,1],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[113],[4,64],[32,13],[252,3],[34,15],[32,14],[252,3],[34,17],[71],[4,127],[32,15],[40,0,0],[34,16],[32,17],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,18],[32,16],[33,19],[3,64],[32,18],[32,15],[106],[45,0,4],[32,18],[32,17],[106],[45,0,4],[71],[4,64],[65,0],[12,2],[11],[32,18],[65,1],[106],[34,18],[32,19],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11],[32,12],[65,195,0],[70],[32,12],[65,195,1],[70],[114],...glbl(35, '_allLen#type', 127),[65,195,0],[70],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[114],[114],[4,64],[32,13],[252,3],[34,15],[32,14],[252,3],[34,17],[71],[4,127],[32,15],[40,0,0],[34,16],[32,17],[40,0,0],[32,12],[65,195,1],[70],[4,64],[32,15],[32,16],[16, ...builtin('__Porffor_bytestringToString')],[33,15],[11],...glbl(35, '_allLen#type', 127),[65,195,1],[70],[4,64],[32,17],[32,17],[40,0,0],[16, ...builtin('__Porffor_bytestringToString')],[33,17],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,18],[32,16],[65,2],[108],[33,19],[3,64],[32,18],[32,15],[106],[47,0,4],[32,18],[32,17],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,18],[65,2],[106],[34,18],[32,19],[72],[13,0],[11],[65,1],[5],[65,1],[11],[12,1],[11,"string_only|end"],[97],[11,"string_only"],[4,64],...glbl(35, '_allRes', 124),[33,28],...glbl(35, '_allRes#type', 127),[33,11],[2,124],[32,11],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,20],[33,21],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,22],[33,23],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,24],[33,25],[32,28],[252,3],[34,26],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,27],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,26],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0,"no_type_return"],[5],[32,26],[17,0,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,26],[17,2,0],[33,12],[5],[32,26],[17,0,0],[33,12],[11],[11],[12,3],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,26],[17,3,0,"no_type_return"],[5],[32,21],[32,20],[32,26],[17,1,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,26],[17,3,0],[33,12],[5],[32,21],[32,20],[32,26],[17,1,0],[33,12],[11],[11],[12,2],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,26],[17,2,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,26],[17,4,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,26],[17,2,0],[33,12],[11],[11],[12,1],[11],[32,27],[65,1],[113],[4,124],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0,"no_type_return"],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,3,0,"no_type_return"],[11],[5],[32,27],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,5,0],[33,12],[5],[32,21],[32,20],[32,23],[32,22],[32,25],[32,24],[32,26],[17,3,0],[33,12],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
2067
2077
|
params: [124,127], typedParams: 1,
|
2068
2078
|
returns: [124,127], typedReturns: 1,
|
2069
2079
|
locals: [124,127,124,127,124,127,124,124,127,127,127,124,124,127,127,127,127,127,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","#swap","#typeswitch_tmp","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#indirect_callee"],
|
2070
2080
|
globalInits: {jobQueue: (scope, {allocPage,glbl,loc}) => [...number(allocPage(scope, 'array: promise.ts/jobQueue', 'f64') * pageSize, 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,0,0,0,0,0,0,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp', 127)],[26]]},
|
2071
2081
|
table: 1,
|
2072
2082
|
};
|
2073
|
-
this.
|
2083
|
+
this.anonymous_a0f5591ab300 = {
|
2074
2084
|
wasm: (scope, {glbl,builtin,internalThrow}) => [...glbl(35, '_allRes', 124),[33,9],...glbl(35, '_allRes#type', 127),[33,10],[2,124],[32,10],[65,6],[70],[4,64,"TYPESWITCH|Function"],...glbl(35, '_allOut', 124),...glbl(35, '_allOut#type', 127),[33,0],[33,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,2],[33,3],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,4],[33,5],[32,9],[252,3],[34,6],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,7],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `_allRes is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,6],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,6],[17,2,0,"no_type_return"],[5],[32,6],[17,0,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,6],[17,2,0],[26],[5],[32,6],[17,0,0],[26],[11],[11],[12,3],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,6],[17,3,0,"no_type_return"],[5],[32,1],[32,0],[32,6],[17,1,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,6],[17,3,0],[26],[5],[32,1],[32,0],[32,6],[17,1,0],[26],[11],[11],[12,2],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,6],[17,4,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,6],[17,2,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,6],[17,4,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,6],[17,2,0],[26],[11],[11],[12,1],[11],[32,7],[65,1],[113],[4,124],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,5,0,"no_type_return"],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,3,0,"no_type_return"],[11],[5],[32,7],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,5,0],[26],[5],[32,1],[32,0],[32,3],[32,2],[32,5],[32,4],[32,6],[17,3,0],[26],[11],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `_allRes is not a function`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
2075
2085
|
params: [], typedParams: 1,
|
2076
2086
|
returns: [124,127], typedReturns: 1,
|
package/compiler/codegen.js
CHANGED
@@ -367,6 +367,26 @@ const generateIdent = (scope, decl) => {
|
|
367
367
|
const generateReturn = (scope, decl) => {
|
368
368
|
const arg = decl.argument ?? DEFAULT_VALUE();
|
369
369
|
|
370
|
+
if (scope.async) {
|
371
|
+
return [
|
372
|
+
// resolve promise with return value
|
373
|
+
[ Opcodes.local_get, scope.locals['#async_out_promise'].idx ],
|
374
|
+
...number(TYPES.promise, Valtype.i32),
|
375
|
+
|
376
|
+
...generate(scope, arg),
|
377
|
+
...(scope.returnType != null ? [] : getNodeType(scope, arg)),
|
378
|
+
|
379
|
+
[ Opcodes.call, ...unsignedLEB128(includeBuiltin(scope, '__Porffor_promise_resolve').index) ],
|
380
|
+
[ Opcodes.drop ],
|
381
|
+
[ Opcodes.drop ],
|
382
|
+
|
383
|
+
// return promise
|
384
|
+
[ Opcodes.local_get, scope.locals['#async_out_promise'].idx ],
|
385
|
+
...number(TYPES.promise, Valtype.i32),
|
386
|
+
[ Opcodes.return ]
|
387
|
+
];
|
388
|
+
}
|
389
|
+
|
370
390
|
const out = [];
|
371
391
|
if (
|
372
392
|
scope.constr && // only do this in constructors
|
@@ -1209,11 +1229,14 @@ const asmFuncToAsm = (scope, func) => {
|
|
1209
1229
|
builtin: (n, float = false, offset = false) => {
|
1210
1230
|
let idx = funcIndex[n] ?? importedFuncs[n];
|
1211
1231
|
if (idx == null && builtinFuncs[n]) {
|
1212
|
-
includeBuiltin(
|
1232
|
+
includeBuiltin(scope, n);
|
1213
1233
|
idx = funcIndex[n];
|
1214
1234
|
}
|
1215
1235
|
|
1216
|
-
|
1236
|
+
scope.includes ??= new Set();
|
1237
|
+
scope.includes.add(n);
|
1238
|
+
|
1239
|
+
if (idx == null) throw new Error(`builtin('${n}') failed: could not find func (from ${scope.name})`);
|
1217
1240
|
if (offset) idx -= importedFuncs.length;
|
1218
1241
|
|
1219
1242
|
return float ? ieee754_binary64(idx) : unsignedLEB128(idx);
|
@@ -1342,7 +1365,12 @@ const asmFunc = (name, { wasm, params = [], typedParams = false, locals: localTy
|
|
1342
1365
|
return func;
|
1343
1366
|
};
|
1344
1367
|
|
1345
|
-
const includeBuiltin = (scope, builtin) =>
|
1368
|
+
const includeBuiltin = (scope, builtin) => {
|
1369
|
+
scope.includes ??= new Set();
|
1370
|
+
scope.includes.add(builtin);
|
1371
|
+
|
1372
|
+
return asmFunc(builtin, builtinFuncs[builtin]);
|
1373
|
+
};
|
1346
1374
|
|
1347
1375
|
const generateLogicExp = (scope, decl) => {
|
1348
1376
|
return performLogicOp(scope, decl.operator, generate(scope, decl.left), generate(scope, decl.right), getNodeType(scope, decl.left), getNodeType(scope, decl.right));
|
@@ -5174,7 +5202,6 @@ const objectHack = node => {
|
|
5174
5202
|
};
|
5175
5203
|
|
5176
5204
|
const generateFunc = (scope, decl) => {
|
5177
|
-
if (decl.async) return todo(scope, 'async functions are not supported');
|
5178
5205
|
if (decl.generator) return todo(scope, 'generator functions are not supported');
|
5179
5206
|
|
5180
5207
|
const name = decl.id ? decl.id.name : `anonymous${randId()}`;
|
@@ -5186,10 +5213,13 @@ const generateFunc = (scope, decl) => {
|
|
5186
5213
|
localInd: 0,
|
5187
5214
|
// value, type
|
5188
5215
|
returns: [ valtypeBinary, Valtype.i32 ],
|
5189
|
-
throws: false,
|
5190
5216
|
name,
|
5191
5217
|
index: currentFuncIndex++,
|
5192
|
-
constr:
|
5218
|
+
constr:
|
5219
|
+
// not arrow function or main
|
5220
|
+
(decl.type && decl.type !== 'ArrowFunctionExpression' && decl.type !== 'Program') &&
|
5221
|
+
// not async or generator
|
5222
|
+
!decl.async && !decl.generator
|
5193
5223
|
};
|
5194
5224
|
|
5195
5225
|
funcIndex[name] = func.index;
|
@@ -5261,8 +5291,25 @@ const generateFunc = (scope, decl) => {
|
|
5261
5291
|
);
|
5262
5292
|
}
|
5263
5293
|
|
5294
|
+
if (decl.async) {
|
5295
|
+
// make out promise local
|
5296
|
+
allocVar(func, '#async_out_promise', false, false);
|
5297
|
+
func.async = true;
|
5298
|
+
}
|
5299
|
+
|
5264
5300
|
const wasm = func.wasm = prelude.concat(generate(func, body));
|
5265
5301
|
|
5302
|
+
if (decl.async) {
|
5303
|
+
// make promise at the start
|
5304
|
+
wasm.unshift(
|
5305
|
+
[ Opcodes.call, ...unsignedLEB128(includeBuiltin(func, '__Porffor_promise_create').index) ],
|
5306
|
+
[ Opcodes.drop ],
|
5307
|
+
[ Opcodes.local_set, func.locals['#async_out_promise'].idx ]
|
5308
|
+
);
|
5309
|
+
|
5310
|
+
// todo: wrap in try and reject thrown value once supported
|
5311
|
+
}
|
5312
|
+
|
5266
5313
|
if (name === 'main') {
|
5267
5314
|
func.gotLastType = true;
|
5268
5315
|
|
@@ -5292,15 +5339,9 @@ const generateFunc = (scope, decl) => {
|
|
5292
5339
|
}
|
5293
5340
|
|
5294
5341
|
// inject promise job runner func at the end of main if used
|
5295
|
-
if (Object.hasOwn(funcIndex, '
|
5342
|
+
if (Object.hasOwn(funcIndex, '__ecma262_HostEnqueuePromiseJob')) {
|
5296
5343
|
wasm.push(
|
5297
|
-
...
|
5298
|
-
callee: {
|
5299
|
-
type: 'Identifier',
|
5300
|
-
name: '__Porffor_promise_runJobs'
|
5301
|
-
},
|
5302
|
-
arguments: []
|
5303
|
-
}).slice(0, -1), // remove set last type
|
5344
|
+
[ Opcodes.call, ...unsignedLEB128(includeBuiltin(scope, '__Porffor_promise_runJobs').index) ],
|
5304
5345
|
[ Opcodes.drop ],
|
5305
5346
|
[ Opcodes.drop ]
|
5306
5347
|
);
|
@@ -0,0 +1,31 @@
|
|
1
|
+
export const tree = data => {
|
2
|
+
let out = 'flowchart LR\n';
|
3
|
+
let ids = new Map();
|
4
|
+
|
5
|
+
const run = (x, parent = null) => {
|
6
|
+
for (const [ name, children ] of x) {
|
7
|
+
const alreadyHas = ids.has(name);
|
8
|
+
if (!alreadyHas) ids.set(name, ids.size);
|
9
|
+
const id = ids.get(name);
|
10
|
+
|
11
|
+
if (!alreadyHas || parent != null) {
|
12
|
+
if (parent != null) out += `${parent}-->`;
|
13
|
+
out += `${id}${alreadyHas ? '' : `["${name}"]`}\n`;
|
14
|
+
}
|
15
|
+
|
16
|
+
if (children) run(children, id);
|
17
|
+
}
|
18
|
+
};
|
19
|
+
run(data);
|
20
|
+
|
21
|
+
return out;
|
22
|
+
};
|
23
|
+
|
24
|
+
export const url = code => `https://mermaid.live/view#${btoa(JSON.stringify({
|
25
|
+
mermaid: code.length > 10000 ? { theme: 'dark', securityLevel: 'loose', maxEdges: 5000 } : { theme: 'dark' },
|
26
|
+
updateDiagram: true,
|
27
|
+
autoSync: true,
|
28
|
+
rough: false,
|
29
|
+
panZoom: true,
|
30
|
+
code
|
31
|
+
}))}`;
|
package/compiler/index.js
CHANGED
@@ -9,6 +9,7 @@ import toc from './2c.js';
|
|
9
9
|
import * as pgo from './pgo.js';
|
10
10
|
import cyclone from './cyclone.js';
|
11
11
|
import Prefs from './prefs.js';
|
12
|
+
import * as Diagram from './diagram.js';
|
12
13
|
|
13
14
|
globalThis.decompile = decompile;
|
14
15
|
|
@@ -108,6 +109,35 @@ export default (code, flags) => {
|
|
108
109
|
|
109
110
|
if (Prefs.profileCompiler) console.log(`3. optimized in ${(performance.now() - t2).toFixed(2)}ms`);
|
110
111
|
|
112
|
+
if (Prefs.builtinTree) {
|
113
|
+
let data = funcs.filter(x => x.includes);
|
114
|
+
if (typeof Prefs.builtinTree === 'string') data = data.filter(x => x.includes.has(Prefs.builtinTree));
|
115
|
+
|
116
|
+
const funcsByName = funcs.reduce((acc, x) => { acc[x.name] = x; return acc; }, {});
|
117
|
+
|
118
|
+
const done = new Set();
|
119
|
+
for (let i = 0; i < data.length; i++) {
|
120
|
+
// const run = (x, done = new Set()) => {
|
121
|
+
const run = x => {
|
122
|
+
const out = [ x.name, [] ];
|
123
|
+
if (x.includes && !done.has(x.name)) {
|
124
|
+
done.add(x.name);
|
125
|
+
for (const y of x.includes) {
|
126
|
+
// out[1].push(run(funcsByName[y], new Set(done)));
|
127
|
+
// out[1].push(run(funcsByName[y], done));
|
128
|
+
out[1].push(run(funcsByName[y], done));
|
129
|
+
}
|
130
|
+
}
|
131
|
+
|
132
|
+
return out;
|
133
|
+
};
|
134
|
+
data[i] = run(data[i]);
|
135
|
+
}
|
136
|
+
|
137
|
+
const url = Diagram.url(Diagram.tree(data));
|
138
|
+
console.log(`built-in tree: ${url}`);
|
139
|
+
}
|
140
|
+
|
111
141
|
const t3 = performance.now();
|
112
142
|
const out = { funcs, globals, tags, exceptions, pages, data, times: [ t0, t1, t2, t3 ] };
|
113
143
|
if (globalThis.precompile) return out;
|
package/package.json
CHANGED
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.25.
|
3
|
+
globalThis.version = '0.25.8+67d2a88c7';
|
4
4
|
|
5
5
|
// deno compat
|
6
6
|
if (typeof process === 'undefined' && typeof Deno !== 'undefined') {
|
@@ -150,43 +150,23 @@ source ||= fs.readFileSync(file, 'utf8');
|
|
150
150
|
|
151
151
|
const compile = (await import('../compiler/wrap.js')).default;
|
152
152
|
|
153
|
-
let cache = '';
|
154
|
-
const print = str => {
|
155
|
-
/* cache += str;
|
156
|
-
|
157
|
-
if (str === '\n') {
|
158
|
-
process.stdout.write(cache);
|
159
|
-
cache = '';
|
160
|
-
} */
|
161
|
-
|
162
|
-
process.stdout.write(str);
|
163
|
-
};
|
164
|
-
|
165
153
|
let runStart;
|
166
154
|
let ret;
|
167
155
|
try {
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
runStart = performance.now();
|
172
|
-
if (!process.argv.includes('--no-run')) ret = exports.main();
|
156
|
+
const out = compile(source, process.argv.includes('--module') ? [ 'module' ] : []);
|
157
|
+
runStart = performance.now();
|
158
|
+
if (!process.argv.includes('--no-run')) ret = out.exports.main();
|
173
159
|
|
174
|
-
|
175
|
-
|
176
|
-
const { exports } = compile(source, process.argv.includes('--module') ? [ 'module' ] : [], {}, print);
|
177
|
-
|
178
|
-
runStart = performance.now();
|
179
|
-
if (!process.argv.includes('--no-run')) ret = exports.main();
|
160
|
+
if (process.argv.includes('-b')) {
|
161
|
+
console.log(`\nwasm size: ${out.wasm.byteLength} bytes`);
|
180
162
|
}
|
181
|
-
// if (cache) process.stdout.write(cache);
|
182
163
|
} catch (e) {
|
183
|
-
// if (cache) process.stdout.write(cache);
|
184
164
|
let out = e;
|
185
165
|
if (!process.argv.includes('-d') && Object.getPrototypeOf(e).message != null) out = `${e.constructor.name}${e.message != null ? `: ${e.message}` : ''}`;
|
186
166
|
console.error(out);
|
187
167
|
}
|
188
168
|
|
189
|
-
if (process.argv.includes('-t')) console.log(`${process.argv.includes('-b') ? '' : '\n
|
169
|
+
if (process.argv.includes('-t')) console.log(`${process.argv.includes('-b') ? '' : '\n'}total time: ${(performance.now() - start).toFixed(2)}ms\nexecution time: ${(performance.now() - runStart).toFixed(2)}ms`);
|
190
170
|
|
191
171
|
if (printOutput) {
|
192
172
|
if (process.argv.includes('-d') && ret?.type != null) {
|