porffor 0.19.11 → 0.19.13
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/console.ts +533 -2
- package/compiler/builtins/porffor.d.ts +9 -0
- package/compiler/builtins/z_map.ts +8 -1
- package/compiler/codegen.js +7 -33
- package/compiler/generated_builtins.js +170 -4
- package/compiler/precompile.js +8 -3
- package/package.json +1 -1
- package/runner/index.js +1 -1
@@ -1,6 +1,537 @@
|
|
1
1
|
import type {} from './porffor.d.ts';
|
2
2
|
|
3
|
+
export const __Porffor_printString = (arg: bytestring|string) => {
|
4
|
+
let ptr: i32 = Porffor.wasm`local.get ${arg}`;
|
5
|
+
if (Porffor.rawType(arg) == Porffor.TYPES.bytestring) {
|
6
|
+
const end: i32 = ptr + arg.length;
|
7
|
+
while (ptr < end) {
|
8
|
+
printChar(Porffor.wasm.i32.load8_u(ptr++, 0, 4));
|
9
|
+
}
|
10
|
+
} else { // regular string
|
11
|
+
const end: i32 = ptr + arg.length * 2;
|
12
|
+
while (ptr < end) {
|
13
|
+
printChar(Porffor.wasm.i32.load16_u(ptr, 0, 4));
|
14
|
+
ptr += 2;
|
15
|
+
}
|
16
|
+
}
|
17
|
+
};
|
18
|
+
|
19
|
+
export const __Porffor_printHexDigit = (arg: number) => {
|
20
|
+
switch (arg) {
|
21
|
+
case 0xf: printStatic('f'); return;
|
22
|
+
case 0xe: printStatic('e'); return;
|
23
|
+
case 0xd: printStatic('d'); return;
|
24
|
+
case 0xc: printStatic('c'); return;
|
25
|
+
case 0xb: printStatic('b'); return;
|
26
|
+
case 0xa: printStatic('a'); return;
|
27
|
+
|
28
|
+
default: print(arg);
|
29
|
+
}
|
30
|
+
};
|
31
|
+
|
32
|
+
export const __Porffor_print = (arg: any, colors: boolean = true) => {
|
33
|
+
// todo: Symbol.toStringTag could reduce duplication here
|
34
|
+
|
35
|
+
const t: i32 = Porffor.rawType(arg);
|
36
|
+
switch (t) {
|
37
|
+
case Porffor.TYPES.number:
|
38
|
+
if (colors) printStatic('\x1b[33m'); // yellow
|
39
|
+
print(arg);
|
40
|
+
if (colors) printStatic('\x1b[m');
|
41
|
+
return;
|
42
|
+
|
43
|
+
case Porffor.TYPES.boolean:
|
44
|
+
if (colors) printStatic('\x1b[33m'); // yellow
|
45
|
+
if (arg) {
|
46
|
+
printStatic('true');
|
47
|
+
} else {
|
48
|
+
printStatic('false');
|
49
|
+
}
|
50
|
+
if (colors) printStatic('\x1b[m');
|
51
|
+
return;
|
52
|
+
|
53
|
+
case Porffor.TYPES.bytestring:
|
54
|
+
case Porffor.TYPES.string:
|
55
|
+
if (colors) printStatic('\x1b[32m'); // green
|
56
|
+
printStatic("'");
|
57
|
+
|
58
|
+
__Porffor_printString(arg);
|
59
|
+
|
60
|
+
printStatic("'");
|
61
|
+
if (colors) printStatic('\x1b[m');
|
62
|
+
return;
|
63
|
+
|
64
|
+
case Porffor.TYPES.array:
|
65
|
+
printStatic('[ ');
|
66
|
+
|
67
|
+
const arrLen: i32 = arg.length - 1;
|
68
|
+
for (let i: i32 = 0; i <= arrLen; i++) {
|
69
|
+
__Porffor_print(arg[i], colors);
|
70
|
+
if (i != arrLen) printStatic(', ');
|
71
|
+
}
|
72
|
+
|
73
|
+
printStatic(' ]');
|
74
|
+
return;
|
75
|
+
|
76
|
+
case Porffor.TYPES.empty:
|
77
|
+
case Porffor.TYPES.undefined:
|
78
|
+
if (colors) printStatic('\x1b[2m'); // dim
|
79
|
+
printStatic('undefined');
|
80
|
+
if (colors) printStatic('\x1b[0m');
|
81
|
+
return;
|
82
|
+
|
83
|
+
case Porffor.TYPES.object:
|
84
|
+
if (arg) {
|
85
|
+
if (colors) printStatic('\x1b[34m'); // blue
|
86
|
+
printStatic('[Object]');
|
87
|
+
} else {
|
88
|
+
if (colors) printStatic('\x1b[1m'); // bold
|
89
|
+
printStatic('null');
|
90
|
+
}
|
91
|
+
|
92
|
+
if (colors) printStatic('\x1b[m');
|
93
|
+
return;
|
94
|
+
|
95
|
+
case Porffor.TYPES.function:
|
96
|
+
// todo: this actually doesn't work because we don't have function name information at runtime
|
97
|
+
printStatic('[Function ');
|
98
|
+
__Porffor_printString(arg.name);
|
99
|
+
printStatic(']');
|
100
|
+
return;
|
101
|
+
|
102
|
+
case Porffor.TYPES.date:
|
103
|
+
if (colors) printStatic('\x1b[35m'); // purple
|
104
|
+
__Porffor_printString(__Date_prototype_toISOString(arg));
|
105
|
+
if (colors) printStatic('\x1b[m');
|
106
|
+
return;
|
107
|
+
|
108
|
+
case Porffor.TYPES.symbol:
|
109
|
+
if (colors) printStatic('\x1b[32m'); // green
|
110
|
+
__Porffor_printString(__Symbol_prototype_toString(arg));
|
111
|
+
if (colors) printStatic('\x1b[m');
|
112
|
+
return;
|
113
|
+
|
114
|
+
case Porffor.TYPES.uint8array: {
|
115
|
+
const arrLen: i32 = arg.length - 1;
|
116
|
+
printStatic('Uint8Array(');
|
117
|
+
print(arrLen + 1);
|
118
|
+
printStatic(') [ ');
|
119
|
+
for (let i: i32 = 0; i <= arrLen; i++) {
|
120
|
+
__Porffor_print(arg[i], colors);
|
121
|
+
if (i != arrLen) printStatic(', ');
|
122
|
+
}
|
123
|
+
printStatic(' ]');
|
124
|
+
return;
|
125
|
+
}
|
126
|
+
case Porffor.TYPES.int8array: {
|
127
|
+
const arrLen: i32 = arg.length - 1;
|
128
|
+
printStatic('Int8Array(');
|
129
|
+
print(arrLen + 1);
|
130
|
+
printStatic(') [ ');
|
131
|
+
for (let i: i32 = 0; i <= arrLen; i++) {
|
132
|
+
__Porffor_print(arg[i], colors);
|
133
|
+
if (i != arrLen) printStatic(', ');
|
134
|
+
}
|
135
|
+
printStatic(' ]');
|
136
|
+
return;
|
137
|
+
}
|
138
|
+
case Porffor.TYPES.uint8clampedarray: {
|
139
|
+
const arrLen: i32 = arg.length - 1;
|
140
|
+
printStatic('Uint8ClampedArray(');
|
141
|
+
print(arrLen + 1);
|
142
|
+
printStatic(') [ ');
|
143
|
+
for (let i: i32 = 0; i <= arrLen; i++) {
|
144
|
+
__Porffor_print(arg[i], colors);
|
145
|
+
if (i != arrLen) printStatic(', ');
|
146
|
+
}
|
147
|
+
printStatic(' ]');
|
148
|
+
return;
|
149
|
+
}
|
150
|
+
case Porffor.TYPES.uint16array: {
|
151
|
+
const arrLen: i32 = arg.length - 1;
|
152
|
+
printStatic('Uint16Array(');
|
153
|
+
print(arrLen + 1);
|
154
|
+
printStatic(') [ ');
|
155
|
+
for (let i: i32 = 0; i <= arrLen; i++) {
|
156
|
+
__Porffor_print(arg[i], colors);
|
157
|
+
if (i != arrLen) printStatic(', ');
|
158
|
+
}
|
159
|
+
printStatic(' ]');
|
160
|
+
return;
|
161
|
+
}
|
162
|
+
case Porffor.TYPES.int16array: {
|
163
|
+
const arrLen: i32 = arg.length - 1;
|
164
|
+
printStatic('Int16Array(');
|
165
|
+
print(arrLen + 1);
|
166
|
+
printStatic(') [ ');
|
167
|
+
for (let i: i32 = 0; i <= arrLen; i++) {
|
168
|
+
__Porffor_print(arg[i], colors);
|
169
|
+
if (i != arrLen) printStatic(', ');
|
170
|
+
}
|
171
|
+
printStatic(' ]');
|
172
|
+
return;
|
173
|
+
}
|
174
|
+
case Porffor.TYPES.uint32array: {
|
175
|
+
const arrLen: i32 = arg.length - 1;
|
176
|
+
printStatic('Uint32Array(');
|
177
|
+
print(arrLen + 1);
|
178
|
+
printStatic(') [ ');
|
179
|
+
for (let i: i32 = 0; i <= arrLen; i++) {
|
180
|
+
__Porffor_print(arg[i], colors);
|
181
|
+
if (i != arrLen) printStatic(', ');
|
182
|
+
}
|
183
|
+
printStatic(' ]');
|
184
|
+
return;
|
185
|
+
}
|
186
|
+
case Porffor.TYPES.int32array: {
|
187
|
+
const arrLen: i32 = arg.length - 1;
|
188
|
+
printStatic('Int32Array(');
|
189
|
+
print(arrLen + 1);
|
190
|
+
printStatic(') [ ');
|
191
|
+
for (let i: i32 = 0; i <= arrLen; i++) {
|
192
|
+
__Porffor_print(arg[i], colors);
|
193
|
+
if (i != arrLen) printStatic(', ');
|
194
|
+
}
|
195
|
+
printStatic(' ]');
|
196
|
+
return;
|
197
|
+
}
|
198
|
+
case Porffor.TYPES.float32array: {
|
199
|
+
const arrLen: i32 = arg.length - 1;
|
200
|
+
printStatic('Float32Array(');
|
201
|
+
print(arrLen + 1);
|
202
|
+
printStatic(') [ ');
|
203
|
+
for (let i: i32 = 0; i <= arrLen; i++) {
|
204
|
+
__Porffor_print(arg[i], colors);
|
205
|
+
if (i != arrLen) printStatic(', ');
|
206
|
+
}
|
207
|
+
printStatic(' ]');
|
208
|
+
return;
|
209
|
+
}
|
210
|
+
case Porffor.TYPES.float64array: {
|
211
|
+
const arrLen: i32 = arg.length - 1;
|
212
|
+
printStatic('Float64Array(');
|
213
|
+
print(arrLen + 1);
|
214
|
+
printStatic(') [ ');
|
215
|
+
for (let i: i32 = 0; i <= arrLen; i++) {
|
216
|
+
__Porffor_print(arg[i], colors);
|
217
|
+
if (i != arrLen) printStatic(', ');
|
218
|
+
}
|
219
|
+
printStatic(' ]');
|
220
|
+
return;
|
221
|
+
}
|
222
|
+
|
223
|
+
case Porffor.TYPES.sharedarraybuffer:
|
224
|
+
case Porffor.TYPES.arraybuffer: {
|
225
|
+
if (t == Porffor.TYPES.sharedarraybuffer) printStatic('SharedArrayBuffer');
|
226
|
+
else printStatic('ArrayBuffer');
|
227
|
+
printStatic(' {\n');
|
228
|
+
|
229
|
+
if (colors) printStatic('\x1b[34m'); // blue
|
230
|
+
printStatic(' [Uint8Contents]');
|
231
|
+
if (colors) printStatic('\x1b[m');
|
232
|
+
printStatic('): <');
|
233
|
+
|
234
|
+
const buffer = new Uint8Array(arg);
|
235
|
+
const bufferLen = buffer.length - 1;
|
236
|
+
for (let i = 0; i <= bufferLen; i++) {
|
237
|
+
const ele = buffer[i];
|
238
|
+
__Porffor_printHexDigit((ele & 0xF0) / 16);
|
239
|
+
__Porffor_printHexDigit(ele & 0xF);
|
240
|
+
if (i != bufferLen) printStatic(' ');
|
241
|
+
}
|
242
|
+
|
243
|
+
printStatic('>,\n byteLength: ');
|
244
|
+
if (colors) printStatic('\x1b[33m'); // yellow
|
245
|
+
print(arg.byteLength);
|
246
|
+
if (colors) printStatic('\x1b[m');
|
247
|
+
printStatic('\n}');
|
248
|
+
return;
|
249
|
+
}
|
250
|
+
|
251
|
+
case Porffor.TYPES.dataview: {
|
252
|
+
printStatic('DataView {\n');
|
253
|
+
printStatic(' byteLength: ');
|
254
|
+
__Porffor_print(arg.byteLength, colors);
|
255
|
+
printStatic(',\n byteOffset: ');
|
256
|
+
__Porffor_print(arg.byteOffset, colors);
|
257
|
+
printStatic(',\n buffer: ');
|
258
|
+
__Porffor_print(arg.buffer, colors);
|
259
|
+
printStatic('\n}');
|
260
|
+
return;
|
261
|
+
}
|
262
|
+
|
263
|
+
case Porffor.TYPES.weakmap:
|
264
|
+
case Porffor.TYPES.map: {
|
265
|
+
if (t == Porffor.TYPES.weakmap) printStatic('WeakMap');
|
266
|
+
else printStatic('Map');
|
267
|
+
printStatic('(');
|
268
|
+
|
269
|
+
const map = __Map_prototype_keys(arg);
|
270
|
+
const mapLen: i32 = map.length - 1;
|
271
|
+
print(mapLen + 1);
|
272
|
+
printStatic(') { ');
|
273
|
+
|
274
|
+
for (let i: i32 = 0; i < mapLen; i++) {
|
275
|
+
const key = map[i];
|
276
|
+
__Porffor_print(key);
|
277
|
+
printStatic(' => ');
|
278
|
+
__Porffor_print(__Map_prototype_get(arg, key), colors);
|
279
|
+
if (i != mapLen) printStatic(', ');
|
280
|
+
}
|
281
|
+
|
282
|
+
printStatic(' }');
|
283
|
+
return;
|
284
|
+
}
|
285
|
+
|
286
|
+
case Porffor.TYPES.weakset:
|
287
|
+
case Porffor.TYPES.set: {
|
288
|
+
if (t == Porffor.TYPES.weakset) printStatic('WeakSet');
|
289
|
+
else printStatic('Set');
|
290
|
+
printStatic('(');
|
291
|
+
|
292
|
+
const set = __Set_prototype_values(arg);
|
293
|
+
const setLen: i32 = set.length - 1;
|
294
|
+
print(setLen + 1);
|
295
|
+
printStatic(') { ');
|
296
|
+
|
297
|
+
for (let i: i32 = 0; i <= setLen; i++) {
|
298
|
+
__Porffor_print(set[i], colors);
|
299
|
+
if (i != setLen) printStatic(', ');
|
300
|
+
}
|
301
|
+
|
302
|
+
printStatic(' }');
|
303
|
+
return;
|
304
|
+
}
|
305
|
+
|
306
|
+
case Porffor.TYPES.weakref:
|
307
|
+
printStatic('WeakRef {}');
|
308
|
+
return;
|
309
|
+
|
310
|
+
case Porffor.TYPES.regexp:
|
311
|
+
// todo: we currently have no way of getting the source text, so this falls back
|
312
|
+
|
313
|
+
default:
|
314
|
+
__Porffor_printString(arg.toString());
|
315
|
+
return;
|
316
|
+
}
|
317
|
+
};
|
318
|
+
|
319
|
+
let tabLevel = 0;
|
320
|
+
export const __Porffor_consoleIndent = () => {
|
321
|
+
for (let i = 0; i < tabLevel; i++) {
|
322
|
+
printStatic('\t');
|
323
|
+
}
|
324
|
+
};
|
325
|
+
|
3
326
|
export const __console_clear = () => {
|
4
|
-
|
5
|
-
|
327
|
+
printStatic('\x1b[1;1H\x1b[J');
|
328
|
+
tabLevel = 0;
|
329
|
+
};
|
330
|
+
|
331
|
+
export const __Porffor_consolePrint = (arg: any) => {
|
332
|
+
switch (Porffor.rawType(arg)) {
|
333
|
+
case Porffor.TYPES.bytestring:
|
334
|
+
case Porffor.TYPES.string:
|
335
|
+
__Porffor_printString(arg);
|
336
|
+
return;
|
337
|
+
|
338
|
+
default:
|
339
|
+
__Porffor_print(arg);
|
340
|
+
}
|
341
|
+
};
|
342
|
+
|
343
|
+
export const __console_group = (label: bytestring) => {
|
344
|
+
if (Porffor.rawType(label) != Porffor.TYPES.undefined) __Porffor_consolePrint(label);
|
345
|
+
|
346
|
+
tabLevel++;
|
347
|
+
};
|
348
|
+
|
349
|
+
export const __console_groupCollapsed = (label: bytestring) => __console_group(label);
|
350
|
+
|
351
|
+
export const __console_groupEnd = (label: bytestring) => {
|
352
|
+
if (Porffor.rawType(label) != Porffor.TYPES.undefined) __Porffor_consolePrint(label);
|
353
|
+
|
354
|
+
tabLevel--;
|
355
|
+
if (tabLevel < 0) tabLevel = 0;
|
356
|
+
};
|
357
|
+
|
358
|
+
export const __console_log = (...args: any[]) => {
|
359
|
+
const argLen: i32 = args.length - 1;
|
360
|
+
for (let i = 0; i <= argLen; i++) {
|
361
|
+
__Porffor_consoleIndent();
|
362
|
+
__Porffor_consolePrint(args[i]);
|
363
|
+
|
364
|
+
if (i != argLen) printStatic(' ');
|
365
|
+
}
|
366
|
+
|
367
|
+
printStatic('\n');
|
368
|
+
};
|
369
|
+
|
370
|
+
export const __console_debug = (...args: any[]) => {
|
371
|
+
const argLen: i32 = args.length - 1;
|
372
|
+
for (let i = 0; i <= argLen; i++) {
|
373
|
+
__Porffor_consoleIndent();
|
374
|
+
__Porffor_consolePrint(args[i]);
|
375
|
+
|
376
|
+
if (i != argLen) printStatic(' ');
|
377
|
+
}
|
378
|
+
|
379
|
+
printStatic('\n');
|
380
|
+
};
|
381
|
+
|
382
|
+
export const __console_info = (...args: any[]) => {
|
383
|
+
const argLen: i32 = args.length - 1;
|
384
|
+
for (let i = 0; i <= argLen; i++) {
|
385
|
+
__Porffor_consoleIndent();
|
386
|
+
__Porffor_consolePrint(args[i]);
|
387
|
+
|
388
|
+
if (i != argLen) printStatic(' ');
|
389
|
+
}
|
390
|
+
|
391
|
+
printStatic('\n');
|
392
|
+
};
|
393
|
+
|
394
|
+
export const __console_warn = (...args: any[]) => {
|
395
|
+
const argLen: i32 = args.length - 1;
|
396
|
+
for (let i = 0; i <= argLen; i++) {
|
397
|
+
__Porffor_consoleIndent();
|
398
|
+
__Porffor_consolePrint(args[i]);
|
399
|
+
|
400
|
+
if (i != argLen) printStatic(' ');
|
401
|
+
}
|
402
|
+
|
403
|
+
printStatic('\n');
|
404
|
+
};
|
405
|
+
|
406
|
+
export const __console_error = (...args: any[]) => {
|
407
|
+
const argLen: i32 = args.length - 1;
|
408
|
+
for (let i = 0; i <= argLen; i++) {
|
409
|
+
__Porffor_consoleIndent();
|
410
|
+
__Porffor_consolePrint(args[i]);
|
411
|
+
|
412
|
+
if (i != argLen) printStatic(' ');
|
413
|
+
}
|
414
|
+
|
415
|
+
printStatic('\n');
|
416
|
+
};
|
417
|
+
|
418
|
+
export const __console_assert = (assertion: any, ...args: any[]) => {
|
419
|
+
if (assertion) return;
|
420
|
+
|
421
|
+
__Porffor_consoleIndent();
|
422
|
+
printStatic('Assertion failed');
|
423
|
+
if (args.length != 0) {
|
424
|
+
printStatic(': ');
|
425
|
+
}
|
426
|
+
|
427
|
+
const argLen: i32 = args.length - 1;
|
428
|
+
for (let i = 0; i <= argLen; i++) {
|
429
|
+
__Porffor_consolePrint(args[i]);
|
430
|
+
if (i != argLen) printStatic(' ');
|
431
|
+
}
|
432
|
+
|
433
|
+
printStatic('\n');
|
434
|
+
};
|
435
|
+
|
436
|
+
export const __Porffor_dirObject = (obj: any, colors: boolean, depth: i32, showHidden: boolean) => {
|
437
|
+
if (Porffor.rawType(obj) != Porffor.TYPES.object || depth == 0) {
|
438
|
+
__Porffor_print(obj, colors);
|
439
|
+
return;
|
440
|
+
}
|
441
|
+
|
442
|
+
printStatic('{ ');
|
443
|
+
|
444
|
+
const keys = __Map_prototype_keys(obj);
|
445
|
+
const keysLen = keys.length - 1;
|
446
|
+
for (let i = 0; i <= keysLen; i++) {
|
447
|
+
const key = keys[i];
|
448
|
+
__Porffor_consolePrint(key);
|
449
|
+
printStatic(': ');
|
450
|
+
|
451
|
+
const value = __Map_prototype_get(obj, key);
|
452
|
+
__Porffor_dirObject(value, colors, depth - 1, showHidden);
|
453
|
+
|
454
|
+
if (i != keysLen) printStatic(',');
|
455
|
+
}
|
456
|
+
|
457
|
+
printStatic(' }');
|
458
|
+
};
|
459
|
+
|
460
|
+
export const __console_dir = (obj: any, options: any) => {
|
461
|
+
let colors: boolean = true;
|
462
|
+
let depth: i32 = 2;
|
463
|
+
|
464
|
+
// todo: we currently have no concept of enumerable or nonenumerable properties, so this does nothing
|
465
|
+
let showHidden: boolean = false;
|
466
|
+
|
467
|
+
if (options) {
|
468
|
+
colors = options.colors;
|
469
|
+
depth = options.depth;
|
470
|
+
showHidden = options.showHidden;
|
471
|
+
}
|
472
|
+
|
473
|
+
__Porffor_consoleIndent();
|
474
|
+
__Porffor_dirObject(obj, colors, depth, showHidden);
|
475
|
+
printStatic('\n');
|
476
|
+
};
|
477
|
+
|
478
|
+
export const __console_dirxml = (obj: any) => __console_dir(obj);
|
479
|
+
|
480
|
+
const countMap = new Map();
|
481
|
+
export const __console_count = (label: any) => {
|
482
|
+
label ??= 'default';
|
483
|
+
const val = (countMap.get(label) ?? 0) + 1;
|
484
|
+
countMap.set(label, val);
|
485
|
+
|
486
|
+
__Porffor_consoleIndent();
|
487
|
+
__Porffor_consolePrint(label);
|
488
|
+
printStatic(': ');
|
489
|
+
print(val);
|
490
|
+
printStatic('\n');
|
491
|
+
};
|
492
|
+
|
493
|
+
export const __console_countReset = (label: any) => {
|
494
|
+
label ??= 'default';
|
495
|
+
countMap.set(label, -1);
|
496
|
+
__console_count(label);
|
497
|
+
};
|
498
|
+
|
499
|
+
const timeMap = new Map();
|
500
|
+
export const __console_time = (label: any) => {
|
501
|
+
label ??= 'default';
|
502
|
+
|
503
|
+
// warn if label already exists
|
504
|
+
if (timeMap.has(label)) {
|
505
|
+
printStatic("Warning: Timer '");
|
506
|
+
__Porffor_consolePrint(label);
|
507
|
+
printStatic("' already exists for console.time()\n");
|
508
|
+
}
|
509
|
+
|
510
|
+
timeMap.set(label, performance.now());
|
511
|
+
};
|
512
|
+
|
513
|
+
export const __console_timeLog = (label: any) => {
|
514
|
+
label ??= 'default';
|
515
|
+
__Porffor_consoleIndent();
|
516
|
+
|
517
|
+
const val = timeMap.get(label);
|
518
|
+
if (!val) {
|
519
|
+
printStatic("Timer '");
|
520
|
+
__Porffor_consolePrint(label);
|
521
|
+
printStatic("' does not exist\n");
|
522
|
+
return;
|
523
|
+
}
|
524
|
+
|
525
|
+
__Porffor_consolePrint(label);
|
526
|
+
printStatic(': ');
|
527
|
+
|
528
|
+
print(performance.now() - val);
|
529
|
+
printStatic(' ms\n');
|
530
|
+
};
|
531
|
+
|
532
|
+
export const __console_timeEnd = (label: any) => {
|
533
|
+
label ??= 'default';
|
534
|
+
|
535
|
+
__console_timeLog(label);
|
536
|
+
timeMap.delete(label);
|
6
537
|
};
|
@@ -78,6 +78,15 @@ type PorfforGlobal = {
|
|
78
78
|
declare global {
|
79
79
|
const Porffor: PorfforGlobal;
|
80
80
|
|
81
|
+
const ecma262: {
|
82
|
+
ToIntegerOrInfinity(argument: unknown): number;
|
83
|
+
ToString(argument: unknown): bytestring;
|
84
|
+
}
|
85
|
+
|
86
|
+
const print: (arg: any) => void;
|
87
|
+
const printChar: (char: number) => void;
|
88
|
+
const printStatic: (str: string) => void;
|
89
|
+
|
81
90
|
type i32 = number;
|
82
91
|
type i64 = number;
|
83
92
|
type f64 = number;
|
@@ -127,4 +127,11 @@ export const __Map_prototype_values = (_this: Map) => {
|
|
127
127
|
}
|
128
128
|
|
129
129
|
return out;
|
130
|
-
};
|
130
|
+
};
|
131
|
+
|
132
|
+
export const __Map_prototype_toString = (_this: Map) => {
|
133
|
+
const str: bytestring = '[object Map]';
|
134
|
+
return str;
|
135
|
+
}
|
136
|
+
|
137
|
+
export const __Map_prototype_toLocaleString = (_this: Map) => __Map_prototype_toString(_this);
|
package/compiler/codegen.js
CHANGED
@@ -442,7 +442,6 @@ const concatStrings = (scope, left, right, leftType, rightType, allBytestrings =
|
|
442
442
|
const out = localTmp(scope, 'concat_out_pointer', Valtype.i32);
|
443
443
|
|
444
444
|
if (!skipTypeCheck && !allBytestrings) includeBuiltin(scope, '__Porffor_bytestringToString');
|
445
|
-
includeBuiltin(scope, '__Porffor_print');
|
446
445
|
return [
|
447
446
|
// setup pointers
|
448
447
|
...(left.length === 0 ? [
|
@@ -564,7 +563,6 @@ const compareStrings = (scope, left, right, leftType, rightType, allBytestrings
|
|
564
563
|
const indexEnd = localTmp(scope, 'compare_index_end', Valtype.i32);
|
565
564
|
|
566
565
|
if (!skipTypeCheck && !allBytestrings) includeBuiltin(scope, '__Porffor_bytestringToString');
|
567
|
-
includeBuiltin(scope, '__Porffor_print');
|
568
566
|
return [
|
569
567
|
// setup pointers
|
570
568
|
...(left.length === 0 ? [
|
@@ -4674,6 +4672,9 @@ const objectHack = node => {
|
|
4674
4672
|
const out = (() => {
|
4675
4673
|
if (node.computed || node.optional) return;
|
4676
4674
|
|
4675
|
+
// hack: block these properties as they can be accessed on functions
|
4676
|
+
if (node.property.name == "length" || node.property.name == "name") return;
|
4677
|
+
|
4677
4678
|
let objectName = node.object.name;
|
4678
4679
|
|
4679
4680
|
// if object is not identifier or another member exp, give up
|
@@ -4957,41 +4958,14 @@ const internalConstrs = {
|
|
4957
4958
|
length: 2
|
4958
4959
|
},
|
4959
4960
|
|
4960
|
-
|
4961
|
+
printStatic: {
|
4961
4962
|
generate: (scope, decl) => {
|
4962
|
-
const
|
4963
|
-
|
4964
|
-
for (let i = 0; i < decl.arguments.length; i++) {
|
4965
|
-
out.push(
|
4966
|
-
...generateCall(scope, {
|
4967
|
-
callee: {
|
4968
|
-
type: 'Identifier',
|
4969
|
-
name: '__Porffor_print'
|
4970
|
-
},
|
4971
|
-
arguments: [ decl.arguments[i] ]
|
4972
|
-
}),
|
4973
|
-
|
4974
|
-
// print space
|
4975
|
-
...(i !== decl.arguments.length - 1 ? [
|
4976
|
-
...number(32, globalThis.precompile ? Valtype.f64 : valtypeBinary),
|
4977
|
-
[ Opcodes.call, importedFuncs.printChar ]
|
4978
|
-
] : [])
|
4979
|
-
);
|
4980
|
-
}
|
4981
|
-
|
4982
|
-
// print newline
|
4983
|
-
out.push(
|
4984
|
-
...number(10, globalThis.precompile ? Valtype.f64 : valtypeBinary),
|
4985
|
-
[ Opcodes.call, importedFuncs.printChar ]
|
4986
|
-
);
|
4987
|
-
|
4988
|
-
out.push(...number(UNDEFINED));
|
4989
|
-
|
4990
|
-
return out;
|
4963
|
+
const str = decl.arguments[0].value;
|
4964
|
+
return printStaticStr(str);
|
4991
4965
|
},
|
4992
4966
|
type: TYPES.undefined,
|
4993
4967
|
notConstr: true,
|
4994
|
-
length:
|
4968
|
+
length: 1
|
4995
4969
|
}
|
4996
4970
|
};
|
4997
4971
|
|
@@ -563,12 +563,165 @@ export const BuiltinFuncs = function() {
|
|
563
563
|
returns: [124,127], typedReturns: 1,
|
564
564
|
locals: [], localNames: ["_this","_this#type"],
|
565
565
|
};
|
566
|
+
this.__Porffor_printString = {
|
567
|
+
wasm: (scope, {builtin}) => [[32,0],[33,2],[32,0],[32,1],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,96,104,64],[97],[4,64],[32,2],[32,0],[252,3],[40,1,0],[184],[160],[33,3],[3,64],[32,2],[32,3],[99],[4,64],[32,2],[32,2],[68,0,0,0,0,0,0,240,63],[160],[33,2],[252,2],[45,0,4],[183],[16,1],[12,1],[11],[11],[5],[32,2],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,0,64],[162],[160],[33,3],[3,64],[32,2],[32,3],[99],[4,64],[32,2],[252,2],[47,0,4],[183],[16,1],[32,2],[68,0,0,0,0,0,0,0,64],[160],[33,2],[12,1],[11],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
568
|
+
params: [124,127], typedParams: 1,
|
569
|
+
returns: [124,127], typedReturns: 1,
|
570
|
+
locals: [124,124], localNames: ["arg","arg#type","ptr","end"],
|
571
|
+
};
|
572
|
+
this.__Porffor_printHexDigit = {
|
573
|
+
wasm: (scope, {}) => [[32,0],[33,2],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,2],[68,0,0,0,0,0,0,46,64],[97],[13,0],[32,2],[68,0,0,0,0,0,0,44,64],[97],[13,1],[32,2],[68,0,0,0,0,0,0,42,64],[97],[13,2],[32,2],[68,0,0,0,0,0,0,40,64],[97],[13,3],[32,2],[68,0,0,0,0,0,0,38,64],[97],[13,4],[32,2],[68,0,0,0,0,0,0,36,64],[97],[13,5],[12,6],[11],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,192,88,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[16,0],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
574
|
+
params: [124,127], typedParams: 1,
|
575
|
+
returns: [124,127], typedReturns: 1,
|
576
|
+
locals: [124], localNames: ["arg","arg#type","#switch_disc"],
|
577
|
+
};
|
578
|
+
this.__Porffor_print = {
|
579
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,3],[65,128,1],[70],[4,64],[68,0,0,0,0,0,0,240,63],[33,2],[65,2],[33,3],[11],[32,0],[32,1],[16, builtin('__Porffor_rawType')],[34,4],[33,5],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,5],[68,0,0,0,0,0,0,240,63],[97],[13,0],[32,5],[68,0,0,0,0,0,0,0,64],[97],[13,1],[32,5],[68,0,0,0,0,0,96,104,64],[97],[13,2],[32,5],[68,0,0,0,0,0,192,80,64],[97],[13,3],[32,5],[68,0,0,0,0,0,0,84,64],[97],[13,4],[32,5],[68,0,0,0,0,0,0,0,0],[97],[13,5],[32,5],[68,0,0,0,0,0,0,96,64],[97],[13,6],[32,5],[68,0,0,0,0,0,0,20,64],[97],[13,7],[32,5],[68,0,0,0,0,0,0,24,64],[97],[13,8],[32,5],[68,0,0,0,0,0,0,50,64],[97],[13,9],[32,5],[68,0,0,0,0,0,0,28,64],[97],[13,10],[32,5],[68,0,0,0,0,0,0,86,64],[97],[13,11],[32,5],[68,0,0,0,0,0,64,86,64],[97],[13,12],[32,5],[68,0,0,0,0,0,128,86,64],[97],[13,13],[32,5],[68,0,0,0,0,0,192,86,64],[97],[13,14],[32,5],[68,0,0,0,0,0,0,87,64],[97],[13,15],[32,5],[68,0,0,0,0,0,64,87,64],[97],[13,16],[32,5],[68,0,0,0,0,0,128,87,64],[97],[13,17],[32,5],[68,0,0,0,0,0,192,87,64],[97],[13,18],[32,5],[68,0,0,0,0,0,0,88,64],[97],[13,19],[32,5],[68,0,0,0,0,0,0,54,64],[97],[13,20],[32,5],[68,0,0,0,0,0,0,53,64],[97],[13,21],[32,5],[68,0,0,0,0,0,0,55,64],[97],[13,22],[32,5],[68,0,0,0,0,0,128,65,64],[97],[13,23],[32,5],[68,0,0,0,0,0,0,52,64],[97],[13,24],[32,5],[68,0,0,0,0,0,0,65,64],[97],[13,25],[32,5],[68,0,0,0,0,0,0,51,64],[97],[13,26],[32,5],[68,0,0,0,0,0,128,64,64],[97],[13,27],[32,5],[68,0,0,0,0,0,0,49,64],[97],[13,28],[12,29],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,0],[16,0],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,0],[33,6],[32,1],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[5],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,128,67,64],[16,1],[32,0],[32,1],[16, builtin('__Porffor_printString')],[33,8],[26],[68,0,0,0,0,0,128,67,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,0],[65,1],[54,0,0],[65,0],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,0],[65,1],[54,0,0],[65,0],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[33,6],[32,1],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,74,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,192,83,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,128,90,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,192,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[5],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,72,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,81,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,16,64],[65,195,1],[34,8],[16, builtin('__Porffor_printString')],[33,8],[26],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,128,74,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,0],[32,1],[16, builtin('__Date_prototype_toISOString')],[34,8],[16, builtin('__Porffor_printString')],[33,8],[26],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,0],[32,1],[16, builtin('__Symbol_prototype_toString')],[34,8],[16, builtin('__Porffor_printString')],[33,8],[26],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,76,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,4],[65,1],[54,0,0],[65,128,128,4],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,240,64],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,4],[65,1],[54,0,0],[65,128,128,4],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,240,64],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,82,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,76,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,8],[65,1],[54,0,0],[65,128,128,8],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,8],[65,1],[54,0,0],[65,128,128,8],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,76,64],[16,1],[68,0,0,0,0,0,192,80,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[68,0,0,0,0,0,0,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,12],[65,1],[54,0,0],[65,128,128,12],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,8,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,12],[65,1],[54,0,0],[65,128,128,12],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,8,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,72,64],[16,1],[68,0,0,0,0,0,0,75,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,16],[65,1],[54,0,0],[65,128,128,16],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,16,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,16],[65,1],[54,0,0],[65,128,128,16],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,16,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,82,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,72,64],[16,1],[68,0,0,0,0,0,0,75,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,20],[65,1],[54,0,0],[65,128,128,20],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,20,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,20],[65,1],[54,0,0],[65,128,128,20],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,20,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,24],[65,1],[54,0,0],[65,128,128,24],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,24,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,24],[65,1],[54,0,0],[65,128,128,24],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,24,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,64,82,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,28],[65,1],[54,0,0],[65,128,128,28],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,28,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,28],[65,1],[54,0,0],[65,128,128,28],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,28,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,128,81,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,73,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,32],[65,1],[54,0,0],[65,128,128,32],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,32,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,32],[65,1],[54,0,0],[65,128,128,32],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,32,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,9],[68,0,0,0,0,0,128,81,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,75,64],[16,1],[68,0,0,0,0,0,0,74,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[32,9],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,9],[101],[4,64],[2,64],[32,0],[33,11],[32,10],[33,12],[32,1],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,1],[32,12],[65,1],[16, builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,36],[65,1],[54,0,0],[65,128,128,36],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,34,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,36],[65,1],[54,0,0],[65,128,128,36],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,34,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[32,10],[32,9],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,4],[68,0,0,0,0,0,0,54,64],[97],[4,64],[68,0,0,0,0,0,192,84,64],[16,1],[68,0,0,0,0,0,0,90,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,128,80,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[5],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,128,80,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,0,74,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,76,64],[16,1],[68,0,0,0,0,0,192,80,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,64,87,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,78,64],[16,1],[65,1],[32,0],[32,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Uint8Array')],[33,8],[33,14],[32,8],[33,15],[32,14],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,16],[65,1],[33,17],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,16],[101],[4,64],[2,64],[68,0,0,0,0,0,0,36,65],[33,18],[32,14],[33,11],[32,10],[33,12],[32,15],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,15],[32,12],[65,1],[16, builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,40],[65,1],[54,0,0],[65,128,128,40],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,36,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,40],[65,1],[54,0,0],[65,128,128,40],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,36,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[32,8],[33,19],[32,18],[68,0,0,0,0,0,0,110,64],[16, builtin('f64_&')],[68,0,0,0,0,0,0,48,64],[163],[65,1],[16, builtin('__Porffor_printHexDigit')],[33,8],[26],[32,18],[68,0,0,0,0,0,0,46,64],[16, builtin('f64_&')],[65,1],[16, builtin('__Porffor_printHexDigit')],[33,8],[26],[32,10],[32,16],[98],[4,64],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,79,64],[16,1],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,83,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,90,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,128,73,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[32,1],[33,7],[2,124],[32,7],[65,21],[70],[4,64,"TYPESWITCH|ArrayBuffer"],[32,0],[32,1],[16, builtin('__ArrayBuffer_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,22],[70],[4,64,"TYPESWITCH|SharedArrayBuffer"],[32,0],[32,1],[16, builtin('__SharedArrayBuffer_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,23],[70],[4,64,"TYPESWITCH|DataView"],[32,0],[32,1],[16, builtin('__DataView_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,0],[32,1],[16, builtin('__Uint8Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,0],[32,1],[16, builtin('__Int8Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,0],[32,1],[16, builtin('__Uint8ClampedArray_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,0],[32,1],[16, builtin('__Uint16Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,0],[32,1],[16, builtin('__Int16Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,0],[32,1],[16, builtin('__Uint32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,0],[32,1],[16, builtin('__Int32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,0],[32,1],[16, builtin('__Float32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,0],[32,1],[16, builtin('__Float64Array_prototype_byteLength$get')],[33,8],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,8],[11,"TYPESWITCH_end"],[16,0],[32,2],[33,6],[32,3],[33,7],[2,127],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,3],[40,1,0],[12,1],[11],[32,6],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[11],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,0,81,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,128,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,192,93,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,83,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,90,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,1],[33,7],[2,124],[32,7],[65,21],[70],[4,64,"TYPESWITCH|ArrayBuffer"],[32,0],[32,1],[16, builtin('__ArrayBuffer_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,22],[70],[4,64,"TYPESWITCH|SharedArrayBuffer"],[32,0],[32,1],[16, builtin('__SharedArrayBuffer_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,23],[70],[4,64,"TYPESWITCH|DataView"],[32,0],[32,1],[16, builtin('__DataView_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,0],[32,1],[16, builtin('__Uint8Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,0],[32,1],[16, builtin('__Int8Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,0],[32,1],[16, builtin('__Uint8ClampedArray_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,0],[32,1],[16, builtin('__Uint16Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,0],[32,1],[16, builtin('__Int16Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,0],[32,1],[16, builtin('__Uint32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,0],[32,1],[16, builtin('__Int32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,0],[32,1],[16, builtin('__Float32Array_prototype_byteLength$get')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,0],[32,1],[16, builtin('__Float64Array_prototype_byteLength$get')],[33,8],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,8],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,192,83,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,1],[33,7],[2,124],[32,7],[65,23],[70],[4,64,"TYPESWITCH|DataView"],[32,0],[32,1],[16, builtin('__DataView_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,0],[32,1],[16, builtin('__Uint8Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,0],[32,1],[16, builtin('__Int8Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,0],[32,1],[16, builtin('__Uint8ClampedArray_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,0],[32,1],[16, builtin('__Uint16Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,0],[32,1],[16, builtin('__Int16Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,0],[32,1],[16, builtin('__Uint32Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,0],[32,1],[16, builtin('__Int32Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,0],[32,1],[16, builtin('__Float32Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,0],[32,1],[16, builtin('__Float64Array_prototype_byteOffset$get')],[33,8],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,8],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,88,64],[16,1],[68,0,0,0,0,0,64,93,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,1],[33,7],[2,124],[32,7],[65,23],[70],[4,64,"TYPESWITCH|DataView"],[32,0],[32,1],[16, builtin('__DataView_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,0],[32,1],[16, builtin('__Uint8Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,0],[32,1],[16, builtin('__Int8Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,0],[32,1],[16, builtin('__Uint8ClampedArray_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,0],[32,1],[16, builtin('__Uint16Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,0],[32,1],[16, builtin('__Int16Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,0],[32,1],[16, builtin('__Uint32Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,0],[32,1],[16, builtin('__Int32Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,0],[32,1],[16, builtin('__Float32Array_prototype_buffer$get')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,0],[32,1],[16, builtin('__Float64Array_prototype_buffer$get')],[33,8],[12,1],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[33,8],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,4],[68,0,0,0,0,0,128,65,64],[97],[4,64],[68,0,0,0,0,0,192,85,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,192,90,64],[16,1],[68,0,0,0,0,0,64,83,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,92,64],[16,1],[5],[68,0,0,0,0,0,64,83,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,92,64],[16,1],[11],[68,0,0,0,0,0,0,68,64],[16,1],[32,0],[32,1],[16, builtin('__Map_prototype_keys')],[33,8],[33,20],[32,8],[33,21],[32,20],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[34,22],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,22],[99],[4,64],[2,64],[68,0,0,0,0,0,0,38,65],[33,23],[32,20],[33,11],[32,10],[33,12],[32,21],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,21],[32,12],[65,1],[16, builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,44],[65,1],[54,0,0],[65,128,128,44],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,38,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,44],[65,1],[54,0,0],[65,128,128,44],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,38,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[32,8],[33,24],[32,23],[32,24],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('__Porffor_print')],[33,8],[26],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,78,64],[16,1],[68,0,0,0,0,0,0,79,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,0],[32,1],[32,23],[32,24],[16, builtin('__Map_prototype_get')],[34,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[32,10],[32,22],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,4],[68,0,0,0,0,0,0,65,64],[97],[4,64],[68,0,0,0,0,0,192,85,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,192,90,64],[16,1],[68,0,0,0,0,0,192,84,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[5],[68,0,0,0,0,0,192,84,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[11],[68,0,0,0,0,0,0,68,64],[16,1],[32,0],[32,1],[16, builtin('__Set_prototype_values')],[33,8],[33,25],[32,8],[33,26],[32,25],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[34,27],[68,0,0,0,0,0,0,240,63],[160],[16,0],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,0,0],[33,10],[3,64],[32,10],[32,27],[101],[4,64],[2,64],[32,25],[33,11],[32,10],[33,12],[32,26],[33,7],[2,124],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,11],[32,26],[32,12],[65,1],[16, builtin('__Map_prototype_get')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,48],[65,1],[54,0,0],[65,128,128,48],[32,12],[252,3],[65,2],[108],[32,11],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,40,65],[65,195,0],[33,8],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,12],[252,3],[65,9],[108],[32,11],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[44,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[106],[45,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,11],[252,3],[40,0,4],[32,12],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,48],[65,1],[54,0,0],[65,128,128,48],[32,12],[252,3],[32,11],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,40,65],[65,195,1],[33,8],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[32,8],[32,2],[32,3],[16, builtin('__Porffor_print')],[33,8],[26],[32,10],[32,27],[98],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[11],[32,10],[68,0,0,0,0,0,0,240,63],[160],[33,10],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,192,85,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,192,90,64],[16,1],[68,0,0,0,0,0,128,84,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[11],[32,0],[33,28],[32,1],[34,29],[33,7],[2,124],[32,7],[65,1],[70],[4,64,"TYPESWITCH|Number"],[32,28],[32,29],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('__Number_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,2],[70],[4,64,"TYPESWITCH|Boolean"],[32,28],[32,29],[16, builtin('__Boolean_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,28],[32,29],[16, builtin('__Object_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,28],[32,29],[16, builtin('__Function_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,7],[70],[4,64,"TYPESWITCH|Symbol"],[32,28],[32,29],[16, builtin('__Symbol_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,18],[70],[4,64,"TYPESWITCH|Date"],[32,28],[32,29],[16, builtin('__Date_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,28],[32,29],[16, builtin('__Set_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,28],[32,29],[16, builtin('__Map_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,33],[70],[4,64,"TYPESWITCH|WeakRef"],[32,28],[32,29],[16, builtin('__WeakRef_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,34],[70],[4,64,"TYPESWITCH|WeakSet"],[32,28],[32,29],[16, builtin('__WeakSet_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,28],[32,29],[16, builtin('__WeakMap_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,28],[252,2],[32,29],[16, builtin('__String_prototype_toString')],[33,8],[183],[12,1],[11],[32,7],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,28],[32,29],[16, builtin('__Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,28],[32,29],[16, builtin('__Uint8Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,28],[32,29],[16, builtin('__Int8Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,28],[32,29],[16, builtin('__Uint8ClampedArray_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,28],[32,29],[16, builtin('__Uint16Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,28],[32,29],[16, builtin('__Int16Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,28],[32,29],[16, builtin('__Uint32Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,28],[32,29],[16, builtin('__Int32Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,28],[32,29],[16, builtin('__Float32Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,28],[32,29],[16, builtin('__Float64Array_prototype_toString')],[33,8],[12,1],[11],[32,7],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,28],[252,2],[32,29],[16, builtin('__ByteString_prototype_toString')],[33,8],[183],[12,1],[11],...internalThrow(scope, 'TypeError', `'toString' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[32,8],[16, builtin('__Porffor_printString')],[33,8],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
580
|
+
params: [124,127,124,127], typedParams: 1,
|
581
|
+
returns: [124,127], typedReturns: 1,
|
582
|
+
locals: [124,124,124,127,127,124,124,124,124,127,124,127,124,127,124,127,124,127,124,124,127,124,127,124,124,127], localNames: ["arg","arg#type","colors","colors#type","t","#switch_disc","#logicinner_tmp","#typeswitch_tmp","#last_type","arrLen","i","#member_obj","#member_prop","#loadArray_offset","buffer","buffer#type","bufferLen","bufferLen#type","ele","ele#type","map","map#type","mapLen","key","key#type","set","set#type","setLen","#proto_target","#proto_target#type"],
|
583
|
+
data: [[0,[3,0,0,0,97,114,103]]],
|
584
|
+
};
|
585
|
+
this.__Porffor_consoleIndent = {
|
586
|
+
wasm: (scope, {glbl}) => [[68,0,0,0,0,0,0,0,0],[33,0],[65,1],[33,1],[3,64],[32,0],...glbl(35, 'tabLevel', 124),[99],[4,64],[68,0,0,0,0,0,0,34,64],[16,1],[32,0],[68,0,0,0,0,0,0,240,63],[160],[33,0],[12,1],[11],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
587
|
+
params: [], typedParams: 1,
|
588
|
+
returns: [124,127], typedReturns: 1,
|
589
|
+
locals: [124,127], localNames: ["i","i#type"],
|
590
|
+
globalInits: {tabLevel: (scope, {glbl}) => [[68,0,0,0,0,0,0,0,0],...glbl(36, 'tabLevel', 124),[65,1],...glbl(36, 'tabLevel#type', 127)],countMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'countMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'countMap#type', 127)],timeMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'timeMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'timeMap#type', 127)]},
|
591
|
+
};
|
566
592
|
this.__console_clear = {
|
567
|
-
wasm: (scope, {
|
593
|
+
wasm: (scope, {glbl}) => [[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,72,64],[16,1],[68,0,0,0,0,0,128,77,64],[16,1],[68,0,0,0,0,0,128,72,64],[16,1],[68,0,0,0,0,0,0,82,64],[16,1],[68,0,0,0,0,0,0,59,64],[16,1],[68,0,0,0,0,0,192,86,64],[16,1],[68,0,0,0,0,0,128,82,64],[16,1],[68,0,0,0,0,0,0,0,0],...glbl(36, 'tabLevel', 124),...glbl(35, 'tabLevel', 124),[65,1],...glbl(36, 'tabLevel#type', 127),[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
568
594
|
params: [], typedParams: 1,
|
569
595
|
returns: [124,127], typedReturns: 1,
|
570
|
-
locals: [
|
571
|
-
|
596
|
+
locals: [], localNames: [],
|
597
|
+
globalInits: {tabLevel: (scope, {glbl}) => [[68,0,0,0,0,0,0,0,0],...glbl(36, 'tabLevel', 124),[65,1],...glbl(36, 'tabLevel#type', 127)],countMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'countMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'countMap#type', 127)],timeMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'timeMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'timeMap#type', 127)]},
|
598
|
+
};
|
599
|
+
this.__Porffor_consolePrint = {
|
600
|
+
wasm: (scope, {builtin}) => [[32,0],[32,1],[16, builtin('__Porffor_rawType')],[33,2],[2,64],[2,64],[2,64],[2,64],[32,2],[68,0,0,0,0,0,96,104,64],[97],[13,0],[32,2],[68,0,0,0,0,0,192,80,64],[97],[13,1],[12,2],[11],[11],[32,0],[32,1],[16, builtin('__Porffor_printString')],[26],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[32,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('__Porffor_print')],[26],[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
601
|
+
params: [124,127], typedParams: 1,
|
602
|
+
returns: [124,127], typedReturns: 1,
|
603
|
+
locals: [124,127], localNames: ["arg","arg#type","#switch_disc","#last_type"],
|
604
|
+
};
|
605
|
+
this.__console_group = {
|
606
|
+
wasm: (scope, {glbl,builtin}) => [[32,0],[65,195,1],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,96,64],[98],[4,64],[32,0],[65,195,1],[16, builtin('__Porffor_consolePrint')],[26],[26],[11],...glbl(35, 'tabLevel', 124),[68,0,0,0,0,0,0,240,63],[160],...glbl(36, 'tabLevel', 124),[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
607
|
+
params: [124,127], typedParams: 1,
|
608
|
+
returns: [124,127], typedReturns: 1,
|
609
|
+
locals: [127], localNames: ["label","label#type","#last_type"],
|
610
|
+
globalInits: {tabLevel: (scope, {glbl}) => [[68,0,0,0,0,0,0,0,0],...glbl(36, 'tabLevel', 124),[65,1],...glbl(36, 'tabLevel#type', 127)],countMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'countMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'countMap#type', 127)],timeMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'timeMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'timeMap#type', 127)]},
|
611
|
+
};
|
612
|
+
this.__console_groupCollapsed = {
|
613
|
+
wasm: (scope, {builtin}) => [[32,0],[65,195,1],[16, builtin('__console_group')],[34,2],[15]],
|
614
|
+
params: [124,127], typedParams: 1,
|
615
|
+
returns: [124,127], typedReturns: 1,
|
616
|
+
locals: [127], localNames: ["label","label#type","#last_type"],
|
617
|
+
};
|
618
|
+
this.__console_groupEnd = {
|
619
|
+
wasm: (scope, {glbl,builtin}) => [[32,0],[65,195,1],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,96,64],[98],[4,64],[32,0],[65,195,1],[16, builtin('__Porffor_consolePrint')],[26],[26],[11],...glbl(35, 'tabLevel', 124),[68,0,0,0,0,0,0,240,63],[161],...glbl(36, 'tabLevel', 124),...glbl(35, 'tabLevel', 124),[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],...glbl(36, 'tabLevel', 124),...glbl(35, 'tabLevel', 124),[65,1],...glbl(36, 'tabLevel#type', 127),[26],[11],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
620
|
+
params: [124,127], typedParams: 1,
|
621
|
+
returns: [124,127], typedReturns: 1,
|
622
|
+
locals: [127], localNames: ["label","label#type","#last_type"],
|
623
|
+
globalInits: {tabLevel: (scope, {glbl}) => [[68,0,0,0,0,0,0,0,0],...glbl(36, 'tabLevel', 124),[65,1],...glbl(36, 'tabLevel#type', 127)],countMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'countMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'countMap#type', 127)],timeMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'timeMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'timeMap#type', 127)]},
|
624
|
+
};
|
625
|
+
this.__console_log = {
|
626
|
+
wasm: (scope, {builtin}) => [[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,2],[68,0,0,0,0,0,0,0,0],[33,3],[65,1],[33,4],[3,64],[32,3],[32,2],[101],[4,64],[16, builtin('__Porffor_consoleIndent')],[33,5],[26],[32,0],[33,6],[32,3],[34,7],[252,3],[65,9],[108],[32,6],[252,3],[106],[34,8],[43,0,4],[32,8],[45,0,12],[34,5],[16, builtin('__Porffor_consolePrint')],[33,5],[26],[32,3],[32,2],[98],[4,64],[68,0,0,0,0,0,0,64,64],[16,1],[11],[32,3],[68,0,0,0,0,0,0,240,63],[160],[33,3],[12,1],[11],[11],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
627
|
+
params: [124,127], typedParams: 1,
|
628
|
+
returns: [124,127], typedReturns: 1,
|
629
|
+
locals: [124,124,127,127,124,124,127], localNames: ["args","args#type","argLen","i","i#type","#last_type","#member_obj","#member_prop","#loadArray_offset"],
|
630
|
+
hasRestArgument: 1,
|
631
|
+
};
|
632
|
+
this.__console_debug = {
|
633
|
+
wasm: (scope, {builtin}) => [[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,2],[68,0,0,0,0,0,0,0,0],[33,3],[65,1],[33,4],[3,64],[32,3],[32,2],[101],[4,64],[16, builtin('__Porffor_consoleIndent')],[33,5],[26],[32,0],[33,6],[32,3],[34,7],[252,3],[65,9],[108],[32,6],[252,3],[106],[34,8],[43,0,4],[32,8],[45,0,12],[34,5],[16, builtin('__Porffor_consolePrint')],[33,5],[26],[32,3],[32,2],[98],[4,64],[68,0,0,0,0,0,0,64,64],[16,1],[11],[32,3],[68,0,0,0,0,0,0,240,63],[160],[33,3],[12,1],[11],[11],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
634
|
+
params: [124,127], typedParams: 1,
|
635
|
+
returns: [124,127], typedReturns: 1,
|
636
|
+
locals: [124,124,127,127,124,124,127], localNames: ["args","args#type","argLen","i","i#type","#last_type","#member_obj","#member_prop","#loadArray_offset"],
|
637
|
+
hasRestArgument: 1,
|
638
|
+
};
|
639
|
+
this.__console_info = {
|
640
|
+
wasm: (scope, {builtin}) => [[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,2],[68,0,0,0,0,0,0,0,0],[33,3],[65,1],[33,4],[3,64],[32,3],[32,2],[101],[4,64],[16, builtin('__Porffor_consoleIndent')],[33,5],[26],[32,0],[33,6],[32,3],[34,7],[252,3],[65,9],[108],[32,6],[252,3],[106],[34,8],[43,0,4],[32,8],[45,0,12],[34,5],[16, builtin('__Porffor_consolePrint')],[33,5],[26],[32,3],[32,2],[98],[4,64],[68,0,0,0,0,0,0,64,64],[16,1],[11],[32,3],[68,0,0,0,0,0,0,240,63],[160],[33,3],[12,1],[11],[11],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
641
|
+
params: [124,127], typedParams: 1,
|
642
|
+
returns: [124,127], typedReturns: 1,
|
643
|
+
locals: [124,124,127,127,124,124,127], localNames: ["args","args#type","argLen","i","i#type","#last_type","#member_obj","#member_prop","#loadArray_offset"],
|
644
|
+
hasRestArgument: 1,
|
645
|
+
};
|
646
|
+
this.__console_warn = {
|
647
|
+
wasm: (scope, {builtin}) => [[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,2],[68,0,0,0,0,0,0,0,0],[33,3],[65,1],[33,4],[3,64],[32,3],[32,2],[101],[4,64],[16, builtin('__Porffor_consoleIndent')],[33,5],[26],[32,0],[33,6],[32,3],[34,7],[252,3],[65,9],[108],[32,6],[252,3],[106],[34,8],[43,0,4],[32,8],[45,0,12],[34,5],[16, builtin('__Porffor_consolePrint')],[33,5],[26],[32,3],[32,2],[98],[4,64],[68,0,0,0,0,0,0,64,64],[16,1],[11],[32,3],[68,0,0,0,0,0,0,240,63],[160],[33,3],[12,1],[11],[11],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
648
|
+
params: [124,127], typedParams: 1,
|
649
|
+
returns: [124,127], typedReturns: 1,
|
650
|
+
locals: [124,124,127,127,124,124,127], localNames: ["args","args#type","argLen","i","i#type","#last_type","#member_obj","#member_prop","#loadArray_offset"],
|
651
|
+
hasRestArgument: 1,
|
652
|
+
};
|
653
|
+
this.__console_error = {
|
654
|
+
wasm: (scope, {builtin}) => [[32,0],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,2],[68,0,0,0,0,0,0,0,0],[33,3],[65,1],[33,4],[3,64],[32,3],[32,2],[101],[4,64],[16, builtin('__Porffor_consoleIndent')],[33,5],[26],[32,0],[33,6],[32,3],[34,7],[252,3],[65,9],[108],[32,6],[252,3],[106],[34,8],[43,0,4],[32,8],[45,0,12],[34,5],[16, builtin('__Porffor_consolePrint')],[33,5],[26],[32,3],[32,2],[98],[4,64],[68,0,0,0,0,0,0,64,64],[16,1],[11],[32,3],[68,0,0,0,0,0,0,240,63],[160],[33,3],[12,1],[11],[11],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
655
|
+
params: [124,127], typedParams: 1,
|
656
|
+
returns: [124,127], typedReturns: 1,
|
657
|
+
locals: [124,124,127,127,124,124,127], localNames: ["args","args#type","argLen","i","i#type","#last_type","#member_obj","#member_prop","#loadArray_offset"],
|
658
|
+
hasRestArgument: 1,
|
659
|
+
};
|
660
|
+
this.__console_assert = {
|
661
|
+
wasm: (scope, {builtin}) => [[32,0],[33,4],[32,1],[33,5],[2,127],[32,5],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,4],[252,3],[40,1,0],[12,1],[11],[32,5],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,4],[252,3],[40,1,0],[12,1],[11],[32,4],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[16, builtin('__Porffor_consoleIndent')],[33,6],[26],[68,0,0,0,0,0,64,80,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[32,2],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,0,0],[98],[4,64],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[11],[32,2],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,7],[68,0,0,0,0,0,0,0,0],[33,8],[65,1],[33,9],[3,64],[32,8],[32,7],[101],[4,64],[32,2],[33,10],[32,8],[34,11],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,12],[43,0,4],[32,12],[45,0,12],[34,6],[16, builtin('__Porffor_consolePrint')],[33,6],[26],[32,8],[32,7],[98],[4,64],[68,0,0,0,0,0,0,64,64],[16,1],[11],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[12,1],[11],[11],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
662
|
+
params: [124,127,124,127], typedParams: 1,
|
663
|
+
returns: [124,127], typedReturns: 1,
|
664
|
+
locals: [124,127,127,124,124,127,124,124,127], localNames: ["assertion","assertion#type","args","args#type","#logicinner_tmp","#typeswitch_tmp","#last_type","argLen","i","i#type","#member_obj","#member_prop","#loadArray_offset"],
|
665
|
+
hasRestArgument: 1,
|
666
|
+
};
|
667
|
+
this.__Porffor_dirObject = {
|
668
|
+
wasm: (scope, {builtin,internalThrow}) => [[32,0],[32,1],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,20,64],[98],[34,8],[69],[4,127],[32,4],[68,0,0,0,0,0,0,0,0],[97],[65,2],[33,9],[5],[32,8],[65,2],[33,9],[11],[4,64],[32,0],[32,1],[32,2],[65,2],[16, builtin('__Porffor_print')],[33,9],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[68,0,0,0,0,0,192,94,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,0],[32,1],[16, builtin('__Map_prototype_keys')],[33,9],[33,10],[32,9],[33,11],[32,10],[252,3],[40,1,0],[184],[68,0,0,0,0,0,0,240,63],[161],[33,12],[65,1],[33,13],[68,0,0,0,0,0,0,0,0],[33,14],[65,1],[33,15],[3,64],[32,14],[32,12],[101],[4,64],[2,64],[68,0,0,0,0,0,0,42,65],[33,16],[32,10],[33,18],[32,14],[33,19],[32,11],[33,21],[2,124],[32,21],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,18],[32,11],[32,19],[32,15],[16, builtin('__Map_prototype_get')],[33,9],[12,1],[11],[32,21],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,52],[65,1],[54,0,0],[65,128,128,52],[32,19],[252,3],[65,2],[108],[32,18],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,42,65],[65,195,0],[33,9],[12,1],[11],[32,21],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,19],[252,3],[65,9],[108],[32,18],[252,3],[106],[34,20],[43,0,4],[32,20],[45,0,12],[33,9],[12,1],[11],[32,21],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11],[32,21],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[106],[44,0,4],[183],[65,1],[33,9],[12,1],[11],[32,21],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[106],[45,0,4],[184],[65,1],[33,9],[12,1],[11],[32,21],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,9],[12,1],[11],[32,21],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,9],[12,1],[11],[32,21],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,9],[12,1],[11],[32,21],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,9],[12,1],[11],[32,21],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,9],[12,1],[11],[32,21],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,18],[252,3],[40,0,4],[32,19],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,9],[12,1],[11],[32,21],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,52],[65,1],[54,0,0],[65,128,128,52],[32,19],[252,3],[32,18],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,42,65],[65,195,1],[33,9],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[26],[32,9],[33,17],[32,16],[32,17],[16, builtin('__Porffor_consolePrint')],[33,9],[26],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,0],[32,1],[32,16],[32,17],[16, builtin('__Map_prototype_get')],[33,9],[33,22],[32,9],[33,23],[32,22],[32,23],[32,2],[65,2],[32,4],[68,0,0,0,0,0,0,240,63],[161],[65,1],[32,6],[65,2],[16, builtin('__Porffor_dirObject')],[33,9],[26],[2,127,"string_only"],[32,14],[34,24,"string_only"],[32,12],[34,25,"string_only"],[32,15,"string_only|start"],[65,195,1],[70],[32,13],[65,195,1],[70],[113],[4,64],[32,24],[252,3],[34,26],[32,25],[252,3],[34,28],[71],[4,127],[32,26],[40,0,0],[34,27],[32,28],[40,0,0],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,29],[32,27],[33,30],[3,64],[32,29],[32,26],[106],[45,0,4],[32,29],[32,28],[106],[45,0,4],[71],[4,64],[65,0],[12,2],[11],[32,29],[65,1],[106],[34,29],[32,30],[72],[13,0],[11],[65,1],[5],[65,1],[11],[69],[12,1],[11],[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[32,13],[65,195,0],[70],[32,13],[65,195,1],[70],[114],[114],[4,64],[32,24],[252,3],[34,26],[32,25],[252,3],[34,28],[71],[4,127],[32,26],[40,0,0],[34,27],[32,28],[40,0,0],[32,15],[65,195,1],[70],[4,64],[32,26],[32,27],[16, builtin('__Porffor_bytestringToString')],[33,26],[11],[32,13],[65,195,1],[70],[4,64],[32,28],[32,28],[40,0,0],[16, builtin('__Porffor_bytestringToString')],[33,28],[11],[71],[4,64],[65,0],[12,1],[11],[65,0],[33,29],[32,27],[65,2],[108],[33,30],[3,64],[32,29],[32,26],[106],[47,0,4],[32,29],[32,28],[106],[47,0,4],[71],[4,64],[65,0],[12,2],[11],[32,29],[65,2],[106],[34,29],[32,30],[72],[13,0],[11],[65,1],[5],[65,1],[11],[69],[12,1],[11,"string_only|end"],[98],[11,"string_only"],[4,64],[68,0,0,0,0,0,0,70,64],[16,1],[11],[11],[32,14],[68,0,0,0,0,0,0,240,63],[160],[33,14],[12,1],[11],[11],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,95,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
669
|
+
params: [124,127,124,127,124,127,124,127], typedParams: 1,
|
670
|
+
returns: [124,127], typedReturns: 1,
|
671
|
+
locals: [127,127,124,127,124,127,124,127,124,127,124,124,127,127,124,127,124,124,127,127,127,127,127], localNames: ["obj","obj#type","colors","colors#type","depth","depth#type","showHidden","showHidden#type","logictmpi","#last_type","keys","keys#type","keysLen","keysLen#type","i","i#type","key","key#type","#member_obj","#member_prop","#loadArray_offset","#typeswitch_tmp","value","value#type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end"],
|
672
|
+
};
|
673
|
+
this.__console_dir = {
|
674
|
+
wasm: (scope, {builtin,internalThrow}) => [[68,0,0,0,0,0,0,240,63],[33,4],[68,0,0,0,0,0,0,0,64],[33,5],[68,0,0,0,0,0,0,0,0],[33,6],[32,2],[33,7],[32,3],[33,8],[2,127],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,7],[252,3],[40,1,0],[12,1],[11],[32,7],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,2],[33,9],[68,0,0,0,0,0,0,46,65],[33,10],[32,3],[33,8],[2,124],[32,8],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,9],[32,3],[32,10],[65,195,1],[16, builtin('__Map_prototype_get')],[33,12],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,56],[65,1],[54,0,0],[65,128,128,56],[32,10],[252,3],[65,2],[108],[32,9],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,44,65],[65,195,0],[33,12],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,10],[252,3],[65,9],[108],[32,9],[252,3],[106],[34,11],[43,0,4],[32,11],[45,0,12],[33,12],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[44,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,12],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,12],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,56],[65,1],[54,0,0],[65,128,128,56],[32,10],[252,3],[32,9],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,44,65],[65,195,1],[33,12],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,4],[32,2],[33,9],[68,0,0,0,0,0,0,49,65],[33,10],[32,3],[33,8],[2,124],[32,8],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,9],[32,3],[32,10],[65,195,1],[16, builtin('__Map_prototype_get')],[33,12],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,192,0],[65,1],[54,0,0],[65,128,128,192,0],[32,10],[252,3],[65,2],[108],[32,9],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,48,65],[65,195,0],[33,12],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,10],[252,3],[65,9],[108],[32,9],[252,3],[106],[34,11],[43,0,4],[32,11],[45,0,12],[33,12],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[44,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,12],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,12],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,192,0],[65,1],[54,0,0],[65,128,128,192,0],[32,10],[252,3],[32,9],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,48,65],[65,195,1],[33,12],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,5],[32,2],[33,9],[68,0,0,0,0,0,0,51,65],[33,10],[32,3],[33,8],[2,124],[32,8],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,9],[32,3],[32,10],[65,195,1],[16, builtin('__Map_prototype_get')],[33,12],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,200,0],[65,1],[54,0,0],[65,128,128,200,0],[32,10],[252,3],[65,2],[108],[32,9],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,50,65],[65,195,0],[33,12],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,10],[252,3],[65,9],[108],[32,9],[252,3],[106],[34,11],[43,0,4],[32,11],[45,0,12],[33,12],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[44,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,1],[33,12],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,1],[33,12],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,1],[33,12],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,9],[252,3],[40,0,4],[32,10],[252,3],[65,8],[108],[106],[43,0,4],[65,1],[33,12],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,200,0],[65,1],[54,0,0],[65,128,128,200,0],[32,10],[252,3],[32,9],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,50,65],[65,195,1],[33,12],[12,1],[11],...internalThrow(scope, 'TypeError', `Unsupported member expression object`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[33,6],[11],[16, builtin('__Porffor_consoleIndent')],[33,12],[26],[32,0],[32,1],[32,4],[65,2],[32,5],[65,1],[32,6],[65,2],[16, builtin('__Porffor_dirObject')],[33,12],[26],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
675
|
+
params: [124,127,124,127], typedParams: 1,
|
676
|
+
returns: [124,127], typedReturns: 1,
|
677
|
+
locals: [124,124,124,124,127,124,124,127,127], localNames: ["obj","obj#type","options","options#type","colors","depth","showHidden","#logicinner_tmp","#typeswitch_tmp","#member_obj","#member_prop","#loadArray_offset","#last_type"],
|
678
|
+
data: [[0,[6,0,0,0,99,111,108,111,114,115]],[1114112,[5,0,0,0,100,101,112,116,104]],[1245184,[10,0,0,0,115,104,111,119,72,105,100,100,101,110]]],
|
679
|
+
};
|
680
|
+
this.__console_dirxml = {
|
681
|
+
wasm: (scope, {builtin}) => [[32,0],[32,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('__console_dir')],[34,2],[15]],
|
682
|
+
params: [124,127], typedParams: 1,
|
683
|
+
returns: [124,127], typedReturns: 1,
|
684
|
+
locals: [127], localNames: ["obj","obj#type","#last_type"],
|
685
|
+
};
|
686
|
+
this.__console_count = {
|
687
|
+
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,52,65],[34,0],[65,195,1],[33,5],[5],[32,2],[32,1],[33,5],[11],[32,0],[32,5],[33,1],[26],[26],...glbl(35, 'countMap', 124),[33,8],...glbl(35, 'countMap#type', 127),[34,9],[33,4],[2,124],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,8],[32,9],[32,0],[32,1],[16, builtin('__Map_prototype_get')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'get' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[34,2],[33,3],[32,5],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,0,0],[65,1],[33,5],[5],[32,2],[32,5],[33,5],[11],[68,0,0,0,0,0,0,240,63],[160],[33,6],[65,1],[33,7],...glbl(35, 'countMap', 124),[33,8],...glbl(35, 'countMap#type', 127),[34,9],[33,4],[2,124],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,8],[32,9],[32,0],[32,1],[32,6],[32,7],[16, builtin('__Map_prototype_set')],[33,5],[12,1],[11],[32,4],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,8],[32,9],[32,0],[32,1],[32,6],[32,7],[16, builtin('__WeakMap_prototype_set')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'set' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[16, builtin('__Porffor_consoleIndent')],[33,5],[26],[32,0],[32,1],[16, builtin('__Porffor_consolePrint')],[33,5],[26],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[32,6],[16,0],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
688
|
+
params: [124,127], typedParams: 1,
|
689
|
+
returns: [124,127], typedReturns: 1,
|
690
|
+
locals: [124,124,127,127,124,127,124,127], localNames: ["label","label#type","logictmp","#logicinner_tmp","#typeswitch_tmp","#last_type","val","val#type","#proto_target","#proto_target#type"],
|
691
|
+
globalInits: {tabLevel: (scope, {glbl}) => [[68,0,0,0,0,0,0,0,0],...glbl(36, 'tabLevel', 124),[65,1],...glbl(36, 'tabLevel#type', 127)],countMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'countMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'countMap#type', 127)],timeMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'timeMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'timeMap#type', 127)]},
|
692
|
+
data: [[0,[7,0,0,0,100,101,102,97,117,108,116]]],
|
693
|
+
};
|
694
|
+
this.__console_countReset = {
|
695
|
+
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,53,65],[34,0],[65,195,1],[33,5],[5],[32,2],[32,1],[33,5],[11],[32,0],[32,5],[33,1],[26],[26],...glbl(35, 'countMap', 124),[33,6],...glbl(35, 'countMap#type', 127),[34,7],[33,4],[2,124],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,6],[32,7],[32,0],[32,1],[68,0,0,0,0,0,0,240,191],[65,1],[16, builtin('__Map_prototype_set')],[33,5],[12,1],[11],[32,4],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,6],[32,7],[32,0],[32,1],[68,0,0,0,0,0,0,240,191],[65,1],[16, builtin('__WeakMap_prototype_set')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'set' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[32,0],[32,1],[16, builtin('__console_count')],[33,5],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
696
|
+
params: [124,127], typedParams: 1,
|
697
|
+
returns: [124,127], typedReturns: 1,
|
698
|
+
locals: [124,124,127,127,124,127], localNames: ["label","label#type","logictmp","#logicinner_tmp","#typeswitch_tmp","#last_type","#proto_target","#proto_target#type"],
|
699
|
+
globalInits: {tabLevel: (scope, {glbl}) => [[68,0,0,0,0,0,0,0,0],...glbl(36, 'tabLevel', 124),[65,1],...glbl(36, 'tabLevel#type', 127)],countMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'countMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'countMap#type', 127)],timeMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'timeMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'timeMap#type', 127)]},
|
700
|
+
data: [[0,[7,0,0,0,100,101,102,97,117,108,116]]],
|
701
|
+
};
|
702
|
+
this.__console_time = {
|
703
|
+
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,54,65],[34,0],[65,195,1],[33,5],[5],[32,2],[32,1],[33,5],[11],[32,0],[32,5],[33,1],[26],[26],...glbl(35, 'timeMap', 124),[33,6],...glbl(35, 'timeMap#type', 127),[34,7],[33,4],[2,124],[32,4],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,6],[32,7],[32,0],[32,1],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,6],[32,7],[32,0],[32,1],[16, builtin('__Map_prototype_has')],[33,5],[12,1],[11],[32,4],[65,34],[70],[4,64,"TYPESWITCH|WeakSet"],[32,6],[32,7],[32,0],[32,1],[16, builtin('__WeakSet_prototype_has')],[33,5],[12,1],[11],[32,4],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,6],[32,7],[32,0],[32,1],[16, builtin('__WeakMap_prototype_has')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,3],[32,5],[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],[68,0,0,0,0,0,192,85,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,89,64],[16,1],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,67,64],[16,1],[32,0],[32,1],[16, builtin('__Porffor_consolePrint')],[33,5],[26],[68,0,0,0,0,0,128,67,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,64,88,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,64,94,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,94,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,89,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,192,88,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,0,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,71,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,68,64],[16,1],[68,0,0,0,0,0,128,68,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[11],...glbl(35, 'timeMap', 124),[33,6],...glbl(35, 'timeMap#type', 127),[34,7],[33,4],[2,124],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,6],[32,7],[32,0],[32,1],[16, builtin('__performance_now')],[65,1],[16, builtin('__Map_prototype_set')],[33,5],[12,1],[11],[32,4],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,6],[32,7],[32,0],[32,1],[16, builtin('__performance_now')],[65,1],[16, builtin('__WeakMap_prototype_set')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'set' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
704
|
+
params: [124,127], typedParams: 1,
|
705
|
+
returns: [124,127], typedReturns: 1,
|
706
|
+
locals: [124,124,127,127,124,127], localNames: ["label","label#type","logictmp","#logicinner_tmp","#typeswitch_tmp","#last_type","#proto_target","#proto_target#type"],
|
707
|
+
globalInits: {tabLevel: (scope, {glbl}) => [[68,0,0,0,0,0,0,0,0],...glbl(36, 'tabLevel', 124),[65,1],...glbl(36, 'tabLevel#type', 127)],countMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'countMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'countMap#type', 127)],timeMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'timeMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'timeMap#type', 127)]},
|
708
|
+
data: [[0,[7,0,0,0,100,101,102,97,117,108,116]]],
|
709
|
+
};
|
710
|
+
this.__console_timeLog = {
|
711
|
+
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,55,65],[34,0],[65,195,1],[33,5],[5],[32,2],[32,1],[33,5],[11],[32,0],[32,5],[33,1],[26],[26],[16, builtin('__Porffor_consoleIndent')],[33,5],[26],...glbl(35, 'timeMap', 124),[33,8],...glbl(35, 'timeMap#type', 127),[34,9],[33,4],[2,124],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,8],[32,9],[32,0],[32,1],[16, builtin('__Map_prototype_get')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'get' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,6],[32,5],[33,7],[32,6],[33,3],[32,7],[33,4],[2,124],[32,4],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,3],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,4],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,3],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,3],[68,0,0,0,0,0,0,0,0],[97],[184],[11,"TYPESWITCH_end"],[252,3],[4,64],[68,0,0,0,0,0,0,85,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,128,92,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,67,64],[16,1],[32,0],[32,1],[16, builtin('__Porffor_consolePrint')],[33,5],[26],[68,0,0,0,0,0,128,67,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,0,89,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,128,91,64],[16,1],[68,0,0,0,0,0,192,91,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,89,64],[16,1],[68,0,0,0,0,0,0,94,64],[16,1],[68,0,0,0,0,0,64,90,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,0,93,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15],[11],[32,0],[32,1],[16, builtin('__Porffor_consolePrint')],[33,5],[26],[68,0,0,0,0,0,0,77,64],[16,1],[68,0,0,0,0,0,0,64,64],[16,1],[16, builtin('__performance_now')],[32,6],[161],[16,0],[68,0,0,0,0,0,0,64,64],[16,1],[68,0,0,0,0,0,64,91,64],[16,1],[68,0,0,0,0,0,192,92,64],[16,1],[68,0,0,0,0,0,0,36,64],[16,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
712
|
+
params: [124,127], typedParams: 1,
|
713
|
+
returns: [124,127], typedReturns: 1,
|
714
|
+
locals: [124,124,127,127,124,127,124,127], localNames: ["label","label#type","logictmp","#logicinner_tmp","#typeswitch_tmp","#last_type","val","val#type","#proto_target","#proto_target#type"],
|
715
|
+
globalInits: {tabLevel: (scope, {glbl}) => [[68,0,0,0,0,0,0,0,0],...glbl(36, 'tabLevel', 124),[65,1],...glbl(36, 'tabLevel#type', 127)],countMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'countMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'countMap#type', 127)],timeMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'timeMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'timeMap#type', 127)]},
|
716
|
+
data: [[0,[7,0,0,0,100,101,102,97,117,108,116]]],
|
717
|
+
};
|
718
|
+
this.__console_timeEnd = {
|
719
|
+
wasm: (scope, {glbl,builtin,internalThrow}) => [[32,0],[34,2],[33,3],[32,1],[33,4],[2,127],[32,4],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,3],[68,0,0,0,0,0,0,0,0],[97],[12,1],[11],[32,4],[65,128,1],[70],[4,64,"TYPESWITCH|undefined"],[65,1],[12,1],[11],[65,0],[11,"TYPESWITCH_end"],[4,124],[68,0,0,0,0,0,0,56,65],[34,0],[65,195,1],[33,5],[5],[32,2],[32,1],[33,5],[11],[32,0],[32,5],[33,1],[26],[26],[32,0],[32,1],[16, builtin('__console_timeLog')],[33,5],[26],...glbl(35, 'timeMap', 124),[33,6],...glbl(35, 'timeMap#type', 127),[34,7],[33,4],[2,124],[32,4],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,6],[32,7],[32,0],[32,1],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,4],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,6],[32,7],[32,0],[32,1],[16, builtin('__Map_prototype_delete')],[33,5],[12,1],[11],[32,4],[65,34],[70],[4,64,"TYPESWITCH|WeakSet"],[32,6],[32,7],[32,0],[32,1],[16, builtin('__WeakSet_prototype_delete')],[33,5],[12,1],[11],[32,4],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,6],[32,7],[32,0],[32,1],[16, builtin('__WeakMap_prototype_delete')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'delete' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[68,0,0,0,0,0,0,0,0],[65,128,1],[15]],
|
720
|
+
params: [124,127], typedParams: 1,
|
721
|
+
returns: [124,127], typedReturns: 1,
|
722
|
+
locals: [124,124,127,127,124,127], localNames: ["label","label#type","logictmp","#logicinner_tmp","#typeswitch_tmp","#last_type","#proto_target","#proto_target#type"],
|
723
|
+
globalInits: {tabLevel: (scope, {glbl}) => [[68,0,0,0,0,0,0,0,0],...glbl(36, 'tabLevel', 124),[65,1],...glbl(36, 'tabLevel#type', 127)],countMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'countMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'countMap#type', 127)],timeMap: (scope, {glbl,loc,builtin}) => [[65,1],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('Map')],[33,loc('#last_type', 127)],...glbl(36, 'timeMap', 124),[32,loc('#last_type', 127)],...glbl(36, 'timeMap#type', 127)]},
|
724
|
+
data: [[0,[7,0,0,0,100,101,102,97,117,108,116]]],
|
572
725
|
};
|
573
726
|
this.__crypto_randomUUID = {
|
574
727
|
wasm: (scope, {allocPage,builtin}) => [...number(allocPage(scope, 'bytestring: __crypto_randomUUID/bytes', 'i8') * pageSize, 127),[34,0],[34,1],[34,2],[65,16],[106],[33,3],[3,64],[32,2],[32,3],[72],[4,64],[32,2],[32,2],[65,1],[106],[33,2],[16, builtin('__Porffor_randomByte')],[58,0,4],[12,1],[11],[11],[32,1],[32,1],[45,0,10],[65,15],[113],[65,192,0],[114],[58,0,10],[32,1],[32,1],[45,0,12],[65,63],[113],[65,128,1],[114],[58,0,12],[16, builtin('__Porffor_allocate')],[33,5],[252,2],[34,4],[33,6],[32,1],[33,7],[32,6],[65,8],[106],[33,8],[3,64],[32,6],[32,8],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[45,0,4],[34,9],[65,15],[113],[65,48],[106],[34,10],[65,57],[74],[4,64],[32,10],[65,39],[106],[33,10],[11],[32,9],[65,4],[117],[65,48],[106],[34,11],[65,57],[74],[4,64],[32,11],[65,39],[106],[33,11],[11],[32,6],[32,6],[65,1],[106],[33,6],[32,11],[58,0,4],[32,6],[32,6],[65,1],[106],[33,6],[32,10],[58,0,4],[12,1],[11],[11],[32,6],[65,1],[106],[34,6],[65,4],[106],[33,8],[3,64],[32,6],[32,8],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[45,0,4],[34,9],[65,15],[113],[65,48],[106],[34,10],[65,57],[74],[4,64],[32,10],[65,39],[106],[33,10],[11],[32,9],[65,4],[117],[65,48],[106],[34,11],[65,57],[74],[4,64],[32,11],[65,39],[106],[33,11],[11],[32,6],[32,6],[65,1],[106],[33,6],[32,11],[58,0,4],[32,6],[32,6],[65,1],[106],[33,6],[32,10],[58,0,4],[12,1],[11],[11],[32,6],[65,1],[106],[34,6],[65,4],[106],[33,8],[3,64],[32,6],[32,8],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[45,0,4],[34,9],[65,15],[113],[65,48],[106],[34,10],[65,57],[74],[4,64],[32,10],[65,39],[106],[33,10],[11],[32,9],[65,4],[117],[65,48],[106],[34,11],[65,57],[74],[4,64],[32,11],[65,39],[106],[33,11],[11],[32,6],[32,6],[65,1],[106],[33,6],[32,11],[58,0,4],[32,6],[32,6],[65,1],[106],[33,6],[32,10],[58,0,4],[12,1],[11],[11],[32,6],[65,1],[106],[34,6],[65,4],[106],[33,8],[3,64],[32,6],[32,8],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[45,0,4],[34,9],[65,15],[113],[65,48],[106],[34,10],[65,57],[74],[4,64],[32,10],[65,39],[106],[33,10],[11],[32,9],[65,4],[117],[65,48],[106],[34,11],[65,57],[74],[4,64],[32,11],[65,39],[106],[33,11],[11],[32,6],[32,6],[65,1],[106],[33,6],[32,11],[58,0,4],[32,6],[32,6],[65,1],[106],[33,6],[32,10],[58,0,4],[12,1],[11],[11],[32,6],[65,1],[106],[34,6],[65,12],[106],[33,8],[3,64],[32,6],[32,8],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[45,0,4],[34,9],[65,15],[113],[65,48],[106],[34,10],[65,57],[74],[4,64],[32,10],[65,39],[106],[33,10],[11],[32,9],[65,4],[117],[65,48],[106],[34,11],[65,57],[74],[4,64],[32,11],[65,39],[106],[33,11],[11],[32,6],[32,6],[65,1],[106],[33,6],[32,11],[58,0,4],[32,6],[32,6],[65,1],[106],[33,6],[32,10],[58,0,4],[12,1],[11],[11],[32,6],[65,1],[106],[33,6],[32,4],[65,195,1],[15]],
|
@@ -3992,7 +4145,7 @@ export const BuiltinFuncs = function() {
|
|
3992
4145
|
locals: [124], localNames: ["argument","argument#type","number"],
|
3993
4146
|
};
|
3994
4147
|
this.__ecma262_ToString = {
|
3995
|
-
wasm: (scope, {allocPage,builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,3],[33,2],[32,0],[32,1],[16, builtin('__Porffor_rawType')],[34,4],[68,0,0,0,0,0,192,80,64],[97],[32,4],[68,0,0,0,0,0,96,104,64],[97],[114],[4,64],[32,0],[32,1],[15],[11],[32,4],[68,0,0,0,0,0,0,28,64],[97],[4,64],...internalThrow(scope, 'TypeError', `Cannot convert a Symbol value to a string`),[11],[32,4],[68,0,0,0,0,0,0,96,64],[97],[4,64],...number(allocPage(scope, 'bytestring: __ecma262_ToString/out', 'i8') * pageSize, 124),[34,2],[65,195,1],[15],[11],[32,4],[68,0,0,0,0,0,0,20,64],[97],[32,0],[68,0,0,0,0,0,0,0,0],[97],[113],[4,64],[32,2],[252,3],[34,5],[65,4],[54,1,0],[32,5],[65,238,0],[58,0,4],[32,5],[65,245,0],[58,0,5],[32,5],[65,236,0],[58,0,6],[32,5],[65,236,0],[58,0,7],[32,5],[184],[34,2],[65,195,1],[15],[11],[32,4],[68,0,0,0,0,0,0,0,64],[97],[4,64],[32,0],[68,0,0,0,0,0,0,240,63],[97],[4,64],[32,2],[252,3],[34,5],[65,4],[54,1,0],[32,5],[65,244,0],[58,0,4],[32,5],[65,242,0],[58,0,5],[32,5],[65,245,0],[58,0,6],[32,5],[65,229,0],[58,0,7],[32,5],[184],[34,2],[65,195,1],[15],[11],[32,2],[252,3],[34,5],[65,5],[54,1,0],[32,5],[65,230,0],[58,0,4],[32,5],[65,225,0],[58,0,5],[32,5],[65,236,0],[58,0,6],[32,5],[65,243,0],[58,0,7],[32,5],[65,229,0],[58,0,8],[32,5],[184],[34,2],[65,195,1],[15],[11],[32,0],[33,6],[32,1],[34,7],[33,8],[2,124],[32,8],[65,1],[70],[4,64,"TYPESWITCH|Number"],[32,6],[32,7],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('__Number_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,2],[70],[4,64,"TYPESWITCH|Boolean"],[32,6],[32,7],[16, builtin('__Boolean_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,6],[32,7],[16, builtin('__Object_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,6],[32,7],[16, builtin('__Function_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Symbol"],[32,6],[32,7],[16, builtin('__Symbol_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,18],[70],[4,64,"TYPESWITCH|Date"],[32,6],[32,7],[16, builtin('__Date_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,6],[32,7],[16, builtin('__Set_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,33],[70],[4,64,"TYPESWITCH|WeakRef"],[32,6],[32,7],[16, builtin('__WeakRef_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,34],[70],[4,64,"TYPESWITCH|WeakSet"],[32,6],[32,7],[16, builtin('__WeakSet_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,6],[32,7],[16, builtin('__WeakMap_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,2],[32,7],[16, builtin('__String_prototype_toString')],[33,3],[183],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,6],[32,7],[16, builtin('__Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,6],[32,7],[16, builtin('__Uint8Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,6],[32,7],[16, builtin('__Int8Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,6],[32,7],[16, builtin('__Uint8ClampedArray_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,6],[32,7],[16, builtin('__Uint16Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,6],[32,7],[16, builtin('__Int16Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,6],[32,7],[16, builtin('__Uint32Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,6],[32,7],[16, builtin('__Int32Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,6],[32,7],[16, builtin('__Float32Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,6],[32,7],[16, builtin('__Float64Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,2],[32,7],[16, builtin('__ByteString_prototype_toString')],[33,3],[183],[12,1],[11],...internalThrow(scope, 'TypeError', `'toString' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[32,3],[15]],
|
4148
|
+
wasm: (scope, {allocPage,builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,3],[33,2],[32,0],[32,1],[16, builtin('__Porffor_rawType')],[34,4],[68,0,0,0,0,0,192,80,64],[97],[32,4],[68,0,0,0,0,0,96,104,64],[97],[114],[4,64],[32,0],[32,1],[15],[11],[32,4],[68,0,0,0,0,0,0,28,64],[97],[4,64],...internalThrow(scope, 'TypeError', `Cannot convert a Symbol value to a string`),[11],[32,4],[68,0,0,0,0,0,0,96,64],[97],[4,64],...number(allocPage(scope, 'bytestring: __ecma262_ToString/out', 'i8') * pageSize, 124),[34,2],[65,195,1],[15],[11],[32,4],[68,0,0,0,0,0,0,20,64],[97],[32,0],[68,0,0,0,0,0,0,0,0],[97],[113],[4,64],[32,2],[252,3],[34,5],[65,4],[54,1,0],[32,5],[65,238,0],[58,0,4],[32,5],[65,245,0],[58,0,5],[32,5],[65,236,0],[58,0,6],[32,5],[65,236,0],[58,0,7],[32,5],[184],[34,2],[65,195,1],[15],[11],[32,4],[68,0,0,0,0,0,0,0,64],[97],[4,64],[32,0],[68,0,0,0,0,0,0,240,63],[97],[4,64],[32,2],[252,3],[34,5],[65,4],[54,1,0],[32,5],[65,244,0],[58,0,4],[32,5],[65,242,0],[58,0,5],[32,5],[65,245,0],[58,0,6],[32,5],[65,229,0],[58,0,7],[32,5],[184],[34,2],[65,195,1],[15],[11],[32,2],[252,3],[34,5],[65,5],[54,1,0],[32,5],[65,230,0],[58,0,4],[32,5],[65,225,0],[58,0,5],[32,5],[65,236,0],[58,0,6],[32,5],[65,243,0],[58,0,7],[32,5],[65,229,0],[58,0,8],[32,5],[184],[34,2],[65,195,1],[15],[11],[32,0],[33,6],[32,1],[34,7],[33,8],[2,124],[32,8],[65,1],[70],[4,64,"TYPESWITCH|Number"],[32,6],[32,7],[68,0,0,0,0,0,0,0,0],[65,128,1],[16, builtin('__Number_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,2],[70],[4,64,"TYPESWITCH|Boolean"],[32,6],[32,7],[16, builtin('__Boolean_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,5],[70],[4,64,"TYPESWITCH|Object"],[32,6],[32,7],[16, builtin('__Object_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,6],[70],[4,64,"TYPESWITCH|Function"],[32,6],[32,7],[16, builtin('__Function_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,7],[70],[4,64,"TYPESWITCH|Symbol"],[32,6],[32,7],[16, builtin('__Symbol_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,18],[70],[4,64,"TYPESWITCH|Date"],[32,6],[32,7],[16, builtin('__Date_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,6],[32,7],[16, builtin('__Set_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,20],[70],[4,64,"TYPESWITCH|Map"],[32,6],[32,7],[16, builtin('__Map_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,33],[70],[4,64,"TYPESWITCH|WeakRef"],[32,6],[32,7],[16, builtin('__WeakRef_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,34],[70],[4,64,"TYPESWITCH|WeakSet"],[32,6],[32,7],[16, builtin('__WeakSet_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,35],[70],[4,64,"TYPESWITCH|WeakMap"],[32,6],[32,7],[16, builtin('__WeakMap_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,195,0],[70],[4,64,"TYPESWITCH|String"],[32,6],[252,2],[32,7],[16, builtin('__String_prototype_toString')],[33,3],[183],[12,1],[11],[32,8],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,6],[32,7],[16, builtin('__Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,216,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,6],[32,7],[16, builtin('__Uint8Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,217,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,6],[32,7],[16, builtin('__Int8Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,218,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,6],[32,7],[16, builtin('__Uint8ClampedArray_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,219,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,6],[32,7],[16, builtin('__Uint16Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,220,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,6],[32,7],[16, builtin('__Int16Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,221,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,6],[32,7],[16, builtin('__Uint32Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,222,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,6],[32,7],[16, builtin('__Int32Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,223,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,6],[32,7],[16, builtin('__Float32Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,224,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,6],[32,7],[16, builtin('__Float64Array_prototype_toString')],[33,3],[12,1],[11],[32,8],[65,195,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,6],[252,2],[32,7],[16, builtin('__ByteString_prototype_toString')],[33,3],[183],[12,1],[11],...internalThrow(scope, 'TypeError', `'toString' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[32,3],[15]],
|
3996
4149
|
params: [124,127], typedParams: 1,
|
3997
4150
|
returns: [124,127], typedReturns: 1,
|
3998
4151
|
locals: [124,127,124,127,124,127,127], localNames: ["argument","argument#type","out","#last_type","type","#makearray_pointer_tmp","#proto_target","#proto_target#type","#typeswitch_tmp"],
|
@@ -4060,6 +4213,19 @@ export const BuiltinFuncs = function() {
|
|
4060
4213
|
returns: [124,127], typedReturns: 1,
|
4061
4214
|
locals: [124,124,127,127,127,127,124,127,124,127,127], localNames: ["_this","_this#type","vals","out","#last_type","forof_base_pointer","forof_length","forof_counter","x","x#type","#proto_target","#proto_target#type","#typeswitch_tmp"],
|
4062
4215
|
};
|
4216
|
+
this.__Map_prototype_toString = {
|
4217
|
+
wasm: (scope, {allocPage}) => [...number(allocPage(scope, 'bytestring: __Map_prototype_toString/str', 'i8') * pageSize, 124),[34,2],[65,195,1],[15]],
|
4218
|
+
params: [124,127], typedParams: 1,
|
4219
|
+
returns: [124,127], typedReturns: 1,
|
4220
|
+
locals: [124], localNames: ["_this","_this#type","str"],
|
4221
|
+
data: [[0,[12,0,0,0,91,111,98,106,101,99,116,32,77,97,112,93]]],
|
4222
|
+
};
|
4223
|
+
this.__Map_prototype_toLocaleString = {
|
4224
|
+
wasm: (scope, {builtin}) => [[32,0],[65,20],[16, builtin('__Map_prototype_toString')],[34,2],[15]],
|
4225
|
+
params: [124,127], typedParams: 1,
|
4226
|
+
returns: [124,127], typedReturns: 1,
|
4227
|
+
locals: [127], localNames: ["_this","_this#type","#last_type"],
|
4228
|
+
};
|
4063
4229
|
this.__WeakMap_prototype_has = {
|
4064
4230
|
wasm: (scope, {builtin}) => [[32,0],[65,35],[32,2],[32,3],[16, builtin('__Map_prototype_has')],[34,4],[15]],
|
4065
4231
|
params: [124,127,124,127], typedParams: 1,
|
package/compiler/precompile.js
CHANGED
@@ -73,10 +73,15 @@ const compile = async (file, _funcs) => {
|
|
73
73
|
y.splice(0, 10, 'global', y[0], name, type);
|
74
74
|
|
75
75
|
if (!x.globalInits) {
|
76
|
-
|
77
|
-
|
78
|
-
|
76
|
+
if (!main.rewrittenGlobalInits) {
|
77
|
+
for (const z in main.globalInits) {
|
78
|
+
rewriteWasm(main, main.globalInits[z], true);
|
79
|
+
}
|
80
|
+
|
81
|
+
main.rewrittenGlobalInits = true;
|
79
82
|
}
|
83
|
+
|
84
|
+
x.globalInits = main.globalInits;
|
80
85
|
}
|
81
86
|
}
|
82
87
|
|
package/package.json
CHANGED