porffor 0.18.37 → 0.18.39

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.
@@ -177,17 +177,80 @@ export const Set = function (iterable: any): any {
177
177
  };
178
178
 
179
179
  export const __Set_prototype_union = (_this: Set, other: any) => {
180
- if (Porffor.rawType(other) != Porffor.TYPES.set) {
181
- throw new TypeError("Set.prototype.union\'s \'other\' argument must be a Set");
180
+ if (Porffor.rawType(other) != Porffor.TYPES.set) throw new TypeError('other argument must be a Set');
181
+
182
+ const out: Set = new Set(_this);
183
+ for (const x of other) {
184
+ out.add(x);
182
185
  }
183
186
 
187
+ return out;
188
+ };
189
+
190
+ export const __Set_prototype_intersection = (_this: Set, other: any) => {
191
+ if (Porffor.rawType(other) != Porffor.TYPES.set) throw new TypeError('other argument must be a Set');
192
+
184
193
  const out: Set = new Set(_this);
185
194
  for (const x of other) {
186
195
  out.add(x);
187
196
  }
197
+
198
+ return out;
199
+ };
200
+
201
+ export const __Set_prototype_difference = (_this: Set, other: any) => {
202
+ if (Porffor.rawType(other) != Porffor.TYPES.set) throw new TypeError('other argument must be a Set');
203
+
204
+ const out: Set = new Set(_this);
205
+ for (const x of other) {
206
+ out.delete(x);
207
+ }
208
+
209
+ return out;
210
+ };
211
+
212
+ export const __Set_prototype_symmetricDifference = (_this: Set, other: any) => {
213
+ if (Porffor.rawType(other) != Porffor.TYPES.set) throw new TypeError('other argument must be a Set');
214
+
215
+ const out: Set = new Set(_this);
216
+ for (const x of other) {
217
+ if (_this.has(x)) out.delete(x);
218
+ else out.add(x);
219
+ }
220
+
188
221
  return out;
189
222
  };
190
223
 
224
+ export const __Set_prototype_isSubsetOf = (_this: Set, other: any) => {
225
+ if (Porffor.rawType(other) != Porffor.TYPES.set) throw new TypeError('other argument must be a Set');
226
+
227
+ for (const x of _this) {
228
+ if (!other.has(x)) return false;
229
+ }
230
+
231
+ return true;
232
+ };
233
+
234
+ export const __Set_prototype_isSupersetOf = (_this: Set, other: any) => {
235
+ if (Porffor.rawType(other) != Porffor.TYPES.set) throw new TypeError('other argument must be a Set');
236
+
237
+ for (const x of other) {
238
+ if (!_this.has(x)) return false;
239
+ }
240
+
241
+ return true;
242
+ };
243
+
244
+ export const __Set_prototype_isDisjointFrom = (_this: Set, other: any) => {
245
+ if (Porffor.rawType(other) != Porffor.TYPES.set) throw new TypeError('other argument must be a Set');
246
+
247
+ for (const x of _this) {
248
+ if (other.has(x)) return false;
249
+ }
250
+
251
+ return true;
252
+ };
253
+
191
254
  export const __Set_prototype_toString = (_this: Set) => {
192
255
  const out: bytestring = '[object Set]';
193
256
  return out;
@@ -1452,6 +1452,91 @@ i32.store8 0 12`;
1452
1452
  };
1453
1453
 
1454
1454
 
1455
+ export const __String_prototype_localeCompare = (_this: string, compareString: any) => {
1456
+ compareString = ecma262.ToString(compareString);
1457
+
1458
+ const thisLen: i32 = _this.length;
1459
+ const compareLen: i32 = compareString.length;
1460
+ const maxLen: i32 = thisLen > compareLen ? thisLen : compareLen;
1461
+
1462
+ for (let i: i32 = 0; i < maxLen; i++) {
1463
+ const a: i32 = _this.charCodeAt(i);
1464
+ const b: i32 = compareString.charCodeAt(i);
1465
+
1466
+ if (a > b) return 1;
1467
+ if (b > a) return -1;
1468
+ }
1469
+
1470
+ if (thisLen > compareLen) return 1;
1471
+ if (compareLen > thisLen) return -1;
1472
+
1473
+ return 0;
1474
+ };
1475
+
1476
+ export const __ByteString_prototype_localeCompare = (_this: bytestring, compareString: any) => {
1477
+ compareString = ecma262.ToString(compareString);
1478
+
1479
+ const thisLen: i32 = _this.length;
1480
+ const compareLen: i32 = compareString.length;
1481
+ const maxLen: i32 = thisLen > compareLen ? thisLen : compareLen;
1482
+
1483
+ for (let i: i32 = 0; i < maxLen; i++) {
1484
+ const a: i32 = _this.charCodeAt(i);
1485
+ const b: i32 = compareString.charCodeAt(i);
1486
+
1487
+ if (a > b) return 1;
1488
+ if (b > a) return -1;
1489
+ }
1490
+
1491
+ if (thisLen > compareLen) return 1;
1492
+ if (compareLen > thisLen) return -1;
1493
+
1494
+ return 0;
1495
+ };
1496
+
1497
+
1498
+ export const __String_prototype_toWellFormed = (_this: string) => {
1499
+ let out: string = Porffor.allocate();
1500
+ Porffor.clone(_this, out);
1501
+
1502
+ let ptr: i32 = Porffor.wasm`local.get ${out}`;
1503
+ const endPtr: i32 = ptr + out.length * 2;
1504
+ while (ptr < endPtr) {
1505
+ const c1: i32 = Porffor.wasm.i32.load16_u(ptr, 0, 4);
1506
+
1507
+ if (Porffor.fastAnd(c1 >= 0xDC00, c1 <= 0xDFFF)) {
1508
+ // lone trailing surrogate, bad
1509
+ Porffor.wasm.i32.store16(ptr, 0xFFFD, 0, 4);
1510
+ }
1511
+
1512
+ if (Porffor.fastAnd(c1 >= 0xD800, c1 <= 0xDBFF)) {
1513
+ // leading surrogate, peek if next is trailing
1514
+ const c2: i32 = ptr + 2 < endPtr ? Porffor.wasm.i32.load16_u(ptr + 2, 0, 4) : 0;
1515
+
1516
+ if (Porffor.fastAnd(c2 >= 0xDC00, c2 <= 0xDFFF)) {
1517
+ // next is trailing surrogate, skip it too
1518
+ ptr += 2;
1519
+ } else {
1520
+ // lone leading surrogate, bad
1521
+ Porffor.wasm.i32.store16(ptr, 0xFFFD, 0, 4);
1522
+ }
1523
+ }
1524
+
1525
+ ptr += 2;
1526
+ }
1527
+
1528
+ return out;
1529
+ };
1530
+
1531
+ export const __ByteString_prototype_toWellFormed = (_this: bytestring) => {
1532
+ // bytestrings cannot have surrogates, so just copy
1533
+ let out: bytestring = Porffor.allocate();
1534
+ Porffor.clone(_this, out);
1535
+
1536
+ return out;
1537
+ };
1538
+
1539
+
1455
1540
  // 22.1.3.29 String.prototype.toString ()
1456
1541
  // https://tc39.es/ecma262/#sec-string.prototype.tostring
1457
1542
  export const __String_prototype_toString = (_this: string) => {
@@ -1128,17 +1128,15 @@ export const BuiltinFuncs = function() {
1128
1128
  };
1129
1129
 
1130
1130
  this.__Porffor_clone = {
1131
- params: [ valtypeBinary, valtypeBinary ],
1131
+ params: [ Valtype.i32, Valtype.i32 ],
1132
1132
  locals: [],
1133
1133
  returns: [],
1134
1134
  wasm: [
1135
1135
  // dst
1136
1136
  [ Opcodes.local_get, 1 ],
1137
- Opcodes.i32_to_u,
1138
1137
 
1139
1138
  // src
1140
1139
  [ Opcodes.local_get, 0 ],
1141
- Opcodes.i32_to_u,
1142
1140
 
1143
1141
  // size = pageSize
1144
1142
  ...number(pageSize, Valtype.i32),
@@ -273,7 +273,7 @@ export const BuiltinFuncs = function() {
273
273
  locals: [124,124,127,127,124,124,127,127,127,127,127], localNames: ["_this","_this#type","searchElement","searchElement#type","position","position#type","len","i","#loadArray_offset","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end"],
274
274
  };
275
275
  this.__Array_prototype_with = {
276
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[32,7],[16, builtin('__Porffor_clone')],[32,7],[252,3],[32,2],[252,3],[65,9],[108],[106],[34,10],[32,4],[34,9],[57,0,4],[32,10],[32,5],[58,0,12],[32,7],[65,208,0],[15]],
276
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[252,2],[32,7],[252,2],[16, builtin('__Porffor_clone')],[32,7],[252,3],[32,2],[252,3],[65,9],[108],[106],[34,10],[32,4],[34,9],[57,0,4],[32,10],[32,5],[58,0,12],[32,7],[65,208,0],[15]],
277
277
  params: [124,127,124,127,124,127], typedParams: 1,
278
278
  returns: [124,127], typedReturns: 1,
279
279
  locals: [124,124,127,124,127], localNames: ["_this","_this#type","index","index#type","value","value#type","len","out","#last_type","#member_setter_val_tmp","#member_setter_ptr_tmp"],
@@ -285,7 +285,7 @@ export const BuiltinFuncs = function() {
285
285
  locals: [124,124,127,127,127], localNames: ["_this","_this#type","target","target#type","start","start#type","end","end#type","len","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#last_type"],
286
286
  };
287
287
  this.__Array_prototype_concat = {
288
- wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[3,64],[32,7],[43,0,4],[32,7],[45,0,12],[33,11],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,9],[108],[106],[34,15],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,0],[65,1],[54,0,0],[65,0],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,0],[65,1],[54,0,0],[65,0],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[57,0,4],[32,15],[32,5],[58,0,12],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,9],[108],[106],[34,15],[32,10],[34,14],[57,0,4],[32,15],[32,11],[58,0,12],[11],[11],[32,7],[65,9],[106],[33,7],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,208,0],[15]],
288
+ wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[3,64],[32,7],[43,0,4],[32,7],[45,0,12],[33,11],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,9],[108],[106],[34,15],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,0],[65,1],[54,0,0],[65,0],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,0],[65,1],[54,0,0],[65,0],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[57,0,4],[32,15],[32,5],[58,0,12],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,9],[108],[106],[34,15],[32,10],[34,14],[57,0,4],[32,15],[32,11],[58,0,12],[11],[11],[32,7],[65,9],[106],[33,7],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,208,0],[15]],
289
289
  params: [124,127,124,127], typedParams: 1,
290
290
  returns: [124,127], typedReturns: 1,
291
291
  locals: [124,127,124,127,127,127,124,127,124,124,124,127,127,127,124], localNames: ["_this","_this#type","vals","vals#type","out","#last_type","len","forof_base_pointer","forof_length","forof_counter","x","x#type","l","i","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#typeswitch_tmp","__length_setter_tmp"],
@@ -420,20 +420,20 @@ export const BuiltinFuncs = function() {
420
420
  locals: [124,124,124,124,127,124,124,127,127], localNames: ["_this","_this#type","len","start","end","out","#last_type","__length_setter_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset"],
421
421
  };
422
422
  this.__Array_prototype_toSorted = {
423
- wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,4],[65,208,0],[32,2],[32,3],[16, builtin('__Array_prototype_sort')],[34,5],[15]],
423
+ wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,4],[65,208,0],[32,2],[32,3],[16, builtin('__Array_prototype_sort')],[34,5],[15]],
424
424
  params: [124,127,124,127], typedParams: 1,
425
425
  returns: [124,127], typedReturns: 1,
426
426
  locals: [124,127], localNames: ["_this","_this#type","callbackFn","callbackFn#type","out","#last_type"],
427
427
  };
428
428
  this.__Array_prototype_toSpliced = {
429
- wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,9],[33,8],[32,0],[32,8],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,10],[32,2],[68,0,0,0,0,0,0,0,0],[16, builtin('f64_|')],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,10],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[33,2],[11],[11],[32,2],[32,10],[100],[4,64],[32,10],[33,2],[11],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[97],[4,64],[32,10],[32,2],[161],[34,4],[65,0],[33,5],[26],[11],[32,4],[68,0,0,0,0,0,0,0,0],[16, builtin('f64_|')],[34,4],[65,0],[33,5],[26],[32,4],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[34,4],[65,0],[33,5],[26],[11],[32,4],[32,10],[32,2],[161],[100],[4,64],[32,10],[32,2],[161],[34,4],[65,0],[33,5],[26],[11],[32,6],[252,3],[40,1,0],[184],[33,11],[32,8],[252,3],[32,10],[32,4],[161],[32,11],[160],[34,12],[252,3],[54,1,0],[32,8],[252,3],[65,4],[106],[32,2],[252,3],[65,9],[108],[106],[34,13],[32,11],[252,3],[65,9],[108],[106],[32,13],[32,4],[252,3],[65,9],[108],[106],[32,10],[252,3],[32,2],[252,3],[32,4],[252,3],[107],[107],[65,9],[108],[252,10,0,0],[32,11],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,6],[33,14],[32,8],[32,2],[68,0,0,0,0,0,0,34,64],[162],[160],[34,15],[32,11],[68,0,0,0,0,0,0,34,64],[162],[160],[33,16],[3,64],[32,15],[32,16],[99],[4,64],[32,15],[252,2],[32,14],[252,2],[43,0,4],[57,0,4],[32,15],[252,2],[32,14],[252,2],[45,0,12],[58,0,12],[32,15],[68,0,0,0,0,0,0,34,64],[160],[33,15],[32,14],[68,0,0,0,0,0,0,34,64],[160],[33,14],[12,1],[11],[11],[11],[32,8],[65,208,0],[15]],
429
+ wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,9],[33,8],[32,0],[252,2],[32,8],[252,2],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,10],[32,2],[68,0,0,0,0,0,0,0,0],[16, builtin('f64_|')],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,10],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[33,2],[11],[11],[32,2],[32,10],[100],[4,64],[32,10],[33,2],[11],[32,4],[32,5],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[97],[4,64],[32,10],[32,2],[161],[34,4],[65,0],[33,5],[26],[11],[32,4],[68,0,0,0,0,0,0,0,0],[16, builtin('f64_|')],[34,4],[65,0],[33,5],[26],[32,4],[68,0,0,0,0,0,0,0,0],[99],[4,64],[68,0,0,0,0,0,0,0,0],[34,4],[65,0],[33,5],[26],[11],[32,4],[32,10],[32,2],[161],[100],[4,64],[32,10],[32,2],[161],[34,4],[65,0],[33,5],[26],[11],[32,6],[252,3],[40,1,0],[184],[33,11],[32,8],[252,3],[32,10],[32,4],[161],[32,11],[160],[34,12],[252,3],[54,1,0],[32,8],[252,3],[65,4],[106],[32,2],[252,3],[65,9],[108],[106],[34,13],[32,11],[252,3],[65,9],[108],[106],[32,13],[32,4],[252,3],[65,9],[108],[106],[32,10],[252,3],[32,2],[252,3],[32,4],[252,3],[107],[107],[65,9],[108],[252,10,0,0],[32,11],[68,0,0,0,0,0,0,0,0],[100],[4,64],[32,6],[33,14],[32,8],[32,2],[68,0,0,0,0,0,0,34,64],[162],[160],[34,15],[32,11],[68,0,0,0,0,0,0,34,64],[162],[160],[33,16],[3,64],[32,15],[32,16],[99],[4,64],[32,15],[252,2],[32,14],[252,2],[43,0,4],[57,0,4],[32,15],[252,2],[32,14],[252,2],[45,0,12],[58,0,12],[32,15],[68,0,0,0,0,0,0,34,64],[160],[33,15],[32,14],[68,0,0,0,0,0,0,34,64],[160],[33,14],[12,1],[11],[11],[11],[32,8],[65,208,0],[15]],
430
430
  params: [124,127,124,127,124,127,124,127], typedParams: 1,
431
431
  returns: [124,127], typedReturns: 1,
432
432
  locals: [124,127,124,124,124,127,124,124,124], localNames: ["_this","_this#type","start","start#type","deleteCount","deleteCount#type","items","items#type","out","#last_type","len","itemsLen","__length_setter_tmp","#splice_ptr","itemsPtr","outPtr","outPtrEnd"],
433
433
  hasRestArgument: 1,
434
434
  };
435
435
  this.__Array_prototype_flat = {
436
- wasm: (scope, {builtin,internalThrow}) => [[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[97],[4,64],[68,0,0,0,0,0,0,240,63],[34,2],[65,0],[33,3],[26],[11],[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,2],[68,0,0,0,0,0,0,0,0],[101],[4,64],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,4],[65,208,0],[15],[11],[32,0],[252,3],[40,1,0],[184],[33,6],[68,0,0,0,0,0,0,0,0],[33,7],[68,0,0,0,0,0,0,0,0],[33,8],[3,64],[32,7],[32,6],[99],[4,64],[32,7],[32,7],[68,0,0,0,0,0,0,240,63],[160],[33,7],[252,3],[65,9],[108],[32,0],[252,3],[106],[34,11],[43,0,4],[32,11],[45,0,12],[33,5],[33,9],[32,5],[33,10],[32,9],[32,10],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,84,64],[97],[4,64],[32,2],[68,0,0,0,0,0,0,240,63],[100],[4,64],[32,9],[32,10],[32,2],[68,0,0,0,0,0,0,240,63],[161],[65,0],[16, builtin('__Array_prototype_flat')],[33,10],[26],[11],[32,9],[252,3],[33,12],[65,0],[33,14],[32,12],[40,1,0],[33,13],[32,10],[33,19],[2,64],[32,19],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,12],[43,0,4],[32,12],[45,0,12],[33,16],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,12],[65,9],[106],[33,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,194,0],[33,16],[65,128,128,8],[65,1],[54,0,0],[3,64],[65,128,128,8],[32,12],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,65],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,12],[65,2],[106],[33,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,12],[43,0,4],[32,12],[45,0,12],[33,16],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,12],[65,9],[106],[33,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[106],[45,0,4],[184],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[106],[44,0,4],[183],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[106],[45,0,4],[184],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[65,2],[108],[106],[47,0,4],[184],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[65,2],[108],[106],[46,0,4],[183],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[65,4],[108],[106],[40,0,4],[184],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[65,4],[108],[106],[40,0,4],[183],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[65,4],[108],[106],[42,0,4],[187],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[65,8],[108],[106],[43,0,4],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,194,1],[33,16],[65,128,128,8],[65,1],[54,0,0],[3,64],[65,128,128,8],[32,12],[32,14],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,65],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[5],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,9],[34,17],[57,0,4],[32,18],[32,10],[58,0,12],[11],[12,1],[11],[11],[32,4],[252,3],[32,8],[34,20],[252,3],[54,1,0],[32,4],[65,208,0],[15]],
436
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,8,64],[97],[4,64],[68,0,0,0,0,0,0,240,63],[34,2],[65,0],[33,3],[26],[11],[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,2],[68,0,0,0,0,0,0,0,0],[101],[4,64],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,4],[65,208,0],[15],[11],[32,0],[252,3],[40,1,0],[184],[33,6],[68,0,0,0,0,0,0,0,0],[33,7],[68,0,0,0,0,0,0,0,0],[33,8],[3,64],[32,7],[32,6],[99],[4,64],[32,7],[32,7],[68,0,0,0,0,0,0,240,63],[160],[33,7],[252,3],[65,9],[108],[32,0],[252,3],[106],[34,11],[43,0,4],[32,11],[45,0,12],[33,5],[33,9],[32,5],[33,10],[32,9],[32,10],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,84,64],[97],[4,64],[32,2],[68,0,0,0,0,0,0,240,63],[100],[4,64],[32,9],[32,10],[32,2],[68,0,0,0,0,0,0,240,63],[161],[65,0],[16, builtin('__Array_prototype_flat')],[33,10],[26],[11],[32,9],[252,3],[33,12],[65,0],[33,14],[32,12],[40,1,0],[33,13],[32,10],[33,19],[2,64],[32,19],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,12],[43,0,4],[32,12],[45,0,12],[33,16],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,12],[65,9],[106],[33,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,194,0],[33,16],[65,128,128,8],[65,1],[54,0,0],[3,64],[65,128,128,8],[32,12],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,65],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,12],[65,2],[106],[33,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,12],[43,0,4],[32,12],[45,0,12],[33,16],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,12],[65,9],[106],[33,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[106],[45,0,4],[184],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[106],[44,0,4],[183],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[106],[45,0,4],[184],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[65,2],[108],[106],[47,0,4],[184],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[65,2],[108],[106],[46,0,4],[183],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[65,4],[108],[106],[40,0,4],[184],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[65,4],[108],[106],[40,0,4],[183],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[65,4],[108],[106],[42,0,4],[187],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,0],[33,16],[3,64],[32,12],[40,0,4],[32,14],[65,8],[108],[106],[43,0,4],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],[32,19],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,194,1],[33,16],[65,128,128,8],[65,1],[54,0,0],[3,64],[65,128,128,8],[32,12],[32,14],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,65],[33,15],[2,64],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,15],[34,17],[57,0,4],[32,18],[32,16],[58,0,12],[32,14],[65,1],[106],[34,14],[32,13],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[5],[32,4],[252,3],[32,8],[32,8],[68,0,0,0,0,0,0,240,63],[160],[33,8],[252,3],[65,9],[108],[106],[34,18],[32,9],[34,17],[57,0,4],[32,18],[32,10],[58,0,12],[11],[12,1],[11],[11],[32,4],[252,3],[32,8],[34,20],[252,3],[54,1,0],[32,4],[65,208,0],[15]],
437
437
  params: [124,127,124,127], typedParams: 1,
438
438
  returns: [124,127], typedReturns: 1,
439
439
  locals: [124,127,124,124,124,124,127,127,127,127,127,124,127,124,127,127,124], localNames: ["_this","_this#type","depth","depth#type","out","#last_type","len","i","j","x","x#type","#loadArray_offset","forof_base_pointer","forof_length","forof_counter","y","y#type","#member_setter_val_tmp","#member_setter_ptr_tmp","#typeswitch_tmp","__length_setter_tmp"],
@@ -1520,11 +1520,47 @@ export const BuiltinFuncs = function() {
1520
1520
  constr: 1,
1521
1521
  };
1522
1522
  this.__Set_prototype_union = {
1523
- wasm: (scope, {builtin,internalThrow}) => [[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,51,64],[98],[4,64],...internalThrow(scope, 'TypeError', `Set.prototype.union's 'other' argument must be a Set`),[11],[65,1],[32,0],[65,19],[16, builtin('Set')],[33,5],[33,4],[32,2],[252,3],[33,6],[65,0],[33,8],[32,6],[40,1,0],[33,7],[32,3],[33,13],[2,64],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,6],[43,0,4],[32,6],[45,0,12],[33,10],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,194,0],[33,10],[65,0],[65,1],[54,0,0],[3,64],[65,0],[32,6],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,6],[65,2],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,6],[43,0,4],[32,6],[45,0,12],[33,10],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[45,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[44,0,4],[183],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[45,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,2],[108],[106],[47,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,2],[108],[106],[46,0,4],[183],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[40,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[40,0,4],[183],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[42,0,4],[187],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,8],[108],[106],[43,0,4],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,194,1],[33,10],[65,0],[65,1],[54,0,0],[3,64],[65,0],[32,6],[32,8],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[32,4],[65,19],[15]],
1523
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,51,64],[98],[4,64],...internalThrow(scope, 'TypeError', `other argument must be a Set`),[11],[65,1],[32,0],[65,19],[16, builtin('Set')],[33,5],[33,4],[32,2],[252,3],[33,6],[65,0],[33,8],[32,6],[40,1,0],[33,7],[32,3],[33,13],[2,64],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,6],[43,0,4],[32,6],[45,0,12],[33,10],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,194,0],[33,10],[65,0],[65,1],[54,0,0],[3,64],[65,0],[32,6],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,6],[65,2],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,6],[43,0,4],[32,6],[45,0,12],[33,10],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[45,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[44,0,4],[183],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[45,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,2],[108],[106],[47,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,2],[108],[106],[46,0,4],[183],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[40,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[40,0,4],[183],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[42,0,4],[187],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,8],[108],[106],[43,0,4],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,194,1],[33,10],[65,0],[65,1],[54,0,0],[3,64],[65,0],[32,6],[32,8],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[32,4],[65,19],[15]],
1524
1524
  params: [124,127,124,127], typedParams: 1,
1525
1525
  returns: [124,127], typedReturns: 1,
1526
1526
  locals: [124,127,127,127,127,124,127,124,127,127], localNames: ["_this","_this#type","other","other#type","out","#last_type","forof_base_pointer","forof_length","forof_counter","x","x#type","#proto_target","#proto_target#type","#typeswitch_tmp"],
1527
1527
  };
1528
+ this.__Set_prototype_intersection = {
1529
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,51,64],[98],[4,64],...internalThrow(scope, 'TypeError', `other argument must be a Set`),[11],[65,1],[32,0],[65,19],[16, builtin('Set')],[33,5],[33,4],[32,2],[252,3],[33,6],[65,0],[33,8],[32,6],[40,1,0],[33,7],[32,3],[33,13],[2,64],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,6],[43,0,4],[32,6],[45,0,12],[33,10],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,194,0],[33,10],[65,0],[65,1],[54,0,0],[3,64],[65,0],[32,6],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,6],[65,2],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,6],[43,0,4],[32,6],[45,0,12],[33,10],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[45,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[44,0,4],[183],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[45,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,2],[108],[106],[47,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,2],[108],[106],[46,0,4],[183],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[40,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[40,0,4],[183],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[42,0,4],[187],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,8],[108],[106],[43,0,4],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,194,1],[33,10],[65,0],[65,1],[54,0,0],[3,64],[65,0],[32,6],[32,8],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[32,4],[65,19],[15]],
1530
+ params: [124,127,124,127], typedParams: 1,
1531
+ returns: [124,127], typedReturns: 1,
1532
+ locals: [124,127,127,127,127,124,127,124,127,127], localNames: ["_this","_this#type","other","other#type","out","#last_type","forof_base_pointer","forof_length","forof_counter","x","x#type","#proto_target","#proto_target#type","#typeswitch_tmp"],
1533
+ };
1534
+ this.__Set_prototype_difference = {
1535
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,51,64],[98],[4,64],...internalThrow(scope, 'TypeError', `other argument must be a Set`),[11],[65,1],[32,0],[65,19],[16, builtin('Set')],[33,5],[33,4],[32,2],[252,3],[33,6],[65,0],[33,8],[32,6],[40,1,0],[33,7],[32,3],[33,13],[2,64],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,6],[43,0,4],[32,6],[45,0,12],[33,10],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,194,0],[33,10],[65,0],[65,1],[54,0,0],[3,64],[65,0],[32,6],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[11],[32,6],[65,2],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,6],[43,0,4],[32,6],[45,0,12],[33,10],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[45,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[44,0,4],[183],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[45,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,2],[108],[106],[47,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,2],[108],[106],[46,0,4],[183],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[40,0,4],[184],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[40,0,4],[183],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[42,0,4],[187],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,8],[108],[106],[43,0,4],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,194,1],[33,10],[65,0],[65,1],[54,0,0],[3,64],[65,0],[32,6],[32,8],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[33,9],[2,64],[2,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[32,4],[65,19],[15]],
1536
+ params: [124,127,124,127], typedParams: 1,
1537
+ returns: [124,127], typedReturns: 1,
1538
+ locals: [124,127,127,127,127,124,127,124,127,127], localNames: ["_this","_this#type","other","other#type","out","#last_type","forof_base_pointer","forof_length","forof_counter","x","x#type","#proto_target","#proto_target#type","#typeswitch_tmp"],
1539
+ };
1540
+ this.__Set_prototype_symmetricDifference = {
1541
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,51,64],[98],[4,64],...internalThrow(scope, 'TypeError', `other argument must be a Set`),[11],[65,1],[32,0],[65,19],[16, builtin('Set')],[33,5],[33,4],[32,2],[252,3],[33,6],[65,0],[33,8],[32,6],[40,1,0],[33,7],[32,3],[33,13],[2,64],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,6],[43,0,4],[32,6],[45,0,12],[33,10],[33,9],[2,64],[2,64],[32,0],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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,14],[32,5],[33,13],[2,127],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,14],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[5],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,194,0],[33,10],[65,0],[65,1],[54,0,0],[3,64],[65,0],[32,6],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[33,9],[2,64],[2,64],[32,0],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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,14],[32,5],[33,13],[2,127],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,14],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[5],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[11],[32,6],[65,2],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,6],[43,0,4],[32,6],[45,0,12],[33,10],[33,9],[2,64],[2,64],[32,0],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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,14],[32,5],[33,13],[2,127],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,14],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[5],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[45,0,4],[184],[33,9],[2,64],[2,64],[32,0],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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,14],[32,5],[33,13],[2,127],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,14],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[5],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[44,0,4],[183],[33,9],[2,64],[2,64],[32,0],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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,14],[32,5],[33,13],[2,127],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,14],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[5],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[106],[45,0,4],[184],[33,9],[2,64],[2,64],[32,0],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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,14],[32,5],[33,13],[2,127],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,14],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[5],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,2],[108],[106],[47,0,4],[184],[33,9],[2,64],[2,64],[32,0],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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,14],[32,5],[33,13],[2,127],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,14],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[5],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,2],[108],[106],[46,0,4],[183],[33,9],[2,64],[2,64],[32,0],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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,14],[32,5],[33,13],[2,127],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,14],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[5],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[40,0,4],[184],[33,9],[2,64],[2,64],[32,0],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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,14],[32,5],[33,13],[2,127],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,14],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[5],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[40,0,4],[183],[33,9],[2,64],[2,64],[32,0],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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,14],[32,5],[33,13],[2,127],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,14],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[5],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[42,0,4],[187],[33,9],[2,64],[2,64],[32,0],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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,14],[32,5],[33,13],[2,127],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,14],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[5],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,0],[33,10],[3,64],[32,6],[40,0,4],[32,8],[65,8],[108],[106],[43,0,4],[33,9],[2,64],[2,64],[32,0],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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,14],[32,5],[33,13],[2,127],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,14],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[5],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,194,1],[33,10],[65,0],[65,1],[54,0,0],[3,64],[65,0],[32,6],[32,8],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[33,9],[2,64],[2,64],[32,0],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_has')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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,14],[32,5],[33,13],[2,127],[32,13],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,13],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,14],[252,3],[40,1,0],[12,1],[11],[32,14],[252,3],[11,"TYPESWITCH_end"],[4,64],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_delete')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_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],[5],[32,4],[33,11],[65,19],[34,12],[33,13],[2,124],[32,13],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__Set_prototype_add')],[33,5],[12,1],[11],[32,13],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,11],[32,12],[32,9],[32,10],[16, builtin('__WeakSet_prototype_add')],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `'add' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[26],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[32,4],[65,19],[15]],
1542
+ params: [124,127,124,127], typedParams: 1,
1543
+ returns: [124,127], typedReturns: 1,
1544
+ locals: [124,127,127,127,127,124,127,124,127,127,124], localNames: ["_this","_this#type","other","other#type","out","#last_type","forof_base_pointer","forof_length","forof_counter","x","x#type","#proto_target","#proto_target#type","#typeswitch_tmp","#logicinner_tmp"],
1545
+ };
1546
+ this.__Set_prototype_isSubsetOf = {
1547
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,51,64],[98],[4,64],...internalThrow(scope, 'TypeError', `other argument must be a Set`),[11],[32,0],[252,3],[33,4],[65,0],[33,6],[32,4],[40,1,0],[33,5],[3,64],[32,4],[43,0,4],[32,4],[45,0,12],[33,8],[33,7],[2,64],[2,64],[32,2],[33,9],[32,3],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,4],[65,9],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[68,0,0,0,0,0,0,240,63],[65,1],[15]],
1548
+ params: [124,127,124,127], typedParams: 1,
1549
+ returns: [124,127], typedReturns: 1,
1550
+ locals: [127,127,127,124,127,124,127,127,127,124], localNames: ["_this","_this#type","other","other#type","forof_base_pointer","forof_length","forof_counter","x","x#type","#proto_target","#proto_target#type","#last_type","#typeswitch_tmp","#logicinner_tmp"],
1551
+ };
1552
+ this.__Set_prototype_isSupersetOf = {
1553
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,51,64],[98],[4,64],...internalThrow(scope, 'TypeError', `other argument must be a Set`),[11],[32,2],[252,3],[33,4],[65,0],[33,6],[32,4],[40,1,0],[33,5],[32,3],[33,12],[2,64],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[3,64],[32,4],[43,0,4],[32,4],[45,0,12],[33,8],[33,7],[2,64],[2,64],[32,0],[33,9],[65,19],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,4],[65,9],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,194,0],[33,8],[65,0],[65,1],[54,0,0],[3,64],[65,0],[32,4],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[33,7],[2,64],[2,64],[32,0],[33,9],[65,19],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,4],[65,2],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[3,64],[32,4],[43,0,4],[32,4],[45,0,12],[33,8],[33,7],[2,64],[2,64],[32,0],[33,9],[65,19],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,4],[65,9],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[65,0],[33,8],[3,64],[32,4],[40,0,4],[32,6],[106],[45,0,4],[184],[33,7],[2,64],[2,64],[32,0],[33,9],[65,19],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[65,0],[33,8],[3,64],[32,4],[40,0,4],[32,6],[106],[44,0,4],[183],[33,7],[2,64],[2,64],[32,0],[33,9],[65,19],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[65,0],[33,8],[3,64],[32,4],[40,0,4],[32,6],[106],[45,0,4],[184],[33,7],[2,64],[2,64],[32,0],[33,9],[65,19],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[65,0],[33,8],[3,64],[32,4],[40,0,4],[32,6],[65,2],[108],[106],[47,0,4],[184],[33,7],[2,64],[2,64],[32,0],[33,9],[65,19],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[65,0],[33,8],[3,64],[32,4],[40,0,4],[32,6],[65,2],[108],[106],[46,0,4],[183],[33,7],[2,64],[2,64],[32,0],[33,9],[65,19],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[65,0],[33,8],[3,64],[32,4],[40,0,4],[32,6],[65,4],[108],[106],[40,0,4],[184],[33,7],[2,64],[2,64],[32,0],[33,9],[65,19],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[65,0],[33,8],[3,64],[32,4],[40,0,4],[32,6],[65,4],[108],[106],[40,0,4],[183],[33,7],[2,64],[2,64],[32,0],[33,9],[65,19],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[65,0],[33,8],[3,64],[32,4],[40,0,4],[32,6],[65,4],[108],[106],[42,0,4],[187],[33,7],[2,64],[2,64],[32,0],[33,9],[65,19],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[65,0],[33,8],[3,64],[32,4],[40,0,4],[32,6],[65,8],[108],[106],[43,0,4],[33,7],[2,64],[2,64],[32,0],[33,9],[65,19],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,194,1],[33,8],[65,0],[65,1],[54,0,0],[3,64],[65,0],[32,4],[32,6],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[33,7],[2,64],[2,64],[32,0],[33,9],[65,19],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,124],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[69],[184],[12,1],[11],[32,13],[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,0,0],[65,1],[15],[11],[11],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `Tried for..of on non-iterable type`),[11,"TYPESWITCH_end"],[68,0,0,0,0,0,0,240,63],[65,1],[15]],
1554
+ params: [124,127,124,127], typedParams: 1,
1555
+ returns: [124,127], typedReturns: 1,
1556
+ locals: [127,127,127,124,127,124,127,127,127,124], localNames: ["_this","_this#type","other","other#type","forof_base_pointer","forof_length","forof_counter","x","x#type","#proto_target","#proto_target#type","#last_type","#typeswitch_tmp","#logicinner_tmp"],
1557
+ };
1558
+ this.__Set_prototype_isDisjointFrom = {
1559
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[32,3],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,51,64],[98],[4,64],...internalThrow(scope, 'TypeError', `other argument must be a Set`),[11],[32,0],[252,3],[33,4],[65,0],[33,6],[32,4],[40,1,0],[33,5],[3,64],[32,4],[43,0,4],[32,4],[45,0,12],[33,8],[33,7],[2,64],[2,64],[32,2],[33,9],[32,3],[34,10],[33,12],[2,124],[32,12],[65,19],[70],[4,64,"TYPESWITCH|Set"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__Set_prototype_has')],[33,11],[12,1],[11],[32,12],[65,33],[70],[4,64,"TYPESWITCH|WeakSet"],[32,9],[32,10],[32,7],[32,8],[16, builtin('__WeakSet_prototype_has')],[33,11],[12,1],[11],...internalThrow(scope, 'TypeError', `'has' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,11],[33,12],[2,127],[32,12],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,12],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[32,13],[252,3],[40,1,0],[12,1],[11],[32,13],[252,3],[11,"TYPESWITCH_end"],[4,64],[68,0,0,0,0,0,0,0,0],[65,1],[15],[11],[11],[32,4],[65,9],[106],[33,4],[32,6],[65,1],[106],[34,6],[32,5],[71],[13,1],[11],[11],[68,0,0,0,0,0,0,240,63],[65,1],[15]],
1560
+ params: [124,127,124,127], typedParams: 1,
1561
+ returns: [124,127], typedReturns: 1,
1562
+ locals: [127,127,127,124,127,124,127,127,127,124], localNames: ["_this","_this#type","other","other#type","forof_base_pointer","forof_length","forof_counter","x","x#type","#proto_target","#proto_target#type","#last_type","#typeswitch_tmp","#logicinner_tmp"],
1563
+ };
1528
1564
  this.__Set_prototype_toString = {
1529
1565
  wasm: (scope, {allocPage}) => [...number(allocPage(scope, 'bytestring: __Set_prototype_toString/out', 'i8') * pageSize, 124),[34,2],[65,194,1],[15]],
1530
1566
  params: [124,127], typedParams: 1,
@@ -1792,6 +1828,30 @@ export const BuiltinFuncs = function() {
1792
1828
  returns: [127,127], typedReturns: 1,
1793
1829
  locals: [127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","separator","separator#type","limit","limit#type","out","#last_type","outLen","bsType","tmp","tmpLen","thisLen","sepLen","sepChar","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","#typeswitch_tmp","i","x","__length_setter_tmp","sepInd","logictmp","#logicinner_tmp"],
1794
1830
  };
1831
+ this.__String_prototype_localeCompare = {
1832
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[183],[32,3],[16, builtin('__ecma262_ToString')],[33,4],[252,2],[34,2],[32,4],[33,3],[26],[32,0],[40,1,0],[33,5],[32,2],[40,1,0],[33,6],[32,5],[32,6],[74],[4,127],[32,5],[65,0],[33,4],[5],[32,6],[65,0],[33,4],[11],[33,7],[65,0],[33,8],[3,64],[32,8],[32,7],[72],[4,64],[2,64],[32,0],[34,11],[40,1,0],[33,10],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[65,2],[108],[32,11],[106],[47,0,4],[65,0],[33,4],[11],[33,9],[32,2],[34,11],[40,1,0],[33,10],[32,3],[33,14],[2,127],[32,14],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[65,2],[108],[32,11],[106],[47,0,4],[65,0],[33,4],[11],[12,1],[11],[32,14],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[32,11],[106],[45,0,4],[65,0],[33,4],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `'charCodeAt' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,9],[32,13],[74],[4,64],[65,1],[65,0],[15],[11],[32,13],[32,9],[74],[4,64],[65,127],[65,0],[15],[11],[11],[32,8],[65,1],[106],[33,8],[12,1],[11],[11],[32,5],[32,6],[74],[4,64],[65,1],[65,0],[15],[11],[32,6],[32,5],[74],[4,64],[65,127],[65,0],[15],[11],[65,0],[65,0],[15]],
1833
+ params: [127,127,127,127], typedParams: 1,
1834
+ returns: [127,127], typedReturns: 1,
1835
+ locals: [127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","compareString","compareString#type","#last_type","thisLen","compareLen","maxLen","i","a","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","b","#typeswitch_tmp"],
1836
+ };
1837
+ this.__ByteString_prototype_localeCompare = {
1838
+ wasm: (scope, {builtin,internalThrow}) => [[32,2],[183],[32,3],[16, builtin('__ecma262_ToString')],[33,4],[252,2],[34,2],[32,4],[33,3],[26],[32,0],[40,1,0],[33,5],[32,2],[40,1,0],[33,6],[32,5],[32,6],[74],[4,127],[32,5],[65,0],[33,4],[5],[32,6],[65,0],[33,4],[11],[33,7],[65,0],[33,8],[3,64],[32,8],[32,7],[72],[4,64],[2,64],[32,0],[34,11],[40,1,0],[33,10],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[32,11],[106],[45,0,4],[65,0],[33,4],[11],[33,9],[32,2],[34,11],[40,1,0],[33,10],[32,3],[33,14],[2,127],[32,14],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[65,2],[108],[32,11],[106],[47,0,4],[65,0],[33,4],[11],[12,1],[11],[32,14],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[2,127],[32,8],[34,12],[32,10],[78],[4,64],[65,127],[12,1],[11],[32,12],[32,11],[106],[45,0,4],[65,0],[33,4],[11],[12,1],[11],...internalThrow(scope, 'TypeError', `'charCodeAt' proto func tried to be called on a type without an impl`),[11,"TYPESWITCH_end"],[33,13],[32,9],[32,13],[74],[4,64],[65,1],[65,0],[15],[11],[32,13],[32,9],[74],[4,64],[65,127],[65,0],[15],[11],[11],[32,8],[65,1],[106],[33,8],[12,1],[11],[11],[32,5],[32,6],[74],[4,64],[65,1],[65,0],[15],[11],[32,6],[32,5],[74],[4,64],[65,127],[65,0],[15],[11],[65,0],[65,0],[15]],
1839
+ params: [127,127,127,127], typedParams: 1,
1840
+ returns: [127,127], typedReturns: 1,
1841
+ locals: [127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","compareString","compareString#type","#last_type","thisLen","compareLen","maxLen","i","a","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","b","#typeswitch_tmp"],
1842
+ };
1843
+ this.__String_prototype_toWellFormed = {
1844
+ wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,3],[252,2],[33,2],[32,0],[32,2],[16, builtin('__Porffor_clone')],[32,2],[34,4],[32,2],[40,1,0],[65,2],[108],[106],[33,5],[3,64],[32,4],[32,5],[72],[4,64],[32,4],[47,0,4],[34,6],[65,128,184,3],[78],[32,6],[65,255,191,3],[76],[113],[4,64],[32,4],[65,253,255,3],[59,0,4],[11],[32,6],[65,128,176,3],[78],[32,6],[65,255,183,3],[76],[113],[4,64],[32,4],[65,2],[106],[32,5],[72],[4,127],[32,4],[65,2],[106],[47,0,4],[65,0],[33,3],[5],[65,0],[65,0],[33,3],[11],[34,7],[65,128,184,3],[78],[32,7],[65,255,191,3],[76],[113],[4,64],[32,4],[65,2],[106],[33,4],[5],[32,4],[65,253,255,3],[59,0,4],[11],[11],[32,4],[65,2],[106],[33,4],[12,1],[11],[11],[32,2],[65,194,0],[15]],
1845
+ params: [127,127], typedParams: 1,
1846
+ returns: [127,127], typedReturns: 1,
1847
+ locals: [127,127,127,127,127,127], localNames: ["_this","_this#type","out","#last_type","ptr","endPtr","c1","c2"],
1848
+ };
1849
+ this.__ByteString_prototype_toWellFormed = {
1850
+ wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,3],[252,2],[33,2],[32,0],[32,2],[16, builtin('__Porffor_clone')],[32,2],[65,194,1],[15]],
1851
+ params: [127,127], typedParams: 1,
1852
+ returns: [127,127], typedReturns: 1,
1853
+ locals: [127,127], localNames: ["_this","_this#type","out","#last_type"],
1854
+ };
1795
1855
  this.__String_prototype_toString = {
1796
1856
  wasm: (scope, {}) => [[32,0],[65,194,0],[15]],
1797
1857
  params: [127,127], typedParams: 1,
@@ -1954,7 +2014,7 @@ export const BuiltinFuncs = function() {
1954
2014
  locals: [124,124,127,127,124,124,127,127,127,127,127], localNames: ["_this","_this#type","searchElement","searchElement#type","position","position#type","len","i","#loadArray_offset","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end"],
1955
2015
  };
1956
2016
  this.__Uint8Array_prototype_with = {
1957
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[32,7],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[106],[32,4],[34,9],[252,3],[58,0,4],[65,0],[33,8],[32,7],[65,215,0],[15]],
2017
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[252,2],[32,7],[252,2],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[106],[32,4],[34,9],[252,3],[58,0,4],[65,0],[33,8],[32,7],[65,215,0],[15]],
1958
2018
  params: [124,127,124,127,124,127], typedParams: 1,
1959
2019
  returns: [124,127], typedReturns: 1,
1960
2020
  locals: [124,124,127,124,127], localNames: ["_this","_this#type","index","index#type","value","value#type","len","out","#last_type","#member_setter_val_tmp","#member_setter_ptr_tmp"],
@@ -1966,7 +2026,7 @@ export const BuiltinFuncs = function() {
1966
2026
  locals: [124,124,127,127,127], localNames: ["_this","_this#type","target","target#type","start","start#type","end","end#type","len","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#last_type"],
1967
2027
  };
1968
2028
  this.__Uint8Array_prototype_concat = {
1969
- wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[106],[45,0,4],[184],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,0],[65,1],[54,0,0],[65,0],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,0],[65,1],[54,0,0],[65,0],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[252,3],[58,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[106],[32,10],[34,14],[252,3],[58,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,215,0],[15]],
2029
+ wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[106],[45,0,4],[184],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,0],[65,1],[54,0,0],[65,0],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,0,0],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,0],[65,1],[54,0,0],[65,0],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,0,0],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[252,3],[58,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[106],[32,10],[34,14],[252,3],[58,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,215,0],[15]],
1970
2030
  params: [124,127,124,127], typedParams: 1,
1971
2031
  returns: [124,127], typedReturns: 1,
1972
2032
  locals: [124,127,124,127,127,127,124,127,124,124,124,127,127,127,124], localNames: ["_this","_this#type","vals","vals#type","out","#last_type","len","forof_base_pointer","forof_length","forof_counter","x","x#type","l","i","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#typeswitch_tmp","__length_setter_tmp"],
@@ -2094,7 +2154,7 @@ export const BuiltinFuncs = function() {
2094
2154
  locals: [124,124,124,124,127,124,124,127,127], localNames: ["_this","_this#type","len","start","end","out","#last_type","__length_setter_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset"],
2095
2155
  };
2096
2156
  this.__Uint8Array_prototype_toSorted = {
2097
- wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,4],[65,215,0],[32,2],[32,3],[16, builtin('__Uint8Array_prototype_sort')],[34,5],[15]],
2157
+ wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,4],[65,215,0],[32,2],[32,3],[16, builtin('__Uint8Array_prototype_sort')],[34,5],[15]],
2098
2158
  params: [124,127,124,127], typedParams: 1,
2099
2159
  returns: [124,127], typedReturns: 1,
2100
2160
  locals: [124,127], localNames: ["_this","_this#type","callbackFn","callbackFn#type","out","#last_type"],
@@ -2175,7 +2235,7 @@ export const BuiltinFuncs = function() {
2175
2235
  locals: [124,124,127,127,124,124,127,127,127,127,127], localNames: ["_this","_this#type","searchElement","searchElement#type","position","position#type","len","i","#loadArray_offset","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end"],
2176
2236
  };
2177
2237
  this.__Int8Array_prototype_with = {
2178
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[32,7],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[106],[32,4],[34,9],[252,2],[58,0,4],[65,0],[33,8],[32,7],[65,216,0],[15]],
2238
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[252,2],[32,7],[252,2],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[106],[32,4],[34,9],[252,2],[58,0,4],[65,0],[33,8],[32,7],[65,216,0],[15]],
2179
2239
  params: [124,127,124,127,124,127], typedParams: 1,
2180
2240
  returns: [124,127], typedReturns: 1,
2181
2241
  locals: [124,124,127,124,127], localNames: ["_this","_this#type","index","index#type","value","value#type","len","out","#last_type","#member_setter_val_tmp","#member_setter_ptr_tmp"],
@@ -2187,7 +2247,7 @@ export const BuiltinFuncs = function() {
2187
2247
  locals: [124,124,127,127,127], localNames: ["_this","_this#type","target","target#type","start","start#type","end","end#type","len","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#last_type"],
2188
2248
  };
2189
2249
  this.__Int8Array_prototype_concat = {
2190
- wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[106],[44,0,4],[183],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,188,1],[65,1],[54,0,0],[65,128,128,188,1],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,128,71,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,188,1],[65,1],[54,0,0],[65,128,128,188,1],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,128,71,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[252,2],[58,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[106],[32,10],[34,14],[252,2],[58,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,216,0],[15]],
2250
+ wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[106],[44,0,4],[183],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,188,1],[65,1],[54,0,0],[65,128,128,188,1],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,128,71,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,188,1],[65,1],[54,0,0],[65,128,128,188,1],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,128,71,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[252,2],[58,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[106],[32,10],[34,14],[252,2],[58,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,216,0],[15]],
2191
2251
  params: [124,127,124,127], typedParams: 1,
2192
2252
  returns: [124,127], typedReturns: 1,
2193
2253
  locals: [124,127,124,127,127,127,124,127,124,124,124,127,127,127,124], localNames: ["_this","_this#type","vals","vals#type","out","#last_type","len","forof_base_pointer","forof_length","forof_counter","x","x#type","l","i","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#typeswitch_tmp","__length_setter_tmp"],
@@ -2315,7 +2375,7 @@ export const BuiltinFuncs = function() {
2315
2375
  locals: [124,124,124,124,127,124,124,127,127], localNames: ["_this","_this#type","len","start","end","out","#last_type","__length_setter_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset"],
2316
2376
  };
2317
2377
  this.__Int8Array_prototype_toSorted = {
2318
- wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,4],[65,216,0],[32,2],[32,3],[16, builtin('__Int8Array_prototype_sort')],[34,5],[15]],
2378
+ wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,4],[65,216,0],[32,2],[32,3],[16, builtin('__Int8Array_prototype_sort')],[34,5],[15]],
2319
2379
  params: [124,127,124,127], typedParams: 1,
2320
2380
  returns: [124,127], typedReturns: 1,
2321
2381
  locals: [124,127], localNames: ["_this","_this#type","callbackFn","callbackFn#type","out","#last_type"],
@@ -2396,7 +2456,7 @@ export const BuiltinFuncs = function() {
2396
2456
  locals: [124,124,127,127,124,124,127,127,127,127,127], localNames: ["_this","_this#type","searchElement","searchElement#type","position","position#type","len","i","#loadArray_offset","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end"],
2397
2457
  };
2398
2458
  this.__Uint8ClampedArray_prototype_with = {
2399
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[32,7],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[106],[32,4],[34,9],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[65,0],[33,8],[32,7],[65,217,0],[15]],
2459
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[252,2],[32,7],[252,2],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[106],[32,4],[34,9],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[65,0],[33,8],[32,7],[65,217,0],[15]],
2400
2460
  params: [124,127,124,127,124,127], typedParams: 1,
2401
2461
  returns: [124,127], typedReturns: 1,
2402
2462
  locals: [124,124,127,124,127], localNames: ["_this","_this#type","index","index#type","value","value#type","len","out","#last_type","#member_setter_val_tmp","#member_setter_ptr_tmp"],
@@ -2408,7 +2468,7 @@ export const BuiltinFuncs = function() {
2408
2468
  locals: [124,124,127,127,127], localNames: ["_this","_this#type","target","target#type","start","start#type","end","end#type","len","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#last_type"],
2409
2469
  };
2410
2470
  this.__Uint8ClampedArray_prototype_concat = {
2411
- wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[106],[45,0,4],[184],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,140,3],[65,1],[54,0,0],[65,128,128,140,3],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,192,88,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,140,3],[65,1],[54,0,0],[65,128,128,140,3],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,192,88,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[106],[32,10],[34,14],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,217,0],[15]],
2471
+ wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[106],[45,0,4],[184],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,140,3],[65,1],[54,0,0],[65,128,128,140,3],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,192,88,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,140,3],[65,1],[54,0,0],[65,128,128,140,3],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,192,88,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[106],[32,10],[34,14],[68,0,0,0,0,0,0,0,0],[165],[68,0,0,0,0,0,224,111,64],[164],[252,3],[58,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,217,0],[15]],
2412
2472
  params: [124,127,124,127], typedParams: 1,
2413
2473
  returns: [124,127], typedReturns: 1,
2414
2474
  locals: [124,127,124,127,127,127,124,127,124,124,124,127,127,127,124], localNames: ["_this","_this#type","vals","vals#type","out","#last_type","len","forof_base_pointer","forof_length","forof_counter","x","x#type","l","i","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#typeswitch_tmp","__length_setter_tmp"],
@@ -2536,7 +2596,7 @@ export const BuiltinFuncs = function() {
2536
2596
  locals: [124,124,124,124,127,124,124,127,127], localNames: ["_this","_this#type","len","start","end","out","#last_type","__length_setter_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset"],
2537
2597
  };
2538
2598
  this.__Uint8ClampedArray_prototype_toSorted = {
2539
- wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,4],[65,217,0],[32,2],[32,3],[16, builtin('__Uint8ClampedArray_prototype_sort')],[34,5],[15]],
2599
+ wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,4],[65,217,0],[32,2],[32,3],[16, builtin('__Uint8ClampedArray_prototype_sort')],[34,5],[15]],
2540
2600
  params: [124,127,124,127], typedParams: 1,
2541
2601
  returns: [124,127], typedReturns: 1,
2542
2602
  locals: [124,127], localNames: ["_this","_this#type","callbackFn","callbackFn#type","out","#last_type"],
@@ -2617,7 +2677,7 @@ export const BuiltinFuncs = function() {
2617
2677
  locals: [124,124,127,127,124,124,127,127,127,127,127], localNames: ["_this","_this#type","searchElement","searchElement#type","position","position#type","len","i","#loadArray_offset","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end"],
2618
2678
  };
2619
2679
  this.__Uint16Array_prototype_with = {
2620
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[32,7],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[65,2],[108],[106],[32,4],[34,9],[252,3],[59,0,4],[65,0],[33,8],[32,7],[65,218,0],[15]],
2680
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[252,2],[32,7],[252,2],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[65,2],[108],[106],[32,4],[34,9],[252,3],[59,0,4],[65,0],[33,8],[32,7],[65,218,0],[15]],
2621
2681
  params: [124,127,124,127,124,127], typedParams: 1,
2622
2682
  returns: [124,127], typedReturns: 1,
2623
2683
  locals: [124,124,127,124,127], localNames: ["_this","_this#type","index","index#type","value","value#type","len","out","#last_type","#member_setter_val_tmp","#member_setter_ptr_tmp"],
@@ -2629,7 +2689,7 @@ export const BuiltinFuncs = function() {
2629
2689
  locals: [124,124,127,127,127], localNames: ["_this","_this#type","target","target#type","start","start#type","end","end#type","len","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#last_type"],
2630
2690
  };
2631
2691
  this.__Uint16Array_prototype_concat = {
2632
- wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,2],[108],[106],[47,0,4],[184],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,2],[108],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,232,4],[65,1],[54,0,0],[65,128,128,232,4],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,64,99,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,232,4],[65,1],[54,0,0],[65,128,128,232,4],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,64,99,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[252,3],[59,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,2],[108],[106],[32,10],[34,14],[252,3],[59,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,218,0],[15]],
2692
+ wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,2],[108],[106],[47,0,4],[184],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,2],[108],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,232,4],[65,1],[54,0,0],[65,128,128,232,4],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,64,99,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,232,4],[65,1],[54,0,0],[65,128,128,232,4],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,64,99,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[252,3],[59,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,2],[108],[106],[32,10],[34,14],[252,3],[59,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,218,0],[15]],
2633
2693
  params: [124,127,124,127], typedParams: 1,
2634
2694
  returns: [124,127], typedReturns: 1,
2635
2695
  locals: [124,127,124,127,127,127,124,127,124,124,124,127,127,127,124], localNames: ["_this","_this#type","vals","vals#type","out","#last_type","len","forof_base_pointer","forof_length","forof_counter","x","x#type","l","i","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#typeswitch_tmp","__length_setter_tmp"],
@@ -2757,7 +2817,7 @@ export const BuiltinFuncs = function() {
2757
2817
  locals: [124,124,124,124,127,124,124,127,127], localNames: ["_this","_this#type","len","start","end","out","#last_type","__length_setter_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset"],
2758
2818
  };
2759
2819
  this.__Uint16Array_prototype_toSorted = {
2760
- wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,4],[65,218,0],[32,2],[32,3],[16, builtin('__Uint16Array_prototype_sort')],[34,5],[15]],
2820
+ wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,4],[65,218,0],[32,2],[32,3],[16, builtin('__Uint16Array_prototype_sort')],[34,5],[15]],
2761
2821
  params: [124,127,124,127], typedParams: 1,
2762
2822
  returns: [124,127], typedReturns: 1,
2763
2823
  locals: [124,127], localNames: ["_this","_this#type","callbackFn","callbackFn#type","out","#last_type"],
@@ -2838,7 +2898,7 @@ export const BuiltinFuncs = function() {
2838
2898
  locals: [124,124,127,127,124,124,127,127,127,127,127], localNames: ["_this","_this#type","searchElement","searchElement#type","position","position#type","len","i","#loadArray_offset","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end"],
2839
2899
  };
2840
2900
  this.__Int16Array_prototype_with = {
2841
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[32,7],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[65,2],[108],[106],[32,4],[34,9],[252,2],[59,0,4],[65,0],[33,8],[32,7],[65,219,0],[15]],
2901
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[252,2],[32,7],[252,2],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[65,2],[108],[106],[32,4],[34,9],[252,2],[59,0,4],[65,0],[33,8],[32,7],[65,219,0],[15]],
2842
2902
  params: [124,127,124,127,124,127], typedParams: 1,
2843
2903
  returns: [124,127], typedReturns: 1,
2844
2904
  locals: [124,124,127,124,127], localNames: ["_this","_this#type","index","index#type","value","value#type","len","out","#last_type","#member_setter_val_tmp","#member_setter_ptr_tmp"],
@@ -2850,7 +2910,7 @@ export const BuiltinFuncs = function() {
2850
2910
  locals: [124,124,127,127,127], localNames: ["_this","_this#type","target","target#type","start","start#type","end","end#type","len","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#last_type"],
2851
2911
  };
2852
2912
  this.__Int16Array_prototype_concat = {
2853
- wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,2],[108],[106],[46,0,4],[183],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,2],[108],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,192,6],[65,1],[54,0,0],[65,128,128,192,6],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,106,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,192,6],[65,1],[54,0,0],[65,128,128,192,6],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,106,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[252,2],[59,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,2],[108],[106],[32,10],[34,14],[252,2],[59,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,219,0],[15]],
2913
+ wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,2],[108],[106],[46,0,4],[183],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,2],[108],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,192,6],[65,1],[54,0,0],[65,128,128,192,6],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,0,106,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,192,6],[65,1],[54,0,0],[65,128,128,192,6],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,0,106,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[252,2],[59,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,2],[108],[106],[32,10],[34,14],[252,2],[59,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,219,0],[15]],
2854
2914
  params: [124,127,124,127], typedParams: 1,
2855
2915
  returns: [124,127], typedReturns: 1,
2856
2916
  locals: [124,127,124,127,127,127,124,127,124,124,124,127,127,127,124], localNames: ["_this","_this#type","vals","vals#type","out","#last_type","len","forof_base_pointer","forof_length","forof_counter","x","x#type","l","i","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#typeswitch_tmp","__length_setter_tmp"],
@@ -2978,7 +3038,7 @@ export const BuiltinFuncs = function() {
2978
3038
  locals: [124,124,124,124,127,124,124,127,127], localNames: ["_this","_this#type","len","start","end","out","#last_type","__length_setter_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset"],
2979
3039
  };
2980
3040
  this.__Int16Array_prototype_toSorted = {
2981
- wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,4],[65,219,0],[32,2],[32,3],[16, builtin('__Int16Array_prototype_sort')],[34,5],[15]],
3041
+ wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,4],[65,219,0],[32,2],[32,3],[16, builtin('__Int16Array_prototype_sort')],[34,5],[15]],
2982
3042
  params: [124,127,124,127], typedParams: 1,
2983
3043
  returns: [124,127], typedReturns: 1,
2984
3044
  locals: [124,127], localNames: ["_this","_this#type","callbackFn","callbackFn#type","out","#last_type"],
@@ -3059,7 +3119,7 @@ export const BuiltinFuncs = function() {
3059
3119
  locals: [124,124,127,127,124,124,127,127,127,127,127], localNames: ["_this","_this#type","searchElement","searchElement#type","position","position#type","len","i","#loadArray_offset","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end"],
3060
3120
  };
3061
3121
  this.__Uint32Array_prototype_with = {
3062
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[32,7],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[65,4],[108],[106],[32,4],[34,9],[252,3],[54,0,4],[65,0],[33,8],[32,7],[65,220,0],[15]],
3122
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[252,2],[32,7],[252,2],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[65,4],[108],[106],[32,4],[34,9],[252,3],[54,0,4],[65,0],[33,8],[32,7],[65,220,0],[15]],
3063
3123
  params: [124,127,124,127,124,127], typedParams: 1,
3064
3124
  returns: [124,127], typedReturns: 1,
3065
3125
  locals: [124,124,127,124,127], localNames: ["_this","_this#type","index","index#type","value","value#type","len","out","#last_type","#member_setter_val_tmp","#member_setter_ptr_tmp"],
@@ -3071,7 +3131,7 @@ export const BuiltinFuncs = function() {
3071
3131
  locals: [124,124,127,127,127], localNames: ["_this","_this#type","target","target#type","start","start#type","end","end#type","len","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#last_type"],
3072
3132
  };
3073
3133
  this.__Uint32Array_prototype_concat = {
3074
- wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,4],[108],[106],[40,0,4],[184],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,4],[108],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,152,8],[65,1],[54,0,0],[65,128,128,152,8],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,96,112,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,152,8],[65,1],[54,0,0],[65,128,128,152,8],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,96,112,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[252,3],[54,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,4],[108],[106],[32,10],[34,14],[252,3],[54,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,220,0],[15]],
3134
+ wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,4],[108],[106],[40,0,4],[184],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,4],[108],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,152,8],[65,1],[54,0,0],[65,128,128,152,8],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,96,112,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,152,8],[65,1],[54,0,0],[65,128,128,152,8],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,96,112,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[252,3],[54,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,4],[108],[106],[32,10],[34,14],[252,3],[54,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,220,0],[15]],
3075
3135
  params: [124,127,124,127], typedParams: 1,
3076
3136
  returns: [124,127], typedReturns: 1,
3077
3137
  locals: [124,127,124,127,127,127,124,127,124,124,124,127,127,127,124], localNames: ["_this","_this#type","vals","vals#type","out","#last_type","len","forof_base_pointer","forof_length","forof_counter","x","x#type","l","i","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#typeswitch_tmp","__length_setter_tmp"],
@@ -3199,7 +3259,7 @@ export const BuiltinFuncs = function() {
3199
3259
  locals: [124,124,124,124,127,124,124,127,127], localNames: ["_this","_this#type","len","start","end","out","#last_type","__length_setter_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset"],
3200
3260
  };
3201
3261
  this.__Uint32Array_prototype_toSorted = {
3202
- wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,4],[65,220,0],[32,2],[32,3],[16, builtin('__Uint32Array_prototype_sort')],[34,5],[15]],
3262
+ wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,4],[65,220,0],[32,2],[32,3],[16, builtin('__Uint32Array_prototype_sort')],[34,5],[15]],
3203
3263
  params: [124,127,124,127], typedParams: 1,
3204
3264
  returns: [124,127], typedReturns: 1,
3205
3265
  locals: [124,127], localNames: ["_this","_this#type","callbackFn","callbackFn#type","out","#last_type"],
@@ -3280,7 +3340,7 @@ export const BuiltinFuncs = function() {
3280
3340
  locals: [124,124,127,127,124,124,127,127,127,127,127], localNames: ["_this","_this#type","searchElement","searchElement#type","position","position#type","len","i","#loadArray_offset","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end"],
3281
3341
  };
3282
3342
  this.__Int32Array_prototype_with = {
3283
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[32,7],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[65,4],[108],[106],[32,4],[34,9],[252,2],[54,0,4],[65,0],[33,8],[32,7],[65,221,0],[15]],
3343
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[252,2],[32,7],[252,2],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[65,4],[108],[106],[32,4],[34,9],[252,2],[54,0,4],[65,0],[33,8],[32,7],[65,221,0],[15]],
3284
3344
  params: [124,127,124,127,124,127], typedParams: 1,
3285
3345
  returns: [124,127], typedReturns: 1,
3286
3346
  locals: [124,124,127,124,127], localNames: ["_this","_this#type","index","index#type","value","value#type","len","out","#last_type","#member_setter_val_tmp","#member_setter_ptr_tmp"],
@@ -3292,7 +3352,7 @@ export const BuiltinFuncs = function() {
3292
3352
  locals: [124,124,127,127,127], localNames: ["_this","_this#type","target","target#type","start","start#type","end","end#type","len","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#last_type"],
3293
3353
  };
3294
3354
  this.__Int32Array_prototype_concat = {
3295
- wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,4],[108],[106],[40,0,4],[183],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,4],[108],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,240,9],[65,1],[54,0,0],[65,128,128,240,9],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,192,115,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,240,9],[65,1],[54,0,0],[65,128,128,240,9],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,192,115,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[252,2],[54,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,4],[108],[106],[32,10],[34,14],[252,2],[54,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,221,0],[15]],
3355
+ wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,4],[108],[106],[40,0,4],[183],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,4],[108],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,240,9],[65,1],[54,0,0],[65,128,128,240,9],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,192,115,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,240,9],[65,1],[54,0,0],[65,128,128,240,9],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,192,115,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[252,2],[54,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,4],[108],[106],[32,10],[34,14],[252,2],[54,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,221,0],[15]],
3296
3356
  params: [124,127,124,127], typedParams: 1,
3297
3357
  returns: [124,127], typedReturns: 1,
3298
3358
  locals: [124,127,124,127,127,127,124,127,124,124,124,127,127,127,124], localNames: ["_this","_this#type","vals","vals#type","out","#last_type","len","forof_base_pointer","forof_length","forof_counter","x","x#type","l","i","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#typeswitch_tmp","__length_setter_tmp"],
@@ -3420,7 +3480,7 @@ export const BuiltinFuncs = function() {
3420
3480
  locals: [124,124,124,124,127,124,124,127,127], localNames: ["_this","_this#type","len","start","end","out","#last_type","__length_setter_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset"],
3421
3481
  };
3422
3482
  this.__Int32Array_prototype_toSorted = {
3423
- wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,4],[65,221,0],[32,2],[32,3],[16, builtin('__Int32Array_prototype_sort')],[34,5],[15]],
3483
+ wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,4],[65,221,0],[32,2],[32,3],[16, builtin('__Int32Array_prototype_sort')],[34,5],[15]],
3424
3484
  params: [124,127,124,127], typedParams: 1,
3425
3485
  returns: [124,127], typedReturns: 1,
3426
3486
  locals: [124,127], localNames: ["_this","_this#type","callbackFn","callbackFn#type","out","#last_type"],
@@ -3501,7 +3561,7 @@ export const BuiltinFuncs = function() {
3501
3561
  locals: [124,124,127,127,124,124,127,127,127,127,127], localNames: ["_this","_this#type","searchElement","searchElement#type","position","position#type","len","i","#loadArray_offset","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end"],
3502
3562
  };
3503
3563
  this.__Float32Array_prototype_with = {
3504
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[32,7],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[65,4],[108],[106],[32,4],[34,9],[182],[56,0,4],[65,0],[33,8],[32,7],[65,222,0],[15]],
3564
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[252,2],[32,7],[252,2],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[65,4],[108],[106],[32,4],[34,9],[182],[56,0,4],[65,0],[33,8],[32,7],[65,222,0],[15]],
3505
3565
  params: [124,127,124,127,124,127], typedParams: 1,
3506
3566
  returns: [124,127], typedReturns: 1,
3507
3567
  locals: [124,124,127,124,127], localNames: ["_this","_this#type","index","index#type","value","value#type","len","out","#last_type","#member_setter_val_tmp","#member_setter_ptr_tmp"],
@@ -3513,7 +3573,7 @@ export const BuiltinFuncs = function() {
3513
3573
  locals: [124,124,127,127,127], localNames: ["_this","_this#type","target","target#type","start","start#type","end","end#type","len","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#last_type"],
3514
3574
  };
3515
3575
  this.__Float32Array_prototype_concat = {
3516
- wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,4],[108],[106],[42,0,4],[187],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,4],[108],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,200,11],[65,1],[54,0,0],[65,128,128,200,11],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,32,119,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,200,11],[65,1],[54,0,0],[65,128,128,200,11],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,32,119,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[182],[56,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,4],[108],[106],[32,10],[34,14],[182],[56,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,222,0],[15]],
3576
+ wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,4],[108],[106],[42,0,4],[187],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,4],[108],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,200,11],[65,1],[54,0,0],[65,128,128,200,11],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,32,119,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,200,11],[65,1],[54,0,0],[65,128,128,200,11],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,32,119,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[182],[56,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,4],[108],[106],[32,10],[34,14],[182],[56,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,222,0],[15]],
3517
3577
  params: [124,127,124,127], typedParams: 1,
3518
3578
  returns: [124,127], typedReturns: 1,
3519
3579
  locals: [124,127,124,127,127,127,124,127,124,124,124,127,127,127,124], localNames: ["_this","_this#type","vals","vals#type","out","#last_type","len","forof_base_pointer","forof_length","forof_counter","x","x#type","l","i","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#typeswitch_tmp","__length_setter_tmp"],
@@ -3641,7 +3701,7 @@ export const BuiltinFuncs = function() {
3641
3701
  locals: [124,124,124,124,127,124,124,127,127], localNames: ["_this","_this#type","len","start","end","out","#last_type","__length_setter_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset"],
3642
3702
  };
3643
3703
  this.__Float32Array_prototype_toSorted = {
3644
- wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,4],[65,222,0],[32,2],[32,3],[16, builtin('__Float32Array_prototype_sort')],[34,5],[15]],
3704
+ wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,4],[65,222,0],[32,2],[32,3],[16, builtin('__Float32Array_prototype_sort')],[34,5],[15]],
3645
3705
  params: [124,127,124,127], typedParams: 1,
3646
3706
  returns: [124,127], typedReturns: 1,
3647
3707
  locals: [124,127], localNames: ["_this","_this#type","callbackFn","callbackFn#type","out","#last_type"],
@@ -3722,7 +3782,7 @@ export const BuiltinFuncs = function() {
3722
3782
  locals: [124,124,127,127,124,124,127,127,127,127,127], localNames: ["_this","_this#type","searchElement","searchElement#type","position","position#type","len","i","#loadArray_offset","#last_type","__tmpop_left","__tmpop_right","compare_left_pointer","compare_left_length","compare_right_pointer","compare_index","compare_index_end"],
3723
3783
  };
3724
3784
  this.__Float64Array_prototype_with = {
3725
- wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[32,7],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[65,8],[108],[106],[32,4],[34,9],[57,0,4],[65,0],[33,8],[32,7],[65,223,0],[15]],
3785
+ wasm: (scope, {builtin,internalThrow}) => [[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],[32,6],[32,2],[160],[34,2],[68,0,0,0,0,0,0,0,0],[99],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[11],[32,2],[32,6],[100],[4,64],...internalThrow(scope, 'RangeError', `Invalid index`),[11],[16, builtin('__Porffor_allocate')],[33,8],[33,7],[32,0],[252,2],[32,7],[252,2],[16, builtin('__Porffor_clone')],[32,7],[252,3],[40,0,4],[32,2],[252,3],[65,8],[108],[106],[32,4],[34,9],[57,0,4],[65,0],[33,8],[32,7],[65,223,0],[15]],
3726
3786
  params: [124,127,124,127,124,127], typedParams: 1,
3727
3787
  returns: [124,127], typedReturns: 1,
3728
3788
  locals: [124,124,127,124,127], localNames: ["_this","_this#type","index","index#type","value","value#type","len","out","#last_type","#member_setter_val_tmp","#member_setter_ptr_tmp"],
@@ -3734,7 +3794,7 @@ export const BuiltinFuncs = function() {
3734
3794
  locals: [124,124,127,127,127], localNames: ["_this","_this#type","target","target#type","start","start#type","end","end#type","len","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#last_type"],
3735
3795
  };
3736
3796
  this.__Float64Array_prototype_concat = {
3737
- wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,8],[108],[106],[43,0,4],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,8],[108],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,160,13],[65,1],[54,0,0],[65,128,128,160,13],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,128,122,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,160,13],[65,1],[54,0,0],[65,128,128,160,13],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,128,122,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[57,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,8],[108],[106],[32,10],[34,14],[57,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,223,0],[15]],
3797
+ wasm: (scope, {builtin,internalThrow}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,0],[252,3],[40,1,0],[184],[33,6],[32,2],[252,3],[33,7],[65,0],[33,9],[32,7],[40,1,0],[33,8],[65,0],[33,11],[3,64],[32,7],[40,0,4],[32,9],[65,8],[108],[106],[43,0,4],[33,10],[2,64],[2,64],[32,10],[32,11],[16, builtin('__Porffor_rawType')],[68,0,0,0,0,0,0,80,64],[16, builtin('f64_&')],[252,3],[4,64],[32,10],[252,3],[40,1,0],[184],[33,12],[68,0,0,0,0,0,0,0,0],[33,13],[3,64],[32,13],[32,12],[99],[4,64],[2,64],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,8],[108],[106],[32,11],[33,17],[2,124],[32,17],[65,194,0],[70],[4,64,"TYPESWITCH|String"],[65,128,128,160,13],[65,1],[54,0,0],[65,128,128,160,13],[32,13],[252,3],[65,2],[108],[32,10],[252,3],[106],[47,0,4],[59,0,4],[68,0,0,0,0,0,128,122,65],[65,194,0],[33,5],[12,1],[11],[32,17],[65,208,0],[70],[4,64,"TYPESWITCH|Array"],[32,13],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,16],[43,0,4],[32,16],[45,0,12],[33,5],[12,1],[11],[32,17],[65,215,0],[70],[4,64,"TYPESWITCH|Uint8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,216,0],[70],[4,64,"TYPESWITCH|Int8Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[44,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,217,0],[70],[4,64,"TYPESWITCH|Uint8ClampedArray"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[106],[45,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,218,0],[70],[4,64,"TYPESWITCH|Uint16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[47,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,219,0],[70],[4,64,"TYPESWITCH|Int16Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,2],[108],[106],[46,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,220,0],[70],[4,64,"TYPESWITCH|Uint32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[184],[65,0],[33,5],[12,1],[11],[32,17],[65,221,0],[70],[4,64,"TYPESWITCH|Int32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[40,0,4],[183],[65,0],[33,5],[12,1],[11],[32,17],[65,222,0],[70],[4,64,"TYPESWITCH|Float32Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,4],[108],[106],[42,0,4],[187],[65,0],[33,5],[12,1],[11],[32,17],[65,223,0],[70],[4,64,"TYPESWITCH|Float64Array"],[32,10],[252,3],[40,0,4],[32,13],[252,3],[65,8],[108],[106],[43,0,4],[65,0],[33,5],[12,1],[11],[32,17],[65,194,1],[70],[4,64,"TYPESWITCH|ByteString"],[65,128,128,160,13],[65,1],[54,0,0],[65,128,128,160,13],[32,13],[252,3],[32,10],[252,3],[106],[45,0,4],[58,0,4],[68,0,0,0,0,0,128,122,65],[65,194,1],[33,5],[12,1],[11],...internalThrow(scope, 'TypeError', `Member expression is not supported for non-string non-array yet`),[68,0,0,0,0,0,0,0,0],[11,"TYPESWITCH_end"],[34,14],[57,0,4],[65,0],[33,5],[11],[32,13],[68,0,0,0,0,0,0,240,63],[160],[33,13],[12,1],[11],[11],[5],[32,4],[252,3],[40,0,4],[32,6],[32,6],[68,0,0,0,0,0,0,240,63],[160],[33,6],[252,3],[65,8],[108],[106],[32,10],[34,14],[57,0,4],[65,0],[33,5],[11],[11],[32,9],[65,1],[106],[34,9],[32,8],[71],[13,1],[11],[11],[32,4],[252,3],[32,6],[34,18],[252,3],[54,1,0],[32,4],[65,223,0],[15]],
3738
3798
  params: [124,127,124,127], typedParams: 1,
3739
3799
  returns: [124,127], typedReturns: 1,
3740
3800
  locals: [124,127,124,127,127,127,124,127,124,124,124,127,127,127,124], localNames: ["_this","_this#type","vals","vals#type","out","#last_type","len","forof_base_pointer","forof_length","forof_counter","x","x#type","l","i","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset","#typeswitch_tmp","__length_setter_tmp"],
@@ -3862,7 +3922,7 @@ export const BuiltinFuncs = function() {
3862
3922
  locals: [124,124,124,124,127,124,124,127,127], localNames: ["_this","_this#type","len","start","end","out","#last_type","__length_setter_tmp","#member_setter_val_tmp","#member_setter_ptr_tmp","#loadArray_offset"],
3863
3923
  };
3864
3924
  this.__Float64Array_prototype_toSorted = {
3865
- wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[32,4],[16, builtin('__Porffor_clone')],[32,4],[65,223,0],[32,2],[32,3],[16, builtin('__Float64Array_prototype_sort')],[34,5],[15]],
3925
+ wasm: (scope, {builtin}) => [[16, builtin('__Porffor_allocate')],[33,5],[33,4],[32,0],[252,2],[32,4],[252,2],[16, builtin('__Porffor_clone')],[32,4],[65,223,0],[32,2],[32,3],[16, builtin('__Float64Array_prototype_sort')],[34,5],[15]],
3866
3926
  params: [124,127,124,127], typedParams: 1,
3867
3927
  returns: [124,127], typedReturns: 1,
3868
3928
  locals: [124,127], localNames: ["_this","_this#type","callbackFn","callbackFn#type","out","#last_type"],
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "porffor",
3
3
  "description": "a basic experimental wip aot optimizing js -> wasm engine/compiler/runtime in js",
4
- "version": "0.18.37+16950ed91",
4
+ "version": "0.18.39+f5d564e78",
5
5
  "author": "CanadaHonk",
6
6
  "license": "MIT",
7
7
  "scripts": {},
package/runner/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import fs from 'node:fs';
3
- globalThis.version = '0.18.37+16950ed91';
3
+ globalThis.version = '0.18.39+f5d564e78';
4
4
 
5
5
  // deno compat
6
6
  if (typeof process === 'undefined' && typeof Deno !== 'undefined') {