porffor 0.18.37 → 0.18.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiler/builtins/set.ts +65 -2
- package/compiler/generated_builtins.js +37 -1
- package/package.json +1 -1
- package/runner/index.js +1 -1
package/compiler/builtins/set.ts
CHANGED
@@ -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
|
-
|
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;
|
@@ -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', `
|
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,
|
package/package.json
CHANGED