porffor 0.18.36 → 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.
@@ -7,7 +7,6 @@ export const __String_prototype_${a0} = (_this: string) => {
|
|
7
7
|
let out: string = Porffor.s\`<${a1}>\`;
|
8
8
|
|
9
9
|
let outPtr: i32 = Porffor.wasm\`local.get \${out}\` + ${(2 + a1.length) * 2};
|
10
|
-
|
11
10
|
let thisPtr: i32 = Porffor.wasm\`local.get \${_this}\`;
|
12
11
|
let thisLen: i32 = _this.length;
|
13
12
|
let endPtr: i32 = thisPtr + thisLen * 2;
|
@@ -35,7 +34,6 @@ export const __ByteString_prototype_${a0} = (_this: bytestring) => {
|
|
35
34
|
let out: bytestring = Porffor.bs\`<${a1}>\`;
|
36
35
|
|
37
36
|
let outPtr: i32 = Porffor.wasm\`local.get \${out}\` + ${2 + a1.length};
|
38
|
-
|
39
37
|
let thisPtr: i32 = Porffor.wasm\`local.get \${_this}\`;
|
40
38
|
let thisLen: i32 = _this.length;
|
41
39
|
let endPtr: i32 = thisPtr + thisLen;
|
@@ -68,5 +66,76 @@ ${[...a1].map((x, i) => ` Porffor.wasm.i32.store8(outPtr, ${x.charCodeAt(0)}, 0
|
|
68
66
|
noArgs('sub', 'sub');
|
69
67
|
noArgs('sup', 'sup');
|
70
68
|
|
69
|
+
const arg = (name, s1, s2) => out += `
|
70
|
+
export const __String_prototype_${name} = (_this: string, arg: any) => {
|
71
|
+
let out: string = Porffor.s\`${`<${s1} ${s2}="`}\`;
|
72
|
+
out += arg;
|
73
|
+
|
74
|
+
let outPtr: i32 = Porffor.wasm\`local.get \${out}\` + ${(`<${s1} ${s2}="`.length + 2) * 2} + arg.length * 2;
|
75
|
+
|
76
|
+
Porffor.wasm.i32.store16(outPtr, 34, 0, 0); // "
|
77
|
+
Porffor.wasm.i32.store16(outPtr, 62, 0, 2); // >
|
78
|
+
|
79
|
+
let thisPtr: i32 = Porffor.wasm\`local.get \${_this}\`;
|
80
|
+
let thisLen: i32 = _this.length;
|
81
|
+
let endPtr: i32 = thisPtr + thisLen * 2;
|
82
|
+
|
83
|
+
while (thisPtr < endPtr) {
|
84
|
+
let chr: i32 = Porffor.wasm.i32.load16_u(thisPtr, 0, 4);
|
85
|
+
Porffor.wasm.i32.store16(outPtr, chr, 0, 4);
|
86
|
+
|
87
|
+
thisPtr += 2;
|
88
|
+
outPtr += 2;
|
89
|
+
}
|
90
|
+
|
91
|
+
Porffor.wasm.i32.store16(outPtr, 60, 0, 4); // <
|
92
|
+
Porffor.wasm.i32.store16(outPtr, 47, 0, 6); // /
|
93
|
+
|
94
|
+
${[...s1].map((x, i) => ` Porffor.wasm.i32.store16(outPtr, ${x.charCodeAt(0)}, 0, ${8 + i * 2}); // ${x}`).join('\n')}
|
95
|
+
|
96
|
+
Porffor.wasm.i32.store16(outPtr, 62, 0, ${8 + s1.length * 2}); // >
|
97
|
+
|
98
|
+
out.length = thisLen + arg.length + ${`<${s1} ${s2}="`.length + s1.length + 5};
|
99
|
+
|
100
|
+
return out;
|
101
|
+
};
|
102
|
+
export const __ByteString_prototype_${name} = (_this: bytestring, arg: any) => {
|
103
|
+
let out: string = Porffor.s\`${`<${s1} ${s2}="`}\`;
|
104
|
+
out += arg;
|
105
|
+
|
106
|
+
let outPtr: i32 = Porffor.wasm\`local.get \${out}\` + ${(`<${s1} ${s2}="`.length + 2) * 2} + arg.length * 2;
|
107
|
+
|
108
|
+
Porffor.wasm.i32.store16(outPtr, 34, 0, 0); // "
|
109
|
+
Porffor.wasm.i32.store16(outPtr, 62, 0, 2); // >
|
110
|
+
|
111
|
+
let thisPtr: i32 = Porffor.wasm\`local.get \${_this}\`;
|
112
|
+
let thisLen: i32 = _this.length;
|
113
|
+
let endPtr: i32 = thisPtr + thisLen;
|
114
|
+
|
115
|
+
while (thisPtr < endPtr) {
|
116
|
+
let chr: i32 = Porffor.wasm.i32.load8_u(thisPtr++, 0, 4);
|
117
|
+
Porffor.wasm.i32.store16(outPtr, chr, 0, 4);
|
118
|
+
|
119
|
+
outPtr += 2;
|
120
|
+
}
|
121
|
+
|
122
|
+
Porffor.wasm.i32.store16(outPtr, 60, 0, 4); // <
|
123
|
+
Porffor.wasm.i32.store16(outPtr, 47, 0, 6); // /
|
124
|
+
|
125
|
+
${[...s1].map((x, i) => ` Porffor.wasm.i32.store16(outPtr, ${x.charCodeAt(0)}, 0, ${8 + i * 2}); // ${x}`).join('\n')}
|
126
|
+
|
127
|
+
Porffor.wasm.i32.store16(outPtr, 62, 0, ${8 + s1.length * 2}); // >
|
128
|
+
|
129
|
+
out.length = thisLen + arg.length + ${`<${s1} ${s2}="`.length + s1.length + 5};
|
130
|
+
|
131
|
+
return out;
|
132
|
+
};
|
133
|
+
`;
|
134
|
+
|
135
|
+
arg('fontcolor', 'font', 'color');
|
136
|
+
arg('fontsize', 'font', 'size');
|
137
|
+
arg('anchor', 'a', 'name');
|
138
|
+
arg('link', 'a', 'href');
|
139
|
+
|
71
140
|
return out;
|
72
141
|
};
|
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;
|
@@ -128,6 +128,62 @@ export const BuiltinFuncs = function() {
|
|
128
128
|
locals: [127,127,127,127,127,127,127], localNames: ["_this","_this#type","out","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
|
129
129
|
data: [[0,[5,0,0,0,60,115,117,112,62]]],
|
130
130
|
};
|
131
|
+
this.__String_prototype_fontcolor = {
|
132
|
+
wasm: (scope, {allocPage,builtin}) => [...number(allocPage(scope, 'string: __String_prototype_fontcolor/out', 'i16') * pageSize, 127),[34,4],[32,2],[33,5],[33,8],[65,1],[64,0],[65,128,128,4],[108],[34,9],[32,8],[40,0,0],[34,7],[32,5],[40,0,0],[34,6],[106],[54,1,0],[65,194,0],[65,194,1],[70],[4,64],[32,8],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[32,3],[65,194,1],[70],[4,64],[32,5],[32,6],[16, builtin('__Porffor_bytestringToString')],[33,5],[11],[32,9],[65,4],[106],[32,8],[65,4],[106],[65,252,255,3],[252,10,0,0],[32,9],[65,4],[106],[32,7],[65,2],[108],[106],[32,5],[65,4],[106],[32,6],[65,2],[108],[252,10,0,0],[32,9],[34,4],[65,30],[106],[32,2],[40,1,0],[65,2],[108],[106],[34,11],[65,34],[59,0,0],[32,11],[65,62],[59,0,2],[32,0],[33,12],[32,0],[40,1,0],[33,13],[32,12],[32,13],[65,2],[108],[106],[33,14],[3,64],[32,12],[32,14],[72],[4,64],[32,12],[47,0,4],[33,15],[32,11],[32,15],[59,0,4],[32,12],[65,2],[106],[33,12],[32,11],[65,2],[106],[33,11],[12,1],[11],[11],[32,11],[65,60],[59,0,4],[32,11],[65,47],[59,0,6],[32,11],[65,230,0],[59,0,8],[32,11],[65,239,0],[59,0,10],[32,11],[65,238,0],[59,0,12],[32,11],[65,244,0],[59,0,14],[32,11],[65,62],[59,0,16],[32,4],[32,13],[32,2],[40,1,0],[106],[65,22],[106],[34,16],[54,1,0],[32,4],[65,194,0],[15]],
|
133
|
+
params: [127,127,127,127], typedParams: 1,
|
134
|
+
returns: [127,127], typedReturns: 1,
|
135
|
+
locals: [127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","arg","arg#type","out","concat_right_pointer","concat_right_length","concat_left_length","concat_left_pointer","concat_out_pointer","#last_type","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
|
136
|
+
data: [[0,[13,0,0,0,60,0,102,0,111,0,110,0,116,0,32,0,99,0,111,0,108,0,111,0,114,0,61,0,34,0]]],
|
137
|
+
};
|
138
|
+
this.__ByteString_prototype_fontcolor = {
|
139
|
+
wasm: (scope, {allocPage,builtin}) => [...number(allocPage(scope, 'string: __ByteString_prototype_fontcolor/out', 'i16') * pageSize, 127),[34,4],[32,2],[33,5],[33,8],[65,1],[64,0],[65,128,128,4],[108],[34,9],[32,8],[40,0,0],[34,7],[32,5],[40,0,0],[34,6],[106],[54,1,0],[65,194,0],[65,194,1],[70],[4,64],[32,8],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[32,3],[65,194,1],[70],[4,64],[32,5],[32,6],[16, builtin('__Porffor_bytestringToString')],[33,5],[11],[32,9],[65,4],[106],[32,8],[65,4],[106],[65,252,255,3],[252,10,0,0],[32,9],[65,4],[106],[32,7],[65,2],[108],[106],[32,5],[65,4],[106],[32,6],[65,2],[108],[252,10,0,0],[32,9],[34,4],[65,30],[106],[32,2],[40,1,0],[65,2],[108],[106],[34,11],[65,34],[59,0,0],[32,11],[65,62],[59,0,2],[32,0],[33,12],[32,0],[40,1,0],[33,13],[32,12],[32,13],[106],[33,14],[3,64],[32,12],[32,14],[72],[4,64],[32,12],[32,12],[65,1],[106],[33,12],[45,0,4],[33,15],[32,11],[32,15],[59,0,4],[32,11],[65,2],[106],[33,11],[12,1],[11],[11],[32,11],[65,60],[59,0,4],[32,11],[65,47],[59,0,6],[32,11],[65,230,0],[59,0,8],[32,11],[65,239,0],[59,0,10],[32,11],[65,238,0],[59,0,12],[32,11],[65,244,0],[59,0,14],[32,11],[65,62],[59,0,16],[32,4],[32,13],[32,2],[40,1,0],[106],[65,22],[106],[34,16],[54,1,0],[32,4],[65,194,0],[15]],
|
140
|
+
params: [127,127,127,127], typedParams: 1,
|
141
|
+
returns: [127,127], typedReturns: 1,
|
142
|
+
locals: [127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","arg","arg#type","out","concat_right_pointer","concat_right_length","concat_left_length","concat_left_pointer","concat_out_pointer","#last_type","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
|
143
|
+
data: [[0,[13,0,0,0,60,0,102,0,111,0,110,0,116,0,32,0,99,0,111,0,108,0,111,0,114,0,61,0,34,0]]],
|
144
|
+
};
|
145
|
+
this.__String_prototype_fontsize = {
|
146
|
+
wasm: (scope, {allocPage,builtin}) => [...number(allocPage(scope, 'string: __String_prototype_fontsize/out', 'i16') * pageSize, 127),[34,4],[32,2],[33,5],[33,8],[65,1],[64,0],[65,128,128,4],[108],[34,9],[32,8],[40,0,0],[34,7],[32,5],[40,0,0],[34,6],[106],[54,1,0],[65,194,0],[65,194,1],[70],[4,64],[32,8],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[32,3],[65,194,1],[70],[4,64],[32,5],[32,6],[16, builtin('__Porffor_bytestringToString')],[33,5],[11],[32,9],[65,4],[106],[32,8],[65,4],[106],[65,252,255,3],[252,10,0,0],[32,9],[65,4],[106],[32,7],[65,2],[108],[106],[32,5],[65,4],[106],[32,6],[65,2],[108],[252,10,0,0],[32,9],[34,4],[65,28],[106],[32,2],[40,1,0],[65,2],[108],[106],[34,11],[65,34],[59,0,0],[32,11],[65,62],[59,0,2],[32,0],[33,12],[32,0],[40,1,0],[33,13],[32,12],[32,13],[65,2],[108],[106],[33,14],[3,64],[32,12],[32,14],[72],[4,64],[32,12],[47,0,4],[33,15],[32,11],[32,15],[59,0,4],[32,12],[65,2],[106],[33,12],[32,11],[65,2],[106],[33,11],[12,1],[11],[11],[32,11],[65,60],[59,0,4],[32,11],[65,47],[59,0,6],[32,11],[65,230,0],[59,0,8],[32,11],[65,239,0],[59,0,10],[32,11],[65,238,0],[59,0,12],[32,11],[65,244,0],[59,0,14],[32,11],[65,62],[59,0,16],[32,4],[32,13],[32,2],[40,1,0],[106],[65,21],[106],[34,16],[54,1,0],[32,4],[65,194,0],[15]],
|
147
|
+
params: [127,127,127,127], typedParams: 1,
|
148
|
+
returns: [127,127], typedReturns: 1,
|
149
|
+
locals: [127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","arg","arg#type","out","concat_right_pointer","concat_right_length","concat_left_length","concat_left_pointer","concat_out_pointer","#last_type","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
|
150
|
+
data: [[0,[12,0,0,0,60,0,102,0,111,0,110,0,116,0,32,0,115,0,105,0,122,0,101,0,61,0,34,0]]],
|
151
|
+
};
|
152
|
+
this.__ByteString_prototype_fontsize = {
|
153
|
+
wasm: (scope, {allocPage,builtin}) => [...number(allocPage(scope, 'string: __ByteString_prototype_fontsize/out', 'i16') * pageSize, 127),[34,4],[32,2],[33,5],[33,8],[65,1],[64,0],[65,128,128,4],[108],[34,9],[32,8],[40,0,0],[34,7],[32,5],[40,0,0],[34,6],[106],[54,1,0],[65,194,0],[65,194,1],[70],[4,64],[32,8],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[32,3],[65,194,1],[70],[4,64],[32,5],[32,6],[16, builtin('__Porffor_bytestringToString')],[33,5],[11],[32,9],[65,4],[106],[32,8],[65,4],[106],[65,252,255,3],[252,10,0,0],[32,9],[65,4],[106],[32,7],[65,2],[108],[106],[32,5],[65,4],[106],[32,6],[65,2],[108],[252,10,0,0],[32,9],[34,4],[65,28],[106],[32,2],[40,1,0],[65,2],[108],[106],[34,11],[65,34],[59,0,0],[32,11],[65,62],[59,0,2],[32,0],[33,12],[32,0],[40,1,0],[33,13],[32,12],[32,13],[106],[33,14],[3,64],[32,12],[32,14],[72],[4,64],[32,12],[32,12],[65,1],[106],[33,12],[45,0,4],[33,15],[32,11],[32,15],[59,0,4],[32,11],[65,2],[106],[33,11],[12,1],[11],[11],[32,11],[65,60],[59,0,4],[32,11],[65,47],[59,0,6],[32,11],[65,230,0],[59,0,8],[32,11],[65,239,0],[59,0,10],[32,11],[65,238,0],[59,0,12],[32,11],[65,244,0],[59,0,14],[32,11],[65,62],[59,0,16],[32,4],[32,13],[32,2],[40,1,0],[106],[65,21],[106],[34,16],[54,1,0],[32,4],[65,194,0],[15]],
|
154
|
+
params: [127,127,127,127], typedParams: 1,
|
155
|
+
returns: [127,127], typedReturns: 1,
|
156
|
+
locals: [127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","arg","arg#type","out","concat_right_pointer","concat_right_length","concat_left_length","concat_left_pointer","concat_out_pointer","#last_type","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
|
157
|
+
data: [[0,[12,0,0,0,60,0,102,0,111,0,110,0,116,0,32,0,115,0,105,0,122,0,101,0,61,0,34,0]]],
|
158
|
+
};
|
159
|
+
this.__String_prototype_anchor = {
|
160
|
+
wasm: (scope, {allocPage,builtin}) => [...number(allocPage(scope, 'string: __String_prototype_anchor/out', 'i16') * pageSize, 127),[34,4],[32,2],[33,5],[33,8],[65,1],[64,0],[65,128,128,4],[108],[34,9],[32,8],[40,0,0],[34,7],[32,5],[40,0,0],[34,6],[106],[54,1,0],[65,194,0],[65,194,1],[70],[4,64],[32,8],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[32,3],[65,194,1],[70],[4,64],[32,5],[32,6],[16, builtin('__Porffor_bytestringToString')],[33,5],[11],[32,9],[65,4],[106],[32,8],[65,4],[106],[65,252,255,3],[252,10,0,0],[32,9],[65,4],[106],[32,7],[65,2],[108],[106],[32,5],[65,4],[106],[32,6],[65,2],[108],[252,10,0,0],[32,9],[34,4],[65,22],[106],[32,2],[40,1,0],[65,2],[108],[106],[34,11],[65,34],[59,0,0],[32,11],[65,62],[59,0,2],[32,0],[33,12],[32,0],[40,1,0],[33,13],[32,12],[32,13],[65,2],[108],[106],[33,14],[3,64],[32,12],[32,14],[72],[4,64],[32,12],[47,0,4],[33,15],[32,11],[32,15],[59,0,4],[32,12],[65,2],[106],[33,12],[32,11],[65,2],[106],[33,11],[12,1],[11],[11],[32,11],[65,60],[59,0,4],[32,11],[65,47],[59,0,6],[32,11],[65,225,0],[59,0,8],[32,11],[65,62],[59,0,10],[32,4],[32,13],[32,2],[40,1,0],[106],[65,15],[106],[34,16],[54,1,0],[32,4],[65,194,0],[15]],
|
161
|
+
params: [127,127,127,127], typedParams: 1,
|
162
|
+
returns: [127,127], typedReturns: 1,
|
163
|
+
locals: [127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","arg","arg#type","out","concat_right_pointer","concat_right_length","concat_left_length","concat_left_pointer","concat_out_pointer","#last_type","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
|
164
|
+
data: [[0,[9,0,0,0,60,0,97,0,32,0,110,0,97,0,109,0,101,0,61,0,34,0]]],
|
165
|
+
};
|
166
|
+
this.__ByteString_prototype_anchor = {
|
167
|
+
wasm: (scope, {allocPage,builtin}) => [...number(allocPage(scope, 'string: __ByteString_prototype_anchor/out', 'i16') * pageSize, 127),[34,4],[32,2],[33,5],[33,8],[65,1],[64,0],[65,128,128,4],[108],[34,9],[32,8],[40,0,0],[34,7],[32,5],[40,0,0],[34,6],[106],[54,1,0],[65,194,0],[65,194,1],[70],[4,64],[32,8],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[32,3],[65,194,1],[70],[4,64],[32,5],[32,6],[16, builtin('__Porffor_bytestringToString')],[33,5],[11],[32,9],[65,4],[106],[32,8],[65,4],[106],[65,252,255,3],[252,10,0,0],[32,9],[65,4],[106],[32,7],[65,2],[108],[106],[32,5],[65,4],[106],[32,6],[65,2],[108],[252,10,0,0],[32,9],[34,4],[65,22],[106],[32,2],[40,1,0],[65,2],[108],[106],[34,11],[65,34],[59,0,0],[32,11],[65,62],[59,0,2],[32,0],[33,12],[32,0],[40,1,0],[33,13],[32,12],[32,13],[106],[33,14],[3,64],[32,12],[32,14],[72],[4,64],[32,12],[32,12],[65,1],[106],[33,12],[45,0,4],[33,15],[32,11],[32,15],[59,0,4],[32,11],[65,2],[106],[33,11],[12,1],[11],[11],[32,11],[65,60],[59,0,4],[32,11],[65,47],[59,0,6],[32,11],[65,225,0],[59,0,8],[32,11],[65,62],[59,0,10],[32,4],[32,13],[32,2],[40,1,0],[106],[65,15],[106],[34,16],[54,1,0],[32,4],[65,194,0],[15]],
|
168
|
+
params: [127,127,127,127], typedParams: 1,
|
169
|
+
returns: [127,127], typedReturns: 1,
|
170
|
+
locals: [127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","arg","arg#type","out","concat_right_pointer","concat_right_length","concat_left_length","concat_left_pointer","concat_out_pointer","#last_type","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
|
171
|
+
data: [[0,[9,0,0,0,60,0,97,0,32,0,110,0,97,0,109,0,101,0,61,0,34,0]]],
|
172
|
+
};
|
173
|
+
this.__String_prototype_link = {
|
174
|
+
wasm: (scope, {allocPage,builtin}) => [...number(allocPage(scope, 'string: __String_prototype_link/out', 'i16') * pageSize, 127),[34,4],[32,2],[33,5],[33,8],[65,1],[64,0],[65,128,128,4],[108],[34,9],[32,8],[40,0,0],[34,7],[32,5],[40,0,0],[34,6],[106],[54,1,0],[65,194,0],[65,194,1],[70],[4,64],[32,8],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[32,3],[65,194,1],[70],[4,64],[32,5],[32,6],[16, builtin('__Porffor_bytestringToString')],[33,5],[11],[32,9],[65,4],[106],[32,8],[65,4],[106],[65,252,255,3],[252,10,0,0],[32,9],[65,4],[106],[32,7],[65,2],[108],[106],[32,5],[65,4],[106],[32,6],[65,2],[108],[252,10,0,0],[32,9],[34,4],[65,22],[106],[32,2],[40,1,0],[65,2],[108],[106],[34,11],[65,34],[59,0,0],[32,11],[65,62],[59,0,2],[32,0],[33,12],[32,0],[40,1,0],[33,13],[32,12],[32,13],[65,2],[108],[106],[33,14],[3,64],[32,12],[32,14],[72],[4,64],[32,12],[47,0,4],[33,15],[32,11],[32,15],[59,0,4],[32,12],[65,2],[106],[33,12],[32,11],[65,2],[106],[33,11],[12,1],[11],[11],[32,11],[65,60],[59,0,4],[32,11],[65,47],[59,0,6],[32,11],[65,225,0],[59,0,8],[32,11],[65,62],[59,0,10],[32,4],[32,13],[32,2],[40,1,0],[106],[65,15],[106],[34,16],[54,1,0],[32,4],[65,194,0],[15]],
|
175
|
+
params: [127,127,127,127], typedParams: 1,
|
176
|
+
returns: [127,127], typedReturns: 1,
|
177
|
+
locals: [127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","arg","arg#type","out","concat_right_pointer","concat_right_length","concat_left_length","concat_left_pointer","concat_out_pointer","#last_type","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
|
178
|
+
data: [[0,[9,0,0,0,60,0,97,0,32,0,104,0,114,0,101,0,102,0,61,0,34,0]]],
|
179
|
+
};
|
180
|
+
this.__ByteString_prototype_link = {
|
181
|
+
wasm: (scope, {allocPage,builtin}) => [...number(allocPage(scope, 'string: __ByteString_prototype_link/out', 'i16') * pageSize, 127),[34,4],[32,2],[33,5],[33,8],[65,1],[64,0],[65,128,128,4],[108],[34,9],[32,8],[40,0,0],[34,7],[32,5],[40,0,0],[34,6],[106],[54,1,0],[65,194,0],[65,194,1],[70],[4,64],[32,8],[32,7],[16, builtin('__Porffor_bytestringToString')],[33,8],[11],[32,3],[65,194,1],[70],[4,64],[32,5],[32,6],[16, builtin('__Porffor_bytestringToString')],[33,5],[11],[32,9],[65,4],[106],[32,8],[65,4],[106],[65,252,255,3],[252,10,0,0],[32,9],[65,4],[106],[32,7],[65,2],[108],[106],[32,5],[65,4],[106],[32,6],[65,2],[108],[252,10,0,0],[32,9],[34,4],[65,22],[106],[32,2],[40,1,0],[65,2],[108],[106],[34,11],[65,34],[59,0,0],[32,11],[65,62],[59,0,2],[32,0],[33,12],[32,0],[40,1,0],[33,13],[32,12],[32,13],[106],[33,14],[3,64],[32,12],[32,14],[72],[4,64],[32,12],[32,12],[65,1],[106],[33,12],[45,0,4],[33,15],[32,11],[32,15],[59,0,4],[32,11],[65,2],[106],[33,11],[12,1],[11],[11],[32,11],[65,60],[59,0,4],[32,11],[65,47],[59,0,6],[32,11],[65,225,0],[59,0,8],[32,11],[65,62],[59,0,10],[32,4],[32,13],[32,2],[40,1,0],[106],[65,15],[106],[34,16],[54,1,0],[32,4],[65,194,0],[15]],
|
182
|
+
params: [127,127,127,127], typedParams: 1,
|
183
|
+
returns: [127,127], typedReturns: 1,
|
184
|
+
locals: [127,127,127,127,127,127,127,127,127,127,127,127,127], localNames: ["_this","_this#type","arg","arg#type","out","concat_right_pointer","concat_right_length","concat_left_length","concat_left_pointer","concat_out_pointer","#last_type","outPtr","thisPtr","thisLen","endPtr","chr","__length_setter_tmp"],
|
185
|
+
data: [[0,[9,0,0,0,60,0,97,0,32,0,104,0,114,0,101,0,102,0,61,0,34,0]]],
|
186
|
+
};
|
131
187
|
this.__String_prototype_trimLeft = {
|
132
188
|
wasm: (scope, {builtin}) => [[32,0],[65,194,0],[16, builtin('__String_prototype_trimStart')],[34,2],[15]],
|
133
189
|
params: [127,127], typedParams: 1,
|
@@ -1464,11 +1520,47 @@ export const BuiltinFuncs = function() {
|
|
1464
1520
|
constr: 1,
|
1465
1521
|
};
|
1466
1522
|
this.__Set_prototype_union = {
|
1467
|
-
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
|
+
params: [124,127,124,127], typedParams: 1,
|
1525
|
+
returns: [124,127], typedReturns: 1,
|
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
|
+
};
|
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]],
|
1468
1530
|
params: [124,127,124,127], typedParams: 1,
|
1469
1531
|
returns: [124,127], typedReturns: 1,
|
1470
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"],
|
1471
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
|
+
};
|
1472
1564
|
this.__Set_prototype_toString = {
|
1473
1565
|
wasm: (scope, {allocPage}) => [...number(allocPage(scope, 'bytestring: __Set_prototype_toString/out', 'i8') * pageSize, 124),[34,2],[65,194,1],[15]],
|
1474
1566
|
params: [124,127], typedParams: 1,
|
package/package.json
CHANGED