porffor 0.25.4 → 0.25.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiler/builtins/promise.ts +184 -16
- package/compiler/builtins_precompiled.js +122 -6
- package/compiler/codegen.js +13 -5
- package/package.json +1 -1
- package/runner/index.js +1 -1
@@ -94,12 +94,12 @@ export const __ecma262_RejectPromise = (promise: any[], reason: any): void => {
|
|
94
94
|
|
95
95
|
export const __Porffor_promise_noop = () => {};
|
96
96
|
|
97
|
+
// hack: cannot share scope so use a global
|
97
98
|
let activePromise: any;
|
98
99
|
export const __Porffor_promise_resolve = (value: any): any => {
|
99
100
|
// todo: if value is own promise, reject with typeerror
|
100
101
|
|
101
102
|
if (__ecma262_IsPromise(value)) {
|
102
|
-
printStatic('todo res');
|
103
103
|
// todo
|
104
104
|
} else {
|
105
105
|
__ecma262_FulfillPromise(activePromise, value);
|
@@ -110,7 +110,6 @@ export const __Porffor_promise_resolve = (value: any): any => {
|
|
110
110
|
|
111
111
|
export const __Porffor_promise_reject = (reason: any): any => {
|
112
112
|
if (__ecma262_IsPromise(reason)) {
|
113
|
-
printStatic('todo rej');
|
114
113
|
// todo
|
115
114
|
} else {
|
116
115
|
__ecma262_RejectPromise(activePromise, reason);
|
@@ -141,6 +140,21 @@ export const __Porffor_promise_create = (): any[] => {
|
|
141
140
|
return obj;
|
142
141
|
};
|
143
142
|
|
143
|
+
export const __Porffor_promise_newReaction = (handler: Function, promise: any, type: i32): any[] => {
|
144
|
+
// enum ReactionType { then = 0, finally = 1 }
|
145
|
+
const out: any[] = Porffor.allocateBytes(31); // 3 length
|
146
|
+
out[0] = handler;
|
147
|
+
out[1] = promise;
|
148
|
+
out[2] = type;
|
149
|
+
|
150
|
+
return out;
|
151
|
+
};
|
152
|
+
|
153
|
+
export const __Porffor_promise_runNext = (func: Function) => {
|
154
|
+
const reaction = __Porffor_promise_newReaction(func, undefined, 1);
|
155
|
+
__ecma262_HostEnqueuePromiseJob(__ecma262_NewPromiseReactionJob(reaction, undefined));
|
156
|
+
};
|
157
|
+
|
144
158
|
export const __Porffor_promise_runJobs = () => {
|
145
159
|
while (true) {
|
146
160
|
let x: any = jobQueue.shift();
|
@@ -148,20 +162,27 @@ export const __Porffor_promise_runJobs = () => {
|
|
148
162
|
|
149
163
|
const reaction: any[] = x[0];
|
150
164
|
const handler: Function = reaction[0];
|
151
|
-
const outPromise: any
|
165
|
+
const outPromise: any = reaction[1];
|
166
|
+
const type: i32 = reaction[2];
|
152
167
|
|
153
168
|
const value: any = x[1];
|
154
169
|
|
155
170
|
// todo: handle thrown errors in handler?
|
156
|
-
|
171
|
+
let outValue: any;
|
172
|
+
if (type == 0) { // 0: then reaction
|
173
|
+
outValue = handler(value);
|
174
|
+
} else { // 1: finally reaction
|
175
|
+
handler();
|
176
|
+
outValue = value;
|
177
|
+
}
|
157
178
|
|
158
179
|
// todo: should this be resolve or fulfill?
|
159
|
-
__ecma262_FulfillPromise(outPromise, outValue);
|
180
|
+
if (outPromise) __ecma262_FulfillPromise(outPromise, outValue);
|
160
181
|
}
|
161
182
|
};
|
162
183
|
|
163
184
|
|
164
|
-
export const Promise = function (executor: any):
|
185
|
+
export const Promise = function (executor: any): void {
|
165
186
|
if (!new.target) throw new TypeError("Constructor Promise requires 'new'");
|
166
187
|
if (Porffor.rawType(executor) != Porffor.TYPES.function) throw new TypeError('Promise executor is not a function');
|
167
188
|
|
@@ -174,11 +195,30 @@ export const Promise = function (executor: any): Promise {
|
|
174
195
|
return pro;
|
175
196
|
};
|
176
197
|
|
198
|
+
export const __Promise_resolve = (value: any): Promise => {
|
199
|
+
const obj: any[] = __Porffor_promise_create();
|
177
200
|
|
178
|
-
|
179
|
-
|
180
|
-
|
201
|
+
activePromise = obj;
|
202
|
+
__Porffor_promise_resolve(value);
|
203
|
+
|
204
|
+
const pro: Promise = obj;
|
205
|
+
return pro;
|
206
|
+
};
|
207
|
+
|
208
|
+
export const __Promise_reject = (reason: any): Promise => {
|
209
|
+
const obj: any[] = __Porffor_promise_create();
|
210
|
+
|
211
|
+
activePromise = obj;
|
212
|
+
__Porffor_promise_reject(reason);
|
213
|
+
|
214
|
+
const pro: Promise = obj;
|
215
|
+
return pro;
|
216
|
+
};
|
181
217
|
|
218
|
+
|
219
|
+
// 27.2.5.4 Promise.prototype.then (onFulfilled, onRejected)
|
220
|
+
// https://tc39.es/ecma262/#sec-promise.prototype.then
|
221
|
+
export const __Promise_prototype_then = (_this: any, onFulfilled: any, onRejected: any) => {
|
182
222
|
// 1. Let promise be the this value.
|
183
223
|
// 2. If IsPromise(promise) is false, throw a TypeError exception.
|
184
224
|
if (!__ecma262_IsPromise(_this)) throw new TypeError('Promise.prototype.then called on non-Promise');
|
@@ -194,13 +234,8 @@ export const __Promise_prototype_then = (_this: any, onFulfilled: any, onRejecte
|
|
194
234
|
|
195
235
|
const outPromise: any[] = __Porffor_promise_create();
|
196
236
|
|
197
|
-
const fulfillReaction: any[] =
|
198
|
-
|
199
|
-
fulfillReaction[1] = outPromise;
|
200
|
-
|
201
|
-
const rejectReaction: any[] = Porffor.allocateBytes(22); // 2 length
|
202
|
-
rejectReaction[0] = onRejected;
|
203
|
-
rejectReaction[1] = outPromise;
|
237
|
+
const fulfillReaction: any[] = __Porffor_promise_newReaction(onFulfilled, outPromise, 0);
|
238
|
+
const rejectReaction: any[] = __Porffor_promise_newReaction(onRejected, outPromise, 0);
|
204
239
|
|
205
240
|
// 9. If promise.[[PromiseState]] is pending, then
|
206
241
|
if (state == 0) { // pending
|
@@ -239,6 +274,139 @@ export const __Promise_prototype_then = (_this: any, onFulfilled: any, onRejecte
|
|
239
274
|
return pro;
|
240
275
|
};
|
241
276
|
|
277
|
+
// 27.2.5.1 Promise.prototype.catch (onRejected)
|
278
|
+
// https://tc39.es/ecma262/#sec-promise.prototype.catch
|
279
|
+
export const __Promise_prototype_catch = (_this: any, onRejected: any): Promise => {
|
280
|
+
// 1. Let promise be the this value.
|
281
|
+
// 2. Return ? Invoke(promise, "then", « undefined, onRejected »).
|
282
|
+
return __Promise_prototype_then(_this, undefined, onRejected);
|
283
|
+
};
|
284
|
+
|
285
|
+
export const __Promise_prototype_finally = (_this: any, onFinally: any): Promise => {
|
286
|
+
// custom impl based on then but also not (sorry)
|
287
|
+
if (!__ecma262_IsPromise(_this)) throw new TypeError('Promise.prototype.then called on non-Promise');
|
288
|
+
|
289
|
+
if (Porffor.rawType(onFinally) != Porffor.TYPES.function) onFinally = __Porffor_promise_noop;
|
290
|
+
|
291
|
+
const promise: any[] = _this;
|
292
|
+
const state: i32 = promise[1];
|
293
|
+
|
294
|
+
const outPromise: any[] = __Porffor_promise_create();
|
295
|
+
|
296
|
+
const finallyReaction: any[] = __Porffor_promise_newReaction(onFinally, outPromise, 1);
|
297
|
+
|
298
|
+
if (state == 0) { // pending
|
299
|
+
const fulfillReactions: any[] = promise[2];
|
300
|
+
Porffor.fastPush(fulfillReactions, finallyReaction);
|
301
|
+
|
302
|
+
const rejectReactions: any[] = promise[3];
|
303
|
+
Porffor.fastPush(rejectReactions, finallyReaction);
|
304
|
+
} else { // fulfilled or rejected
|
305
|
+
const value: any = promise[0];
|
306
|
+
__ecma262_HostEnqueuePromiseJob(__ecma262_NewPromiseReactionJob(finallyReaction, value));
|
307
|
+
}
|
308
|
+
|
309
|
+
const pro: Promise = outPromise;
|
310
|
+
return pro;
|
311
|
+
};
|
312
|
+
|
313
|
+
|
314
|
+
// commentary: its as 🦐shrimple🦐 as this
|
315
|
+
// hack: cannot share scope so use a global
|
316
|
+
// ^ multiple Promise.all(-like)s are glitchy because of this
|
317
|
+
|
318
|
+
let _allPromises, _allRes, _allRej, _allOut, _allLen;
|
319
|
+
export const __Promise_all = (promises: any): Promise => {
|
320
|
+
_allPromises = promises;
|
321
|
+
|
322
|
+
return new Promise((res, rej) => {
|
323
|
+
_allRes = res, _allRej = rej;
|
324
|
+
|
325
|
+
const arr: any[] = Porffor.allocate();
|
326
|
+
_allOut = arr;
|
327
|
+
_allLen = 0;
|
328
|
+
|
329
|
+
for (const x of _allPromises) {
|
330
|
+
_allLen++;
|
331
|
+
if (__ecma262_IsPromise(x)) {
|
332
|
+
x.then(r => {
|
333
|
+
if (Porffor.fastPush(_allOut, r) == _allLen) _allRes(_allOut);
|
334
|
+
}, r => {
|
335
|
+
_allRej(r);
|
336
|
+
});
|
337
|
+
} else {
|
338
|
+
Porffor.fastPush(_allOut, x);
|
339
|
+
}
|
340
|
+
}
|
341
|
+
|
342
|
+
if (_allLen == 0) {
|
343
|
+
// empty iterable: immediately resolve
|
344
|
+
_allRes(_allOut);
|
345
|
+
} else if (_allOut.length == _allLen) {
|
346
|
+
// given only non-promises, resolve next
|
347
|
+
__Porffor_promise_runNext(() => {
|
348
|
+
_allRes(_allOut);
|
349
|
+
});
|
350
|
+
}
|
351
|
+
});
|
352
|
+
};
|
353
|
+
|
354
|
+
// commentary: i heard you liked hacks, so i added hacks to your hacks
|
355
|
+
export const __Promise_allSettled = (promises: any): Promise => {
|
356
|
+
_allPromises = promises;
|
357
|
+
|
358
|
+
return new Promise((res, rej) => {
|
359
|
+
_allRes = res, _allRej = rej;
|
360
|
+
|
361
|
+
const arr: any[] = Porffor.allocate();
|
362
|
+
_allOut = arr;
|
363
|
+
_allLen = 0;
|
364
|
+
|
365
|
+
for (const x of _allPromises) {
|
366
|
+
_allLen++;
|
367
|
+
if (__ecma262_IsPromise(x)) {
|
368
|
+
x.then(r => {
|
369
|
+
// Porffor.print(r);
|
370
|
+
const o = {};
|
371
|
+
let status: bytestring = '';
|
372
|
+
status = 'fulfilled';
|
373
|
+
o.status = status;
|
374
|
+
|
375
|
+
o.value = r;
|
376
|
+
if (Porffor.fastPush(_allOut, o) == _allLen) _allRes(_allOut);
|
377
|
+
}, r => {
|
378
|
+
const o = {};
|
379
|
+
let status: bytestring = '';
|
380
|
+
status = 'rejected';
|
381
|
+
o.status = status;
|
382
|
+
|
383
|
+
o.reason = r;
|
384
|
+
if (Porffor.fastPush(_allOut, o) == _allLen) _allRes(_allOut);
|
385
|
+
});
|
386
|
+
} else {
|
387
|
+
const o = {};
|
388
|
+
let status: bytestring = '';
|
389
|
+
status = 'fulfilled';
|
390
|
+
o.status = status;
|
391
|
+
|
392
|
+
o.value = x;
|
393
|
+
Porffor.fastPush(_allOut, o);
|
394
|
+
}
|
395
|
+
}
|
396
|
+
|
397
|
+
if (_allLen == 0) {
|
398
|
+
// empty iterable: immediately resolve
|
399
|
+
_allRes(_allOut);
|
400
|
+
} else if (_allOut.length == _allLen) {
|
401
|
+
// given only non-promises, resolve next
|
402
|
+
__Porffor_promise_runNext(() => {
|
403
|
+
_allRes(_allOut);
|
404
|
+
});
|
405
|
+
}
|
406
|
+
});
|
407
|
+
};
|
408
|
+
|
409
|
+
|
242
410
|
export const __Promise_prototype_toString = (_this: any) => {
|
243
411
|
const str: bytestring = '[object Promise]';
|
244
412
|
return str;
|
@@ -1921,14 +1921,14 @@ export const BuiltinFuncs = function() {
|
|
1921
1921
|
locals: [], localNames: [],
|
1922
1922
|
};
|
1923
1923
|
this.__Porffor_promise_resolve = {
|
1924
|
-
wasm: (scope, {glbl,builtin}) => [[32,0],[32,1],[16, ...builtin('__ecma262_IsPromise')],[33,2],[33,3],[32,2],[33,4],[2,127],[32,4],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,4],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,3],[252,3],[11,"TYPESWITCH_end"],[4,64],[
|
1924
|
+
wasm: (scope, {glbl,builtin}) => [[32,0],[32,1],[16, ...builtin('__ecma262_IsPromise')],[33,2],[33,3],[32,2],[33,4],[2,127],[32,4],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,4],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,3],[252,3],[11,"TYPESWITCH_end"],[4,64],[5],...glbl(35, 'activePromise', 124),...glbl(35, 'activePromise#type', 127),[32,0],[32,1],[16, ...builtin('__ecma262_FulfillPromise')],[33,2],[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
1925
1925
|
params: [124,127], typedParams: 1,
|
1926
1926
|
returns: [124,127], typedReturns: 1,
|
1927
1927
|
locals: [127,124,127], localNames: ["value","value#type","#last_type","#logicinner_tmp","#typeswitch_tmp"],
|
1928
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]]},
|
1929
1929
|
};
|
1930
1930
|
this.__Porffor_promise_reject = {
|
1931
|
-
wasm: (scope, {glbl,builtin}) => [[32,0],[32,1],[16, ...builtin('__ecma262_IsPromise')],[33,2],[33,3],[32,2],[33,4],[2,127],[32,4],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,4],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,3],[252,3],[11,"TYPESWITCH_end"],[4,64],[
|
1931
|
+
wasm: (scope, {glbl,builtin}) => [[32,0],[32,1],[16, ...builtin('__ecma262_IsPromise')],[33,2],[33,3],[32,2],[33,4],[2,127],[32,4],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,4],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,3],[252,3],[40,1,0],[12,1],[11],[32,3],[252,3],[11,"TYPESWITCH_end"],[4,64],[5],...glbl(35, 'activePromise', 124),...glbl(35, 'activePromise#type', 127),[32,0],[32,1],[16, ...builtin('__ecma262_RejectPromise')],[33,2],[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
1932
1932
|
params: [124,127], typedParams: 1,
|
1933
1933
|
returns: [124,127], typedReturns: 1,
|
1934
1934
|
locals: [127,124,127], localNames: ["reason","reason#type","#last_type","#logicinner_tmp","#typeswitch_tmp"],
|
@@ -1940,11 +1940,23 @@ export const BuiltinFuncs = function() {
|
|
1940
1940
|
returns: [124,127], typedReturns: 1,
|
1941
1941
|
locals: [124,124,127,124,124,127,124,124], localNames: ["obj","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#swap","fulfillReactions","rejectReactions"],
|
1942
1942
|
};
|
1943
|
+
this.__Porffor_promise_newReaction = {
|
1944
|
+
wasm: (scope, {builtin}) => [[65,31],[16, ...builtin('__Porffor_allocateBytes')],[183],[34,6],[33,9],[68,0,0,0,0,0,0,0,0],[33,10],[32,9],[252,3],[32,10],[252,3],[65,9],[108],[106],[34,8],[32,0],[34,7],[57,0,4],[32,8],[65,6],[58,0,12],[32,6],[33,9],[68,0,0,0,0,0,0,240,63],[33,10],[32,9],[252,3],[32,10],[252,3],[65,9],[108],[106],[34,8],[32,2],[34,7],[57,0,4],[32,8],[32,3],[58,0,12],[32,6],[33,9],[68,0,0,0,0,0,0,0,64],[33,10],[32,9],[252,3],[32,10],[252,3],[65,9],[108],[106],[34,8],[32,4],[34,7],[57,0,4],[32,8],[65,1],[58,0,12],[32,6],[65,208,0],[15]],
|
1945
|
+
params: [124,127,124,127,124,127], typedParams: 1,
|
1946
|
+
returns: [124,127], typedReturns: 1,
|
1947
|
+
locals: [124,124,127,124,124,127], localNames: ["handler","handler#type","promise","promise#type","type","type#type","out","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#swap"],
|
1948
|
+
};
|
1949
|
+
this.__Porffor_promise_runNext = {
|
1950
|
+
wasm: (scope, {builtin}) => [[32,0],[65,6],[68,0,0,0,0,0,0,0,0],[65,128,1],[68,0,0,0,0,0,0,240,63],[65,1],[16, ...builtin('__Porffor_promise_newReaction')],[33,3],[34,2],[32,3],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('__ecma262_NewPromiseReactionJob')],[34,4],[16, ...builtin('__ecma262_HostEnqueuePromiseJob')],[33,4],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
1951
|
+
params: [124,127], typedParams: 1,
|
1952
|
+
returns: [124,127], typedReturns: 1,
|
1953
|
+
locals: [124,127,127], localNames: ["func","func#type","reaction","reaction#type","#last_type"],
|
1954
|
+
};
|
1943
1955
|
this.__Porffor_promise_runJobs = {
|
1944
|
-
wasm: (scope, {glbl,builtin,internalThrow}) => [[3,64],[65,1],[4,64],...glbl(35, 'jobQueue', 124),[252,3],[34,3],[40,1,0],[33,2],[2,124],[32,2],[69],[4,64],[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,3],[32,2],[65,1],[107],[34,2],[54,1,0],[32,3],[43,0,4],[32,3],[45,0,12],[65,4],[32,3],[106],[65,13],[32,3],[106],[32,2],[65,9],[108],[252,10,0,0],[33,4],[11],[33,0],[32,4],[33,1],[32,0],[33,5],[32,1],[33,6],[2,127],[32,6],[65,0],[70],[4,64,"TYPESWITCH|empty"],[65,1],[12,1],[11],[32,6],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,5],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,6],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,64],[12,1],[11],[32,0],[33,8],[68,0,0,0,0,0,0,0,0],[33,9],[32,1],[33,6],[2,124],[32,6],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,8],[252,3],[32,1],[32,9],[65,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[16, ...builtin('__Porffor_object_get')],[33,4],[12,1],[11],[32,6],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,1],[32,9],[65,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[16, ...builtin('__Porffor_object_get')],[33,4],[12,1],[11],[32,6],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[16, ...builtin('__Porffor_allocate')],[34,11],[65,1],[54,0,0],[32,11],[32,9],[252,3],[65,2],[108],[32,8],[252,3],[106],[47,0,4],[59,0,4],[32,11],[184],[65,195,0],[33,4],[12,1],[11],[32,6],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,9],[252,3],[65,9],[108],[32,8],[252,3],[106],[34,10],[43,0,4],[32,10],[45,0,12],[33,4],[12,1],[11],[32,6],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[44,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,4],[12,1],[11],[32,6],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,4],[12,1],[11],[32,6],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot read property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,6],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[16, ...builtin('__Porffor_allocate')],[34,11],[65,1],[54,0,0],[32,11],[32,9],[252,3],[32,8],[252,3],[106],[45,0,4],[58,0,4],[32,11],[184],[65,195,1],[33,4],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,4],[11,"TYPESWITCH_end"],[34,7],[33,8],[68,0,0,0,0,0,0,0,0],[34,9],[252,3],[65,9],[108],[32,8],[252,3],[106],[34,10],[43,0,4],[32,10],[45,0,12],[26],[33,13],[32,7],[33,8],[68,0,0,0,0,0,0,240,63],[34,9],[252,3],[65,9],[108],[32,8],[252,3],[106],[34,10],[43,0,4],[32,10],[45,0,12],[26],[33,14],[32,0],[33,8],[68,0,0,0,0,0,0,240,63],[33,9],[32,1],[33,6],[2,124],[32,6],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,8],[252,3],[32,1],[32,9],[65,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[16, ...builtin('__Porffor_object_get')],[33,4],[12,1],[11],[32,6],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,1],[32,9],[65,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[16, ...builtin('__Porffor_object_get')],[33,4],[12,1],[11],[32,6],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[16, ...builtin('__Porffor_allocate')],[34,11],[65,1],[54,0,0],[32,11],[32,9],[252,3],[65,2],[108],[32,8],[252,3],[106],[47,0,4],[59,0,4],[32,11],[184],[65,195,0],[33,4],[12,1],[11],[32,6],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,9],[252,3],[65,9],[108],[32,8],[252,3],[106],[34,10],[43,0,4],[32,10],[45,0,12],[33,4],[12,1],[11],[32,6],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[44,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,4],[12,1],[11],[32,6],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,4],[12,1],[11],[32,6],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot read property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,6],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[16, ...builtin('__Porffor_allocate')],[34,11],[65,1],[54,0,0],[32,11],[32,9],[252,3],[32,8],[252,3],[106],[45,0,4],[58,0,4],[32,11],[184],[65,195,1],[33,4],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,4],[11,"TYPESWITCH_end"],[33,15],[32,4],[33,16],[32,13],[33,27],[32,15],[32,16],[33,19],[33,20],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,21],[33,22],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,23],[33,24],[32,27],[252,3],[34,25],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,26],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `handler is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,25],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,26],[65,1],[113],[4,124],[32,26],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,25],[17,2,0,"no_type_return"],[5],[32,25],[17,0,0,"no_type_return"],[11],[5],[32,26],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,25],[17,2,0],[33,4],[5],[32,25],[17,0,0],[33,4],[11],[11],[12,3],[11],[32,26],[65,1],[113],[4,124],[32,26],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,20],[32,19],[32,25],[17,3,0,"no_type_return"],[5],[32,20],[32,19],[32,25],[17,1,0,"no_type_return"],[11],[5],[32,26],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,20],[32,19],[32,25],[17,3,0],[33,4],[5],[32,20],[32,19],[32,25],[17,1,0],[33,4],[11],[11],[12,2],[11],[32,26],[65,1],[113],[4,124],[32,26],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,20],[32,19],[32,22],[32,21],[32,25],[17,4,0,"no_type_return"],[5],[32,20],[32,19],[32,22],[32,21],[32,25],[17,2,0,"no_type_return"],[11],[5],[32,26],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,20],[32,19],[32,22],[32,21],[32,25],[17,4,0],[33,4],[5],[32,20],[32,19],[32,22],[32,21],[32,25],[17,2,0],[33,4],[11],[11],[12,1],[11],[32,26],[65,1],[113],[4,124],[32,26],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,25],[17,5,0,"no_type_return"],[5],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,25],[17,3,0,"no_type_return"],[11],[5],[32,26],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,25],[17,5,0],[33,4],[5],[32,20],[32,19],[32,22],[32,21],[32,24],[32,23],[32,25],[17,3,0],[33,4],[11],[11],[11],[33,17],[32,4],[33,18],[32,14],[65,208,0],[32,17],[32,18],[16, ...builtin('__ecma262_FulfillPromise')],[33,4],[26],[12,1],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
1956
|
+
wasm: (scope, {glbl,builtin,internalThrow}) => [[3,64],[65,1],[4,64],...glbl(35, 'jobQueue', 124),[252,3],[34,3],[40,1,0],[33,2],[2,124],[32,2],[69],[4,64],[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,3],[32,2],[65,1],[107],[34,2],[54,1,0],[32,3],[43,0,4],[32,3],[45,0,12],[65,4],[32,3],[106],[65,13],[32,3],[106],[32,2],[65,9],[108],[252,10,0,0],[33,4],[11],[33,0],[32,4],[33,1],[32,0],[33,5],[32,1],[33,6],[2,127],[32,6],[65,0],[70],[4,64,"TYPESWITCH|empty"],[65,1],[12,1],[11],[32,6],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,5],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,6],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,64],[12,1],[11],[32,0],[33,8],[68,0,0,0,0,0,0,0,0],[33,9],[32,1],[33,6],[2,124],[32,6],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,8],[252,3],[32,1],[32,9],[65,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[16, ...builtin('__Porffor_object_get')],[33,4],[12,1],[11],[32,6],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,1],[32,9],[65,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[16, ...builtin('__Porffor_object_get')],[33,4],[12,1],[11],[32,6],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[16, ...builtin('__Porffor_allocate')],[34,11],[65,1],[54,0,0],[32,11],[32,9],[252,3],[65,2],[108],[32,8],[252,3],[106],[47,0,4],[59,0,4],[32,11],[184],[65,195,0],[33,4],[12,1],[11],[32,6],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,9],[252,3],[65,9],[108],[32,8],[252,3],[106],[34,10],[43,0,4],[32,10],[45,0,12],[33,4],[12,1],[11],[32,6],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[44,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,4],[12,1],[11],[32,6],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,4],[12,1],[11],[32,6],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot read property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,6],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[16, ...builtin('__Porffor_allocate')],[34,11],[65,1],[54,0,0],[32,11],[32,9],[252,3],[32,8],[252,3],[106],[45,0,4],[58,0,4],[32,11],[184],[65,195,1],[33,4],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,4],[11,"TYPESWITCH_end"],[34,7],[33,8],[68,0,0,0,0,0,0,0,0],[34,9],[252,3],[65,9],[108],[32,8],[252,3],[106],[34,10],[43,0,4],[32,10],[45,0,12],[26],[33,13],[32,7],[33,8],[68,0,0,0,0,0,0,240,63],[34,9],[252,3],[65,9],[108],[32,8],[252,3],[106],[34,10],[43,0,4],[32,10],[45,0,12],[33,15],[33,14],[32,7],[33,8],[68,0,0,0,0,0,0,0,64],[34,9],[252,3],[65,9],[108],[32,8],[252,3],[106],[34,10],[43,0,4],[32,10],[45,0,12],[26],[33,16],[32,0],[33,8],[68,0,0,0,0,0,0,240,63],[33,9],[32,1],[33,6],[2,124],[32,6],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,8],[252,3],[32,1],[32,9],[65,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[16, ...builtin('__Porffor_object_get')],[33,4],[12,1],[11],[32,6],[65,7],[70],[4,64,"TYPESWITCH|Object"],[32,8],[252,3],[32,1],[32,9],[65,1],[16, ...builtin('__ecma262_ToPropertyKey')],[33,12],[252,3],[32,12],[16, ...builtin('__Porffor_object_get')],[33,4],[12,1],[11],[32,6],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[16, ...builtin('__Porffor_allocate')],[34,11],[65,1],[54,0,0],[32,11],[32,9],[252,3],[65,2],[108],[32,8],[252,3],[106],[47,0,4],[59,0,4],[32,11],[184],[65,195,0],[33,4],[12,1],[11],[32,6],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,9],[252,3],[65,9],[108],[32,8],[252,3],[106],[34,10],[43,0,4],[32,10],[45,0,12],[33,4],[12,1],[11],[32,6],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[44,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[106],[45,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,4],[12,1],[11],[32,6],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,4],[12,1],[11],[32,6],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,4],[12,1],[11],[32,6],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,8],[252,3],[40,0,4],[32,9],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,4],[12,1],[11],[32,6],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],...internalThrow(scope, 'TypeError', `Cannot read property of undefined`),[68,0,0,0,0,0,0,0,0],[12,1],[11],[32,6],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[16, ...builtin('__Porffor_allocate')],[34,11],[65,1],[54,0,0],[32,11],[32,9],[252,3],[32,8],[252,3],[106],[45,0,4],[58,0,4],[32,11],[184],[65,195,1],[33,4],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,4],[11,"TYPESWITCH_end"],[33,17],[32,4],[33,18],[32,16],[68,0,0,0,0,0,0,0,0],[97],[4,64],[32,13],[33,29],[32,17],[32,18],[33,21],[33,22],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,23],[33,24],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,28],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `handler is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,27],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,27],[17,2,0],[33,4],[5],[32,27],[17,0,0],[33,4],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,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],[32,21],[32,27],[17,3,0,"no_type_return"],[5],[32,22],[32,21],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,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],[32,21],[32,27],[17,3,0],[33,4],[5],[32,22],[32,21],[32,27],[17,1,0],[33,4],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,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],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[5],[32,22],[32,21],[32,24],[32,23],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,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],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,4],[5],[32,22],[32,21],[32,24],[32,23],[32,27],[17,2,0],[33,4],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,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],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[5],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,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],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,4],[5],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,3,0],[33,4],[11],[11],[11],[34,19],[32,4],[33,20],[26],[5],[32,13],[33,29],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,21],[33,22],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,23],[33,24],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,25],[33,26],[32,29],[252,3],[34,27],[65,128,1],[108],[65,2],[106],[45,0,128,128,4,"read func lut"],[34,28],[65,2],[113],[69],[65,0],[113],[4,64],...internalThrow(scope, 'TypeError', `handler is not a constructor`),[11],[2,124],[2,64],[2,64],[2,64],[2,64],[32,27],[65,128,1],[108],[47,0,128,128,4,"read func lut"],[14,4,0,1,2,3,0],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,27],[17,2,0,"no_type_return"],[5],[32,27],[17,0,0,"no_type_return"],[11],[5],[32,28],[65,2],[113],[4,124],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, ...builtin('#get_globalThis')],[184],[65,7],[32,27],[17,2,0],[33,4],[5],[32,27],[17,0,0],[33,4],[11],[11],[12,3],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,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],[32,21],[32,27],[17,3,0,"no_type_return"],[5],[32,22],[32,21],[32,27],[17,1,0,"no_type_return"],[11],[5],[32,28],[65,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],[32,21],[32,27],[17,3,0],[33,4],[5],[32,22],[32,21],[32,27],[17,1,0],[33,4],[11],[11],[12,2],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,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],[32,21],[32,24],[32,23],[32,27],[17,4,0,"no_type_return"],[5],[32,22],[32,21],[32,24],[32,23],[32,27],[17,2,0,"no_type_return"],[11],[5],[32,28],[65,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],[32,21],[32,24],[32,23],[32,27],[17,4,0],[33,4],[5],[32,22],[32,21],[32,24],[32,23],[32,27],[17,2,0],[33,4],[11],[11],[12,1],[11],[32,28],[65,1],[113],[4,124],[32,28],[65,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],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0,"no_type_return"],[5],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,3,0,"no_type_return"],[11],[5],[32,28],[65,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],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,5,0],[33,4],[5],[32,22],[32,21],[32,24],[32,23],[32,26],[32,25],[32,27],[17,3,0],[33,4],[11],[11],[11],[26],[32,17],[34,19],[32,18],[33,20],[26],[11],[32,14],[33,5],[32,15],[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],[32,14],[32,15],[32,19],[32,20],[16, ...builtin('__ecma262_FulfillPromise')],[33,4],[26],[11],[12,1],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
1945
1957
|
params: [], typedParams: 1,
|
1946
1958
|
returns: [124,127], typedReturns: 1,
|
1947
|
-
locals: [124,127,127,127,127,124,127,124,124,124,127,127,127,124,124,124,127,124,127,127,124,127,124,127,124,127,127,124], localNames: ["x","x#type","__proto_length_cache","__proto_pointer_cache","#last_type","#logicinner_tmp","#typeswitch_tmp","reaction","#member_obj","#member_prop","#loadArray_offset","#member_allocd","#swap","handler","outPromise","value","value#type","outValue","outValue#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#indirect_callee"],
|
1959
|
+
locals: [124,127,127,127,127,124,127,124,124,124,127,127,127,124,124,127,124,124,127,124,127,127,124,127,124,127,124,127,127,124], localNames: ["x","x#type","__proto_length_cache","__proto_pointer_cache","#last_type","#logicinner_tmp","#typeswitch_tmp","reaction","#member_obj","#member_prop","#loadArray_offset","#member_allocd","#swap","handler","outPromise","outPromise#type","type","value","value#type","outValue","outValue#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#indirect_callee"],
|
1948
1960
|
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]]},
|
1949
1961
|
table: 1,
|
1950
1962
|
};
|
@@ -1956,11 +1968,115 @@ export const BuiltinFuncs = function() {
|
|
1956
1968
|
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]]},
|
1957
1969
|
table: 1, constr: 1,
|
1958
1970
|
};
|
1971
|
+
this.__Promise_resolve = {
|
1972
|
+
wasm: (scope, {glbl,builtin}) => [[16, ...builtin('__Porffor_promise_create')],[26],[34,2],...glbl(36, 'activePromise', 124),...glbl(35, 'activePromise', 124),[65,208,0],...glbl(36, 'activePromise#type', 127),[26],[32,0],[32,1],[16, ...builtin('__Porffor_promise_resolve')],[33,3],[26],[32,2],[34,4],[65,36],[15]],
|
1973
|
+
params: [124,127], typedParams: 1,
|
1974
|
+
returns: [124,127], typedReturns: 1,
|
1975
|
+
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
|
+
};
|
1978
|
+
this.__Promise_reject = {
|
1979
|
+
wasm: (scope, {glbl,builtin}) => [[16, ...builtin('__Porffor_promise_create')],[26],[34,2],...glbl(36, 'activePromise', 124),...glbl(35, 'activePromise', 124),[65,208,0],...glbl(36, 'activePromise#type', 127),[26],[32,0],[32,1],[16, ...builtin('__Porffor_promise_reject')],[33,3],[26],[32,2],[34,4],[65,36],[15]],
|
1980
|
+
params: [124,127], typedParams: 1,
|
1981
|
+
returns: [124,127], typedReturns: 1,
|
1982
|
+
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
|
+
};
|
1959
1985
|
this.__Promise_prototype_then = {
|
1960
|
-
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],[
|
1986
|
+
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]],
|
1961
1987
|
params: [124,127,124,127,124,127], typedParams: 1,
|
1962
1988
|
returns: [124,127], typedReturns: 1,
|
1963
|
-
locals: [127,124,127,124,124,124,124,127,127,127,124,124,124,
|
1989
|
+
locals: [127,124,127,124,124,124,124,127,127,127,124,124,124,124,124,124,127,124,127,124], localNames: ["_this","_this#type","onFulfilled","onFulfilled#type","onRejected","onRejected#type","#last_type","#logicinner_tmp","#typeswitch_tmp","promise","state","#member_obj","#member_prop","#loadArray_offset","#member_allocd","#swap","outPromise","fulfillReaction","rejectReaction","fulfillReactions","rejectReactions","value","value#type","reason","reason#type","pro"],
|
1990
|
+
};
|
1991
|
+
this.__Promise_prototype_catch = {
|
1992
|
+
wasm: (scope, {builtin}) => [[32,0],[32,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[32,2],[32,3],[16, ...builtin('__Promise_prototype_then')],[34,4],[15]],
|
1993
|
+
params: [124,127,124,127], typedParams: 1,
|
1994
|
+
returns: [124,127], typedReturns: 1,
|
1995
|
+
locals: [127], localNames: ["_this","_this#type","onRejected","onRejected#type","#last_type"],
|
1996
|
+
};
|
1997
|
+
this.__Promise_prototype_finally = {
|
1998
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,0],[32,1],[16, ...builtin('__ecma262_IsPromise')],[33,4],[33,5],[32,4],[33,6],[2,124],[32,6],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,5],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,6],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,5],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,5],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],...internalThrow(scope, 'TypeError', `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,0],[34,7],[33,9],[68,0,0,0,0,0,0,240,63],[34,10],[252,3],[65,9],[108],[32,9],[252,3],[106],[34,11],[43,0,4],[32,11],[45,0,12],[26],[33,8],[16, ...builtin('__Porffor_promise_create')],[26],[33,14],[32,2],[32,3],[32,14],[65,208,0],[68,0,0,0,0,0,0,240,63],[65,1],[16, ...builtin('__Porffor_promise_newReaction')],[26],[33,15],[32,8],[68,0,0,0,0,0,0,0,0],[97],[4,64],[32,7],[33,9],[68,0,0,0,0,0,0,0,64],[34,10],[252,3],[65,9],[108],[32,9],[252,3],[106],[34,11],[43,0,4],[32,11],[45,0,12],[26],[34,16],[65,208,0],[32,15],[65,208,0],[16, ...builtin('__Porffor_fastPush')],[33,4],[26],[32,7],[33,9],[68,0,0,0,0,0,0,8,64],[34,10],[252,3],[65,9],[108],[32,9],[252,3],[106],[34,11],[43,0,4],[32,11],[45,0,12],[26],[34,17],[65,208,0],[32,15],[65,208,0],[16, ...builtin('__Porffor_fastPush')],[33,4],[26],[5],[32,7],[33,9],[68,0,0,0,0,0,0,0,0],[34,10],[252,3],[65,9],[108],[32,9],[252,3],[106],[34,11],[43,0,4],[32,11],[45,0,12],[33,19],[33,18],[32,15],[65,208,0],[32,18],[32,19],[16, ...builtin('__ecma262_NewPromiseReactionJob')],[34,4],[16, ...builtin('__ecma262_HostEnqueuePromiseJob')],[33,4],[26],[11],[32,14],[34,20],[65,36],[15]],
|
1999
|
+
params: [124,127,124,127], typedParams: 1,
|
2000
|
+
returns: [124,127], typedReturns: 1,
|
2001
|
+
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
|
+
};
|
2003
|
+
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,54,64],[65,6],[16, ...builtin('__Porffor_allocate')],[184],[65,7],[68,...builtin('anonymous_2e02ab7b48f0', true, true)],[65,6],[16, ...builtin('Promise')],[34,2],[15]],
|
2005
|
+
params: [124,127], typedParams: 1,
|
2006
|
+
returns: [124,127], typedReturns: 1,
|
2007
|
+
locals: [127], localNames: ["promises","promises#type","#last_type"],
|
2008
|
+
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
|
+
};
|
2010
|
+
this.anonymous_2e02ab7b48f0 = {
|
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]],
|
2012
|
+
params: [124,127,124,127], typedParams: 1,
|
2013
|
+
returns: [124,127], typedReturns: 1,
|
2014
|
+
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
|
+
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
|
+
table: 1,
|
2017
|
+
};
|
2018
|
+
this.anonymous_a71b9f6d01c0 = {
|
2019
|
+
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
|
+
params: [124,127], typedParams: 1,
|
2021
|
+
returns: [124,127], typedReturns: 1,
|
2022
|
+
locals: [127,124,124,127,127,127,127,127,127,124,127,124,127,124,127,127,124,127], localNames: ["r","r#type","#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","#typeswitch_tmp"],
|
2023
|
+
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
|
+
table: 1,
|
2025
|
+
};
|
2026
|
+
this.anonymous_1a03f3263500 = {
|
2027
|
+
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
|
+
params: [124,127], typedParams: 1,
|
2029
|
+
returns: [124,127], typedReturns: 1,
|
2030
|
+
locals: [127,124,127,124,127,124,127,127,127,124,127], localNames: ["r","r#type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp"],
|
2031
|
+
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
|
+
table: 1,
|
2033
|
+
};
|
2034
|
+
this.anonymous_05321f705450 = {
|
2035
|
+
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
|
+
params: [], typedParams: 1,
|
2037
|
+
returns: [124,127], typedReturns: 1,
|
2038
|
+
locals: [127,124,127,124,127,124,127,127,127,124,127], localNames: ["#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp"],
|
2039
|
+
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]]},
|
2040
|
+
table: 1,
|
2041
|
+
};
|
2042
|
+
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,54,64],[65,6],[16, ...builtin('__Porffor_allocate')],[184],[65,7],[68,...builtin('anonymous_e620fdf22230', true, true)],[65,6],[16, ...builtin('Promise')],[34,2],[15]],
|
2044
|
+
params: [124,127], typedParams: 1,
|
2045
|
+
returns: [124,127], typedReturns: 1,
|
2046
|
+
locals: [127], localNames: ["promises","promises#type","#last_type"],
|
2047
|
+
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
|
+
};
|
2049
|
+
this.anonymous_e620fdf22230 = {
|
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]],
|
2051
|
+
params: [124,127,124,127], typedParams: 1,
|
2052
|
+
returns: [124,127], typedReturns: 1,
|
2053
|
+
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
|
+
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
|
+
table: 1,
|
2056
|
+
};
|
2057
|
+
this.anonymous_3590f3ad04c0 = {
|
2058
|
+
wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, ...builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring: anonymous_3590f3ad04c0/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
|
+
params: [124,127], typedParams: 1,
|
2060
|
+
returns: [124,127], typedReturns: 1,
|
2061
|
+
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
|
+
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
|
+
table: 1,
|
2064
|
+
};
|
2065
|
+
this.anonymous_335ea5c1dd80 = {
|
2066
|
+
wasm: (scope, {allocPage,glbl,builtin,internalThrow}) => [[16, ...builtin('__Porffor_allocate')],[184],[33,2],[65,7],[33,3],...number(allocPage(scope, 'bytestring: anonymous_335ea5c1dd80/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
|
+
params: [124,127], typedParams: 1,
|
2068
|
+
returns: [124,127], typedReturns: 1,
|
2069
|
+
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
|
+
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
|
+
table: 1,
|
2072
|
+
};
|
2073
|
+
this.anonymous_57c3a2a21be0 = {
|
2074
|
+
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
|
+
params: [], typedParams: 1,
|
2076
|
+
returns: [124,127], typedReturns: 1,
|
2077
|
+
locals: [127,124,127,124,127,124,127,127,127,124,127], localNames: ["#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_func","#indirect_flags","#last_type","#indirect_callee","#typeswitch_tmp"],
|
2078
|
+
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]]},
|
2079
|
+
table: 1,
|
1964
2080
|
};
|
1965
2081
|
this.__Promise_prototype_toString = {
|
1966
2082
|
wasm: (scope, {allocPage}) => [...number(allocPage(scope, 'bytestring: __Promise_prototype_toString/str', 'i8') * pageSize, 124),[34,2],[65,195,1],[15]],
|
package/compiler/codegen.js
CHANGED
@@ -46,6 +46,15 @@ const cacheAst = (decl, wasm) => {
|
|
46
46
|
astCache.set(decl, wasm);
|
47
47
|
return wasm;
|
48
48
|
};
|
49
|
+
|
50
|
+
const funcRef = (idx, name) => {
|
51
|
+
if (globalThis.precompile) return [
|
52
|
+
[ Opcodes.const, 'funcref', name ]
|
53
|
+
];
|
54
|
+
|
55
|
+
return number(idx - importedFuncs.length);
|
56
|
+
};
|
57
|
+
|
49
58
|
const generate = (scope, decl, global = false, name = undefined, valueUnused = false) => {
|
50
59
|
if (astCache.has(decl)) return astCache.get(decl);
|
51
60
|
|
@@ -65,7 +74,7 @@ const generate = (scope, decl, global = false, name = undefined, valueUnused = f
|
|
65
74
|
const func = generateFunc(scope, decl);
|
66
75
|
|
67
76
|
if (decl.type.endsWith('Expression')) {
|
68
|
-
return cacheAst(decl,
|
77
|
+
return cacheAst(decl, funcRef(func.index, func.name));
|
69
78
|
}
|
70
79
|
|
71
80
|
return cacheAst(decl, []);
|
@@ -334,8 +343,7 @@ const generateIdent = (scope, decl) => {
|
|
334
343
|
|
335
344
|
if (Object.hasOwn(importedFuncs, name)) return number(importedFuncs[name] - importedFuncs.length);
|
336
345
|
if (Object.hasOwn(funcIndex, name)) {
|
337
|
-
|
338
|
-
return number(funcIndex[name] - importedFuncs.length);
|
346
|
+
return funcRef(funcIndex[name], name);
|
339
347
|
}
|
340
348
|
}
|
341
349
|
|
@@ -5119,7 +5127,7 @@ const generateMember = (scope, decl, _global, _name, _objectWasm = undefined) =>
|
|
5119
5127
|
return out;
|
5120
5128
|
};
|
5121
5129
|
|
5122
|
-
const randId = () => Math.random().toString(16).slice(
|
5130
|
+
const randId = () => '_' + Math.random().toString(16).slice(2, -2).padEnd(12, '0');
|
5123
5131
|
|
5124
5132
|
let objectHackers = [];
|
5125
5133
|
const objectHack = node => {
|
@@ -5284,7 +5292,7 @@ const generateFunc = (scope, decl) => {
|
|
5284
5292
|
}
|
5285
5293
|
|
5286
5294
|
// inject promise job runner func at the end of main if used
|
5287
|
-
if (Object.hasOwn(funcIndex, 'Promise')) {
|
5295
|
+
if (Object.hasOwn(funcIndex, 'Promise') || funcs.some(x => x.name.includes('_Promise_'))) {
|
5288
5296
|
wasm.push(
|
5289
5297
|
...generateCall(func, {
|
5290
5298
|
callee: {
|
package/package.json
CHANGED