porffor 0.57.18 → 0.57.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiler/builtins/annexb_string.js +10 -14
- package/compiler/builtins/string.ts +4 -4
- package/compiler/builtins_precompiled.js +118 -82
- package/compiler/codegen.js +53 -46
- package/package.json +1 -1
- package/runtime/index.js +1 -1
@@ -1,14 +1,12 @@
|
|
1
1
|
export default () => {
|
2
|
-
let out =
|
2
|
+
let out = `// @porf --valtype=i32`;
|
3
3
|
const noArgs = (a0, a1) => out += `
|
4
|
-
export const __String_prototype_${a0} = (_this:
|
4
|
+
export const __String_prototype_${a0} = (_this: string) =>
|
5
5
|
Porffor.concatStrings(
|
6
6
|
Porffor.concatStrings('<${a1}>', _this),
|
7
7
|
'</${a1}>');
|
8
|
-
|
9
|
-
|
10
|
-
__String_prototype_${a0}(_this);
|
11
|
-
`;
|
8
|
+
export const __ByteString_prototype_${a0} = (_this: bytestring) =>
|
9
|
+
__String_prototype_${a0}(_this);`;
|
12
10
|
|
13
11
|
noArgs('big', 'big');
|
14
12
|
noArgs('blink', 'blink');
|
@@ -21,7 +19,7 @@ export const __ByteString_prototype_${a0} = (_this: any) =>
|
|
21
19
|
noArgs('sup', 'sup');
|
22
20
|
|
23
21
|
const arg = (name, s1, s2) => out += `
|
24
|
-
export const __String_prototype_${name} = (_this:
|
22
|
+
export const __String_prototype_${name} = (_this: string, arg: any) =>
|
25
23
|
Porffor.concatStrings(
|
26
24
|
Porffor.concatStrings(
|
27
25
|
Porffor.concatStrings(
|
@@ -29,21 +27,19 @@ export const __String_prototype_${name} = (_this: any, arg: any) =>
|
|
29
27
|
'">'),
|
30
28
|
_this),
|
31
29
|
'</${s1}>');
|
32
|
-
|
33
|
-
|
34
|
-
__String_prototype_${name}(_this, arg);
|
35
|
-
`;
|
30
|
+
export const __ByteString_prototype_${name} = (_this: bytestring, arg: any) =>
|
31
|
+
__String_prototype_${name}(_this, arg);`;
|
36
32
|
|
37
33
|
arg('fontcolor', 'font', 'color');
|
38
34
|
arg('fontsize', 'font', 'size');
|
39
35
|
arg('anchor', 'a', 'name');
|
40
36
|
arg('link', 'a', 'href');
|
41
37
|
|
42
|
-
const prototypeAlias = (regular, annex) => `
|
38
|
+
const prototypeAlias = (regular, annex) => `
|
39
|
+
export const __String_prototype_${annex} = (_this: any) =>
|
43
40
|
__String_prototype_${regular}(_this);
|
44
41
|
export const __ByteString_prototype_${annex} = (_this: any) =>
|
45
|
-
__ByteString_prototype_${regular}(_this)
|
46
|
-
`;
|
42
|
+
__ByteString_prototype_${regular}(_this);`;
|
47
43
|
|
48
44
|
prototypeAlias('trimStart', 'trimLeft');
|
49
45
|
prototypeAlias('trimEnd', 'trimRight');
|
@@ -810,7 +810,7 @@ export const __String_prototype_substr = (_this: string, start: number, length:
|
|
810
810
|
return out;
|
811
811
|
};
|
812
812
|
|
813
|
-
export const __ByteString_prototype_substr = (_this:
|
813
|
+
export const __ByteString_prototype_substr = (_this: bytestring, start: number, length: number) => {
|
814
814
|
const len: i32 = _this.length;
|
815
815
|
|
816
816
|
start |= 0;
|
@@ -1078,7 +1078,7 @@ export const __ByteString_prototype_trim = (_this: bytestring) => {
|
|
1078
1078
|
};
|
1079
1079
|
|
1080
1080
|
|
1081
|
-
export const __String_prototype_concat = (_this:
|
1081
|
+
export const __String_prototype_concat = (_this: string, ...vals: any[]) => {
|
1082
1082
|
let out: any = Porffor.allocate();
|
1083
1083
|
Porffor.clone(_this, out);
|
1084
1084
|
|
@@ -1117,7 +1117,7 @@ local.set ${out}`;
|
|
1117
1117
|
return out;
|
1118
1118
|
};
|
1119
1119
|
|
1120
|
-
export const __ByteString_prototype_concat = (_this:
|
1120
|
+
export const __ByteString_prototype_concat = (_this: bytestring, ...vals: any[]) => {
|
1121
1121
|
let out: any = Porffor.allocate();
|
1122
1122
|
Porffor.clone(_this, out);
|
1123
1123
|
|
@@ -1190,7 +1190,7 @@ memory.copy 0 0`;
|
|
1190
1190
|
return out;
|
1191
1191
|
};
|
1192
1192
|
|
1193
|
-
export const __ByteString_prototype_repeat = (_this:
|
1193
|
+
export const __ByteString_prototype_repeat = (_this: bytestring, cnt: any) => {
|
1194
1194
|
const count: number = ecma262.ToIntegerOrInfinity(cnt);
|
1195
1195
|
if (count < 0) throw new RangeError('Invalid count value');
|
1196
1196
|
|
@@ -199,133 +199,146 @@ params:[124,127,124,127],typedParams:1,returns:[124,127],
|
|
199
199
|
locals:[127],localNames:["a","a#type","b","b#type","#last_type"],
|
200
200
|
}
|
201
201
|
this.__String_prototype_big = {
|
202
|
-
wasm:(_,{makeString,builtin})=>[
|
203
|
-
params:[
|
202
|
+
wasm:(_,{i32ify,makeString,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.big expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],...i32ify(makeString(_,"<big>",1)),[183],[65,195,1],[32,0],[183],[65,195,0],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[183],[32,2],...i32ify(makeString(_,"</big>",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[32,2],[15]],
|
203
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
204
204
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
205
|
+
usesTag:1,
|
205
206
|
}
|
206
207
|
this.__ByteString_prototype_big = {
|
207
|
-
wasm:(_,{builtin})=>[[32,0],[
|
208
|
-
params:[
|
208
|
+
wasm:(_,{builtin})=>[[32,0],[65,195,1],[16,builtin('__String_prototype_big')],[34,2],[15]],
|
209
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
209
210
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
210
211
|
}
|
211
212
|
this.__String_prototype_blink = {
|
212
|
-
wasm:(_,{makeString,builtin})=>[
|
213
|
-
params:[
|
213
|
+
wasm:(_,{i32ify,makeString,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.blink expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],...i32ify(makeString(_,"<blink>",1)),[183],[65,195,1],[32,0],[183],[65,195,0],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[183],[32,2],...i32ify(makeString(_,"</blink>",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[32,2],[15]],
|
214
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
214
215
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
216
|
+
usesTag:1,
|
215
217
|
}
|
216
218
|
this.__ByteString_prototype_blink = {
|
217
|
-
wasm:(_,{builtin})=>[[32,0],[
|
218
|
-
params:[
|
219
|
+
wasm:(_,{builtin})=>[[32,0],[65,195,1],[16,builtin('__String_prototype_blink')],[34,2],[15]],
|
220
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
219
221
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
220
222
|
}
|
221
223
|
this.__String_prototype_bold = {
|
222
|
-
wasm:(_,{makeString,builtin})=>[
|
223
|
-
params:[
|
224
|
+
wasm:(_,{i32ify,makeString,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.bold expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],...i32ify(makeString(_,"<b>",1)),[183],[65,195,1],[32,0],[183],[65,195,0],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[183],[32,2],...i32ify(makeString(_,"</b>",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[32,2],[15]],
|
225
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
224
226
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
227
|
+
usesTag:1,
|
225
228
|
}
|
226
229
|
this.__ByteString_prototype_bold = {
|
227
|
-
wasm:(_,{builtin})=>[[32,0],[
|
228
|
-
params:[
|
230
|
+
wasm:(_,{builtin})=>[[32,0],[65,195,1],[16,builtin('__String_prototype_bold')],[34,2],[15]],
|
231
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
229
232
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
230
233
|
}
|
231
234
|
this.__String_prototype_fixed = {
|
232
|
-
wasm:(_,{makeString,builtin})=>[
|
233
|
-
params:[
|
235
|
+
wasm:(_,{i32ify,makeString,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.fixed expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],...i32ify(makeString(_,"<tt>",1)),[183],[65,195,1],[32,0],[183],[65,195,0],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[183],[32,2],...i32ify(makeString(_,"</tt>",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[32,2],[15]],
|
236
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
234
237
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
238
|
+
usesTag:1,
|
235
239
|
}
|
236
240
|
this.__ByteString_prototype_fixed = {
|
237
|
-
wasm:(_,{builtin})=>[[32,0],[
|
238
|
-
params:[
|
241
|
+
wasm:(_,{builtin})=>[[32,0],[65,195,1],[16,builtin('__String_prototype_fixed')],[34,2],[15]],
|
242
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
239
243
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
240
244
|
}
|
241
245
|
this.__String_prototype_italics = {
|
242
|
-
wasm:(_,{makeString,builtin})=>[
|
243
|
-
params:[
|
246
|
+
wasm:(_,{i32ify,makeString,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.italics expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],...i32ify(makeString(_,"<i>",1)),[183],[65,195,1],[32,0],[183],[65,195,0],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[183],[32,2],...i32ify(makeString(_,"</i>",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[32,2],[15]],
|
247
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
244
248
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
249
|
+
usesTag:1,
|
245
250
|
}
|
246
251
|
this.__ByteString_prototype_italics = {
|
247
|
-
wasm:(_,{builtin})=>[[32,0],[
|
248
|
-
params:[
|
252
|
+
wasm:(_,{builtin})=>[[32,0],[65,195,1],[16,builtin('__String_prototype_italics')],[34,2],[15]],
|
253
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
249
254
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
250
255
|
}
|
251
256
|
this.__String_prototype_small = {
|
252
|
-
wasm:(_,{makeString,builtin})=>[
|
253
|
-
params:[
|
257
|
+
wasm:(_,{i32ify,makeString,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.small expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],...i32ify(makeString(_,"<small>",1)),[183],[65,195,1],[32,0],[183],[65,195,0],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[183],[32,2],...i32ify(makeString(_,"</small>",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[32,2],[15]],
|
258
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
254
259
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
260
|
+
usesTag:1,
|
255
261
|
}
|
256
262
|
this.__ByteString_prototype_small = {
|
257
|
-
wasm:(_,{builtin})=>[[32,0],[
|
258
|
-
params:[
|
263
|
+
wasm:(_,{builtin})=>[[32,0],[65,195,1],[16,builtin('__String_prototype_small')],[34,2],[15]],
|
264
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
259
265
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
260
266
|
}
|
261
267
|
this.__String_prototype_strike = {
|
262
|
-
wasm:(_,{makeString,builtin})=>[
|
263
|
-
params:[
|
268
|
+
wasm:(_,{i32ify,makeString,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.strike expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],...i32ify(makeString(_,"<strike>",1)),[183],[65,195,1],[32,0],[183],[65,195,0],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[183],[32,2],...i32ify(makeString(_,"</strike>",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[32,2],[15]],
|
269
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
264
270
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
271
|
+
usesTag:1,
|
265
272
|
}
|
266
273
|
this.__ByteString_prototype_strike = {
|
267
|
-
wasm:(_,{builtin})=>[[32,0],[
|
268
|
-
params:[
|
274
|
+
wasm:(_,{builtin})=>[[32,0],[65,195,1],[16,builtin('__String_prototype_strike')],[34,2],[15]],
|
275
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
269
276
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
270
277
|
}
|
271
278
|
this.__String_prototype_sub = {
|
272
|
-
wasm:(_,{makeString,builtin})=>[
|
273
|
-
params:[
|
279
|
+
wasm:(_,{i32ify,makeString,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.sub expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],...i32ify(makeString(_,"<sub>",1)),[183],[65,195,1],[32,0],[183],[65,195,0],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[183],[32,2],...i32ify(makeString(_,"</sub>",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[32,2],[15]],
|
280
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
274
281
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
282
|
+
usesTag:1,
|
275
283
|
}
|
276
284
|
this.__ByteString_prototype_sub = {
|
277
|
-
wasm:(_,{builtin})=>[[32,0],[
|
278
|
-
params:[
|
285
|
+
wasm:(_,{builtin})=>[[32,0],[65,195,1],[16,builtin('__String_prototype_sub')],[34,2],[15]],
|
286
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
279
287
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
280
288
|
}
|
281
289
|
this.__String_prototype_sup = {
|
282
|
-
wasm:(_,{makeString,builtin})=>[
|
283
|
-
params:[
|
290
|
+
wasm:(_,{i32ify,makeString,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.sup expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],...i32ify(makeString(_,"<sup>",1)),[183],[65,195,1],[32,0],[183],[65,195,0],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[183],[32,2],...i32ify(makeString(_,"</sup>",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,2],[252,2],[32,2],[15]],
|
291
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
284
292
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
293
|
+
usesTag:1,
|
285
294
|
}
|
286
295
|
this.__ByteString_prototype_sup = {
|
287
|
-
wasm:(_,{builtin})=>[[32,0],[
|
288
|
-
params:[
|
296
|
+
wasm:(_,{builtin})=>[[32,0],[65,195,1],[16,builtin('__String_prototype_sup')],[34,2],[15]],
|
297
|
+
params:[127,127],typedParams:1,returns:[127,127],
|
289
298
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
290
299
|
}
|
291
300
|
this.__String_prototype_fontcolor = {
|
292
|
-
wasm:(_,{makeString,builtin})=>[
|
293
|
-
params:[
|
301
|
+
wasm:(_,{i32ify,makeString,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.fontcolor expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],...i32ify(makeString(_,"<font color=\"",1)),[183],[65,195,1],[32,2],[183],[32,3],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[183],[32,4],...i32ify(makeString(_,"\">",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[183],[32,4],[32,0],[183],[65,195,0],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[183],[32,4],...i32ify(makeString(_,"</font>",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[32,4],[15]],
|
302
|
+
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
294
303
|
locals:[127],localNames:["_this","_this#type","arg","arg#type","#last_type"],
|
304
|
+
usesTag:1,
|
295
305
|
}
|
296
306
|
this.__ByteString_prototype_fontcolor = {
|
297
|
-
wasm:(_,{builtin})=>[[32,0],[
|
298
|
-
params:[
|
307
|
+
wasm:(_,{builtin})=>[[32,0],[65,195,1],[32,2],[32,3],[16,builtin('__String_prototype_fontcolor')],[34,4],[15]],
|
308
|
+
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
299
309
|
locals:[127],localNames:["_this","_this#type","arg","arg#type","#last_type"],
|
300
310
|
}
|
301
311
|
this.__String_prototype_fontsize = {
|
302
|
-
wasm:(_,{makeString,builtin})=>[
|
303
|
-
params:[
|
312
|
+
wasm:(_,{i32ify,makeString,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.fontsize expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],...i32ify(makeString(_,"<font size=\"",1)),[183],[65,195,1],[32,2],[183],[32,3],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[183],[32,4],...i32ify(makeString(_,"\">",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[183],[32,4],[32,0],[183],[65,195,0],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[183],[32,4],...i32ify(makeString(_,"</font>",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[32,4],[15]],
|
313
|
+
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
304
314
|
locals:[127],localNames:["_this","_this#type","arg","arg#type","#last_type"],
|
315
|
+
usesTag:1,
|
305
316
|
}
|
306
317
|
this.__ByteString_prototype_fontsize = {
|
307
|
-
wasm:(_,{builtin})=>[[32,0],[
|
308
|
-
params:[
|
318
|
+
wasm:(_,{builtin})=>[[32,0],[65,195,1],[32,2],[32,3],[16,builtin('__String_prototype_fontsize')],[34,4],[15]],
|
319
|
+
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
309
320
|
locals:[127],localNames:["_this","_this#type","arg","arg#type","#last_type"],
|
310
321
|
}
|
311
322
|
this.__String_prototype_anchor = {
|
312
|
-
wasm:(_,{makeString,builtin})=>[
|
313
|
-
params:[
|
323
|
+
wasm:(_,{i32ify,makeString,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.anchor expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],...i32ify(makeString(_,"<a name=\"",1)),[183],[65,195,1],[32,2],[183],[32,3],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[183],[32,4],...i32ify(makeString(_,"\">",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[183],[32,4],[32,0],[183],[65,195,0],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[183],[32,4],...i32ify(makeString(_,"</a>",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[32,4],[15]],
|
324
|
+
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
314
325
|
locals:[127],localNames:["_this","_this#type","arg","arg#type","#last_type"],
|
326
|
+
usesTag:1,
|
315
327
|
}
|
316
328
|
this.__ByteString_prototype_anchor = {
|
317
|
-
wasm:(_,{builtin})=>[[32,0],[
|
318
|
-
params:[
|
329
|
+
wasm:(_,{builtin})=>[[32,0],[65,195,1],[32,2],[32,3],[16,builtin('__String_prototype_anchor')],[34,4],[15]],
|
330
|
+
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
319
331
|
locals:[127],localNames:["_this","_this#type","arg","arg#type","#last_type"],
|
320
332
|
}
|
321
333
|
this.__String_prototype_link = {
|
322
|
-
wasm:(_,{makeString,builtin})=>[
|
323
|
-
params:[
|
334
|
+
wasm:(_,{i32ify,makeString,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.link expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],...i32ify(makeString(_,"<a href=\"",1)),[183],[65,195,1],[32,2],[183],[32,3],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[183],[32,4],...i32ify(makeString(_,"\">",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[183],[32,4],[32,0],[183],[65,195,0],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[183],[32,4],...i32ify(makeString(_,"</a>",1)),[183],[65,195,1],[16,builtin('__Porffor_concatStrings')],[33,4],[252,2],[32,4],[15]],
|
335
|
+
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
324
336
|
locals:[127],localNames:["_this","_this#type","arg","arg#type","#last_type"],
|
337
|
+
usesTag:1,
|
325
338
|
}
|
326
339
|
this.__ByteString_prototype_link = {
|
327
|
-
wasm:(_,{builtin})=>[[32,0],[
|
328
|
-
params:[
|
340
|
+
wasm:(_,{builtin})=>[[32,0],[65,195,1],[32,2],[32,3],[16,builtin('__String_prototype_link')],[34,4],[15]],
|
341
|
+
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
329
342
|
locals:[127],localNames:["_this","_this#type","arg","arg#type","#last_type"],
|
330
343
|
}
|
331
344
|
this.Array = {
|
@@ -2887,9 +2900,10 @@ locals:[127],localNames:["_this","_this#type","#last_type"],
|
|
2887
2900
|
usesTag:1,
|
2888
2901
|
}
|
2889
2902
|
this.__String_prototype_toUpperCase = {
|
2890
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[40,1,0],[33,2],[16,builtin('__Porffor_allocate')],[34,3],[32,2],[54,0,0],[32,0],[33,4],[32,3],[33,5],[32,4],[32,2],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,4],[65,2],[106],[33,4],[32,7],[65,225,0],[78],[4,64],[32,7],[65,250,0],[76],[4,64],[32,7],[65,32],[107],[33,7],[11],[11],[32,5],[32,7],[59,0,4],[32,5],[65,2],[106],[33,5],[12,1],[11],[11],[32,3],[65,195,0],[15]],
|
2903
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.toUpperCase expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[40,1,0],[33,2],[16,builtin('__Porffor_allocate')],[34,3],[32,2],[54,0,0],[32,0],[33,4],[32,3],[33,5],[32,4],[32,2],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,4],[65,2],[106],[33,4],[32,7],[65,225,0],[78],[4,64],[32,7],[65,250,0],[76],[4,64],[32,7],[65,32],[107],[33,7],[11],[11],[32,5],[32,7],[59,0,4],[32,5],[65,2],[106],[33,5],[12,1],[11],[11],[32,3],[65,195,0],[15]],
|
2891
2904
|
params:[127,127],typedParams:1,returns:[127,127],
|
2892
2905
|
locals:[127,127,127,127,127,127],localNames:["_this","_this#type","len","out","i","j","endPtr","chr"],
|
2906
|
+
usesTag:1,
|
2893
2907
|
}
|
2894
2908
|
this.__ByteString_prototype_toUpperCase = {
|
2895
2909
|
wasm:(_,{builtin})=>[[32,0],[40,1,0],[33,2],[16,builtin('__Porffor_allocate')],[34,3],[32,2],[54,0,0],[32,0],[33,4],[32,3],[33,5],[32,4],[32,2],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[34,7],[65,225,0],[78],[4,64],[32,7],[65,250,0],[76],[4,64],[32,7],[65,32],[107],[33,7],[11],[11],[32,5],[32,5],[65,1],[106],[33,5],[32,7],[58,0,4],[12,1],[11],[11],[32,3],[65,195,1],[15]],
|
@@ -2897,9 +2911,10 @@ params:[127,127],typedParams:1,returns:[127,127],
|
|
2897
2911
|
locals:[127,127,127,127,127,127],localNames:["_this","_this#type","len","out","i","j","endPtr","chr"],
|
2898
2912
|
}
|
2899
2913
|
this.__String_prototype_toLowerCase = {
|
2900
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[40,1,0],[33,2],[16,builtin('__Porffor_allocate')],[34,3],[32,2],[54,0,0],[32,0],[33,4],[32,3],[33,5],[32,4],[32,2],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,4],[65,2],[106],[33,4],[32,7],[65,193,0],[78],[4,64],[32,7],[65,218,0],[76],[4,64],[32,7],[65,32],[106],[33,7],[11],[11],[32,5],[32,7],[59,0,4],[32,5],[65,2],[106],[33,5],[12,1],[11],[11],[32,3],[65,195,0],[15]],
|
2914
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.toLowerCase expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[40,1,0],[33,2],[16,builtin('__Porffor_allocate')],[34,3],[32,2],[54,0,0],[32,0],[33,4],[32,3],[33,5],[32,4],[32,2],[65,2],[108],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,7],[32,4],[65,2],[106],[33,4],[32,7],[65,193,0],[78],[4,64],[32,7],[65,218,0],[76],[4,64],[32,7],[65,32],[106],[33,7],[11],[11],[32,5],[32,7],[59,0,4],[32,5],[65,2],[106],[33,5],[12,1],[11],[11],[32,3],[65,195,0],[15]],
|
2901
2915
|
params:[127,127],typedParams:1,returns:[127,127],
|
2902
2916
|
locals:[127,127,127,127,127,127],localNames:["_this","_this#type","len","out","i","j","endPtr","chr"],
|
2917
|
+
usesTag:1,
|
2903
2918
|
}
|
2904
2919
|
this.__ByteString_prototype_toLowerCase = {
|
2905
2920
|
wasm:(_,{builtin})=>[[32,0],[40,1,0],[33,2],[16,builtin('__Porffor_allocate')],[34,3],[32,2],[54,0,0],[32,0],[33,4],[32,3],[33,5],[32,4],[32,2],[106],[33,6],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[34,7],[65,193,0],[78],[4,64],[32,7],[65,218,0],[76],[4,64],[32,7],[65,32],[106],[33,7],[11],[11],[32,5],[32,5],[65,1],[106],[33,5],[32,7],[58,0,4],[12,1],[11],[11],[32,3],[65,195,1],[15]],
|
@@ -2907,9 +2922,10 @@ params:[127,127],typedParams:1,returns:[127,127],
|
|
2907
2922
|
locals:[127,127,127,127,127,127],localNames:["_this","_this#type","len","out","i","j","endPtr","chr"],
|
2908
2923
|
}
|
2909
2924
|
this.__String_prototype_toLocaleUpperCase = {
|
2910
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[65,195,0],[16,builtin('__String_prototype_toUpperCase')],[34,2],[15]],
|
2925
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.toLocaleUpperCase expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[65,195,0],[16,builtin('__String_prototype_toUpperCase')],[34,2],[15]],
|
2911
2926
|
params:[127,127],typedParams:1,returns:[127,127],
|
2912
2927
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
2928
|
+
usesTag:1,
|
2913
2929
|
}
|
2914
2930
|
this.__ByteString_prototype_toLocaleUpperCase = {
|
2915
2931
|
wasm:(_,{builtin})=>[[32,0],[65,195,1],[16,builtin('__ByteString_prototype_toLowerCase')],[34,2],[15]],
|
@@ -2917,9 +2933,10 @@ params:[127,127],typedParams:1,returns:[127,127],
|
|
2917
2933
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
2918
2934
|
}
|
2919
2935
|
this.__String_prototype_toLocaleLowerCase = {
|
2920
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[65,195,0],[16,builtin('__String_prototype_toUpperCase')],[34,2],[15]],
|
2936
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.toLocaleLowerCase expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[65,195,0],[16,builtin('__String_prototype_toUpperCase')],[34,2],[15]],
|
2921
2937
|
params:[127,127],typedParams:1,returns:[127,127],
|
2922
2938
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
2939
|
+
usesTag:1,
|
2923
2940
|
}
|
2924
2941
|
this.__ByteString_prototype_toLocaleLowerCase = {
|
2925
2942
|
wasm:(_,{builtin})=>[[32,0],[65,195,1],[16,builtin('__ByteString_prototype_toLowerCase')],[34,2],[15]],
|
@@ -2927,9 +2944,10 @@ params:[127,127],typedParams:1,returns:[127,127],
|
|
2927
2944
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
2928
2945
|
}
|
2929
2946
|
this.__String_prototype_codePointAt = {
|
2930
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[40,1,0],[33,4],[32,2],[65,0],[114],[34,2],[65,0],[72],[32,2],[32,4],[78],[114],[4,64],[65,0],[65,128,1],[15],[26],[11],[32,2],[65,2],[108],[33,2],[32,0],[32,2],[106],[47,0,4],[34,5],[65,128,176,3],[78],[32,5],[65,255,183,3],[76],[113],[4,64],[32,2],[65,1],[106],[32,4],[78],[4,64],[32,5],[65,1],[15],[26],[11],[32,0],[32,2],[106],[65,2],[106],[47,0,4],[34,6],[65,128,184,3],[78],[32,6],[65,255,191,3],[76],[113],[4,64],[32,5],[65,10],[116],[32,6],[106],[65,128,184,255,26],[107],[65,1],[15],[26],[11],[11],[32,5],[65,1],[15]],
|
2947
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.codePointAt expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[40,1,0],[33,4],[32,2],[65,0],[114],[34,2],[65,0],[72],[32,2],[32,4],[78],[114],[4,64],[65,0],[65,128,1],[15],[26],[11],[32,2],[65,2],[108],[33,2],[32,0],[32,2],[106],[47,0,4],[34,5],[65,128,176,3],[78],[32,5],[65,255,183,3],[76],[113],[4,64],[32,2],[65,1],[106],[32,4],[78],[4,64],[32,5],[65,1],[15],[26],[11],[32,0],[32,2],[106],[65,2],[106],[47,0,4],[34,6],[65,128,184,3],[78],[32,6],[65,255,191,3],[76],[113],[4,64],[32,5],[65,10],[116],[32,6],[106],[65,128,184,255,26],[107],[65,1],[15],[26],[11],[11],[32,5],[65,1],[15]],
|
2931
2948
|
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
2932
2949
|
locals:[127,127,127],localNames:["_this","_this#type","index","index#type","len","c1","c2"],
|
2950
|
+
usesTag:1,
|
2933
2951
|
}
|
2934
2952
|
this.__ByteString_prototype_codePointAt = {
|
2935
2953
|
wasm:()=>[[32,0],[40,1,0],[33,4],[32,2],[65,0],[114],[34,2],[65,0],[72],[32,2],[32,4],[78],[114],[4,64],[65,0],[65,128,1],[15],[26],[11],[32,0],[32,2],[106],[45,0,4],[65,1],[15]],
|
@@ -2937,9 +2955,10 @@ params:[127,127,127,127],typedParams:1,returns:[127,127],
|
|
2937
2955
|
locals:[127],localNames:["_this","_this#type","index","index#type","len"],
|
2938
2956
|
}
|
2939
2957
|
this.__String_prototype_startsWith = {
|
2940
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[33,6],[32,2],[33,7],[32,0],[40,1,0],[33,8],[32,4],[65,0],[74],[4,64],[32,4],[32,8],[74],[4,64],[32,8],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,4],[65,2],[108],[106],[33,6],[32,2],[40,1,0],[65,2],[108],[33,9],[65,0],[33,10],[3,64],[32,10],[32,9],[72],[4,64],[32,6],[32,10],[106],[47,0,4],[33,11],[32,7],[32,10],[106],[47,0,4],[33,12],[32,11],[32,12],[71],[4,64],[65,0],[65,2],[15],[26],[11],[32,10],[65,2],[106],[33,10],[12,1],[11],[11],[65,1],[65,2],[15]],
|
2958
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.startsWith expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[33,6],[32,2],[33,7],[32,0],[40,1,0],[33,8],[32,4],[65,0],[74],[4,64],[32,4],[32,8],[74],[4,64],[32,8],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,4],[65,2],[108],[106],[33,6],[32,2],[40,1,0],[65,2],[108],[33,9],[65,0],[33,10],[3,64],[32,10],[32,9],[72],[4,64],[32,6],[32,10],[106],[47,0,4],[33,11],[32,7],[32,10],[106],[47,0,4],[33,12],[32,11],[32,12],[71],[4,64],[65,0],[65,2],[15],[26],[11],[32,10],[65,2],[106],[33,10],[12,1],[11],[11],[65,1],[65,2],[15]],
|
2941
2959
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
2942
2960
|
locals:[127,127,127,127,127,127,127],localNames:["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","len","searchLen","i","chr","expected"],
|
2961
|
+
usesTag:1,
|
2943
2962
|
}
|
2944
2963
|
this.__ByteString_prototype_startsWith = {
|
2945
2964
|
wasm:()=>[[32,3],[65,195,1],[71],[4,64],[65,0],[65,2],[15],[26],[11],[32,0],[33,6],[32,2],[33,7],[32,0],[40,1,0],[33,8],[32,4],[65,0],[74],[4,64],[32,4],[32,8],[74],[4,64],[32,8],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,4],[106],[33,6],[32,2],[40,1,0],[33,9],[65,0],[33,10],[3,64],[32,10],[32,9],[72],[4,64],[32,6],[32,10],[106],[45,0,4],[33,11],[32,7],[32,10],[106],[45,0,4],[33,12],[32,11],[32,12],[71],[4,64],[65,0],[65,2],[15],[26],[11],[32,10],[65,1],[106],[33,10],[12,1],[11],[11],[65,1],[65,2],[15]],
|
@@ -2947,9 +2966,10 @@ params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
|
2947
2966
|
locals:[127,127,127,127,127,127,127],localNames:["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","len","searchLen","i","chr","expected"],
|
2948
2967
|
}
|
2949
2968
|
this.__String_prototype_endsWith = {
|
2950
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[33,8],[32,0],[40,1,0],[33,9],[32,5],[65,128,1],[70],[4,64],[32,9],[33,4],[11],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,4],[32,8],[107],[34,4],[65,0],[72],[4,64],[65,0],[65,2],[15],[26],[11],[32,6],[32,4],[65,2],[108],[106],[33,6],[32,7],[32,8],[65,2],[108],[106],[33,10],[3,64],[32,7],[32,10],[72],[4,64],[32,6],[47,0,4],[33,11],[32,7],[47,0,4],[33,12],[32,6],[65,2],[106],[33,6],[32,7],[65,2],[106],[33,7],[32,11],[32,12],[71],[4,64],[65,0],[65,2],[15],[26],[11],[12,1],[11],[11],[65,1],[65,2],[15]],
|
2969
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.endsWith expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[33,8],[32,0],[40,1,0],[33,9],[32,5],[65,128,1],[70],[4,64],[32,9],[33,4],[11],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,4],[32,8],[107],[34,4],[65,0],[72],[4,64],[65,0],[65,2],[15],[26],[11],[32,6],[32,4],[65,2],[108],[106],[33,6],[32,7],[32,8],[65,2],[108],[106],[33,10],[3,64],[32,7],[32,10],[72],[4,64],[32,6],[47,0,4],[33,11],[32,7],[47,0,4],[33,12],[32,6],[65,2],[106],[33,6],[32,7],[65,2],[106],[33,7],[32,11],[32,12],[71],[4,64],[65,0],[65,2],[15],[26],[11],[12,1],[11],[11],[65,1],[65,2],[15]],
|
2951
2970
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
2952
2971
|
locals:[127,127,127,127,127,127,127],localNames:["_this","_this#type","searchString","searchString#type","endPosition","endPosition#type","i","j","searchLen","len","endPtr","chr","expected"],
|
2972
|
+
usesTag:1,
|
2953
2973
|
}
|
2954
2974
|
this.__ByteString_prototype_endsWith = {
|
2955
2975
|
wasm:()=>[[32,3],[65,195,1],[71],[4,64],[65,0],[65,2],[15],[26],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[33,8],[32,0],[40,1,0],[33,9],[32,5],[65,128,1],[70],[4,64],[32,9],[33,4],[11],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,4],[32,8],[107],[34,4],[65,0],[72],[4,64],[65,0],[65,2],[15],[26],[11],[32,6],[32,4],[106],[33,6],[32,7],[32,8],[106],[33,10],[3,64],[32,7],[32,10],[72],[4,64],[32,6],[32,6],[65,1],[106],[33,6],[45,0,4],[33,11],[32,7],[32,7],[65,1],[106],[33,7],[45,0,4],[33,12],[32,11],[32,12],[71],[4,64],[65,0],[65,2],[15],[26],[11],[12,1],[11],[11],[65,1],[65,2],[15]],
|
@@ -2957,9 +2977,10 @@ params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
|
2957
2977
|
locals:[127,127,127,127,127,127,127],localNames:["_this","_this#type","searchString","searchString#type","endPosition","endPosition#type","i","j","searchLen","len","endPtr","chr","expected"],
|
2958
2978
|
}
|
2959
2979
|
this.__String_prototype_indexOf = {
|
2960
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[65,2],[108],[33,8],[32,0],[40,1,0],[33,9],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,9],[65,2],[108],[106],[32,8],[107],[33,10],[32,6],[32,4],[65,2],[108],[106],[33,6],[3,64],[32,6],[32,10],[76],[4,64],[65,1],[33,11],[65,0],[33,12],[3,64],[32,12],[32,8],[72],[4,64],[2,64],[32,6],[32,12],[106],[47,0,4],[33,13],[32,7],[32,12],[106],[47,0,4],[33,14],[32,13],[32,14],[71],[4,64],[65,0],[33,11],[12,2],[26],[11],[11],[32,12],[65,2],[106],[33,12],[12,1],[11],[11],[32,11],[4,64],[32,6],[32,0],[107],[65,2],[109],[65,1],[15],[26],[11],[32,6],[65,2],[106],[33,6],[12,1],[11],[11],[65,127],[65,1],[15]],
|
2980
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.indexOf expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[65,2],[108],[33,8],[32,0],[40,1,0],[33,9],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,9],[65,2],[108],[106],[32,8],[107],[33,10],[32,6],[32,4],[65,2],[108],[106],[33,6],[3,64],[32,6],[32,10],[76],[4,64],[65,1],[33,11],[65,0],[33,12],[3,64],[32,12],[32,8],[72],[4,64],[2,64],[32,6],[32,12],[106],[47,0,4],[33,13],[32,7],[32,12],[106],[47,0,4],[33,14],[32,13],[32,14],[71],[4,64],[65,0],[33,11],[12,2],[26],[11],[11],[32,12],[65,2],[106],[33,12],[12,1],[11],[11],[32,11],[4,64],[32,6],[32,0],[107],[65,2],[109],[65,1],[15],[26],[11],[32,6],[65,2],[106],[33,6],[12,1],[11],[11],[65,127],[65,1],[15]],
|
2961
2981
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
2962
2982
|
locals:[127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","searchLenX2","len","thisPtrEnd","match","i","chr","expected"],
|
2983
|
+
usesTag:1,
|
2963
2984
|
}
|
2964
2985
|
this.__ByteString_prototype_indexOf = {
|
2965
2986
|
wasm:()=>[[32,3],[65,195,1],[71],[4,64],[65,127],[65,1],[15],[26],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[33,8],[32,0],[40,1,0],[33,9],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,9],[106],[32,8],[107],[33,10],[32,6],[32,4],[106],[33,6],[3,64],[32,6],[32,10],[76],[4,64],[65,1],[33,11],[65,0],[33,12],[3,64],[32,12],[32,8],[72],[4,64],[2,64],[32,6],[32,12],[106],[45,0,4],[33,13],[32,7],[32,12],[106],[45,0,4],[33,14],[32,13],[32,14],[71],[4,64],[65,0],[33,11],[12,2],[26],[11],[11],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,11],[4,64],[32,6],[32,0],[107],[65,1],[15],[26],[11],[32,6],[65,1],[106],[33,6],[12,1],[11],[11],[65,127],[65,1],[15]],
|
@@ -2967,9 +2988,10 @@ params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
|
2967
2988
|
locals:[127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","searchLen","len","thisPtrEnd","match","i","chr","expected"],
|
2968
2989
|
}
|
2969
2990
|
this.__String_prototype_lastIndexOf = {
|
2970
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[34,8],[65,2],[108],[33,9],[32,0],[40,1,0],[33,10],[32,5],[65,128,1],[70],[4,64],[32,10],[32,8],[107],[33,4],[11],[32,4],[65,0],[74],[4,64],[32,10],[32,8],[107],[33,11],[32,4],[32,11],[74],[4,64],[32,11],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[33,12],[32,6],[32,4],[65,2],[108],[106],[33,6],[3,64],[32,6],[32,12],[78],[4,64],[65,1],[33,13],[65,0],[33,14],[3,64],[32,14],[32,9],[72],[4,64],[2,64],[32,6],[32,14],[106],[45,0,4],[33,15],[32,7],[32,14],[106],[45,0,4],[33,16],[32,15],[32,16],[71],[4,64],[65,0],[33,13],[12,2],[26],[11],[11],[32,14],[65,2],[106],[33,14],[12,1],[11],[11],[32,13],[4,64],[32,6],[32,0],[107],[65,2],[109],[65,1],[15],[26],[11],[32,6],[65,2],[107],[33,6],[12,1],[11],[11],[65,127],[65,1],[15]],
|
2991
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.lastIndexOf expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[34,8],[65,2],[108],[33,9],[32,0],[40,1,0],[33,10],[32,5],[65,128,1],[70],[4,64],[32,10],[32,8],[107],[33,4],[11],[32,4],[65,0],[74],[4,64],[32,10],[32,8],[107],[33,11],[32,4],[32,11],[74],[4,64],[32,11],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[33,12],[32,6],[32,4],[65,2],[108],[106],[33,6],[3,64],[32,6],[32,12],[78],[4,64],[65,1],[33,13],[65,0],[33,14],[3,64],[32,14],[32,9],[72],[4,64],[2,64],[32,6],[32,14],[106],[45,0,4],[33,15],[32,7],[32,14],[106],[45,0,4],[33,16],[32,15],[32,16],[71],[4,64],[65,0],[33,13],[12,2],[26],[11],[11],[32,14],[65,2],[106],[33,14],[12,1],[11],[11],[32,13],[4,64],[32,6],[32,0],[107],[65,2],[109],[65,1],[15],[26],[11],[32,6],[65,2],[107],[33,6],[12,1],[11],[11],[65,127],[65,1],[15]],
|
2971
2992
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
2972
2993
|
locals:[127,127,127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","searchLen","searchLenX2","len","max","thisPtrStart","match","i","chr","expected"],
|
2994
|
+
usesTag:1,
|
2973
2995
|
}
|
2974
2996
|
this.__ByteString_prototype_lastIndexOf = {
|
2975
2997
|
wasm:()=>[[32,3],[65,195,1],[71],[4,64],[65,127],[65,1],[15],[26],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[33,8],[32,0],[40,1,0],[33,9],[32,5],[65,128,1],[70],[4,64],[32,9],[32,8],[107],[33,4],[11],[32,4],[65,0],[74],[4,64],[32,9],[32,8],[107],[33,10],[32,4],[32,10],[74],[4,64],[32,10],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[33,11],[32,6],[32,4],[106],[33,6],[3,64],[32,6],[32,11],[78],[4,64],[65,1],[33,12],[65,0],[33,13],[3,64],[32,13],[32,8],[72],[4,64],[2,64],[32,6],[32,13],[106],[45,0,4],[33,14],[32,7],[32,13],[106],[45,0,4],[33,15],[32,14],[32,15],[71],[4,64],[65,0],[33,12],[12,2],[26],[11],[11],[32,13],[65,1],[106],[33,13],[12,1],[11],[11],[32,12],[4,64],[32,6],[32,0],[107],[65,1],[15],[26],[11],[32,6],[65,1],[107],[33,6],[12,1],[11],[11],[65,127],[65,1],[15]],
|
@@ -2977,9 +2999,10 @@ params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
|
2977
2999
|
locals:[127,127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","searchLen","len","max","thisPtrStart","match","i","chr","expected"],
|
2978
3000
|
}
|
2979
3001
|
this.__String_prototype_includes = {
|
2980
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[65,2],[108],[33,8],[32,0],[40,1,0],[33,9],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,9],[65,2],[108],[106],[32,8],[107],[33,10],[32,6],[32,4],[65,2],[108],[106],[33,6],[3,64],[32,6],[32,10],[76],[4,64],[65,1],[33,11],[65,0],[33,12],[3,64],[32,12],[32,8],[72],[4,64],[2,64],[32,6],[32,12],[106],[47,0,4],[33,13],[32,7],[32,12],[106],[47,0,4],[33,14],[32,13],[32,14],[71],[4,64],[65,0],[33,11],[12,2],[26],[11],[11],[32,12],[65,2],[106],[33,12],[12,1],[11],[11],[32,11],[4,64],[65,1],[65,2],[15],[26],[11],[32,6],[65,2],[106],[33,6],[12,1],[11],[11],[65,0],[65,2],[15]],
|
3002
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.includes expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[65,2],[108],[33,8],[32,0],[40,1,0],[33,9],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,9],[65,2],[108],[106],[32,8],[107],[33,10],[32,6],[32,4],[65,2],[108],[106],[33,6],[3,64],[32,6],[32,10],[76],[4,64],[65,1],[33,11],[65,0],[33,12],[3,64],[32,12],[32,8],[72],[4,64],[2,64],[32,6],[32,12],[106],[47,0,4],[33,13],[32,7],[32,12],[106],[47,0,4],[33,14],[32,13],[32,14],[71],[4,64],[65,0],[33,11],[12,2],[26],[11],[11],[32,12],[65,2],[106],[33,12],[12,1],[11],[11],[32,11],[4,64],[65,1],[65,2],[15],[26],[11],[32,6],[65,2],[106],[33,6],[12,1],[11],[11],[65,0],[65,2],[15]],
|
2981
3003
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
2982
3004
|
locals:[127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","searchLenX2","len","thisPtrEnd","match","i","chr","expected"],
|
3005
|
+
usesTag:1,
|
2983
3006
|
}
|
2984
3007
|
this.__ByteString_prototype_includes = {
|
2985
3008
|
wasm:()=>[[32,3],[65,195,1],[71],[4,64],[65,127],[65,1],[15],[26],[11],[32,0],[33,6],[32,2],[33,7],[32,2],[40,1,0],[33,8],[32,0],[40,1,0],[33,9],[32,4],[65,0],[74],[4,64],[32,4],[32,9],[74],[4,64],[32,9],[33,4],[5],[32,4],[65,0],[114],[33,4],[11],[5],[65,0],[33,4],[11],[32,6],[32,9],[106],[32,8],[107],[33,10],[32,6],[32,4],[106],[33,6],[3,64],[32,6],[32,10],[76],[4,64],[65,1],[33,11],[65,0],[33,12],[3,64],[32,12],[32,8],[72],[4,64],[2,64],[32,6],[32,12],[106],[45,0,4],[33,13],[32,7],[32,12],[106],[45,0,4],[33,14],[32,13],[32,14],[71],[4,64],[65,0],[33,11],[12,2],[26],[11],[11],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,11],[4,64],[65,1],[65,2],[15],[26],[11],[32,6],[65,1],[106],[33,6],[12,1],[11],[11],[65,0],[65,2],[15]],
|
@@ -2987,9 +3010,10 @@ params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
|
2987
3010
|
locals:[127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","searchString","searchString#type","position","position#type","thisPtr","searchPtr","searchLen","len","thisPtrEnd","match","i","chr","expected"],
|
2988
3011
|
}
|
2989
3012
|
this.__String_prototype_padStart = {
|
2990
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[16,builtin('__Porffor_allocate')],[34,6],[33,7],[32,0],[33,8],[32,0],[40,1,0],[33,9],[32,2],[65,0],[114],[34,2],[32,9],[107],[34,10],[65,0],[74],[4,64],[32,5],[65,128,1],[70],[4,64],[65,0],[33,11],[3,64],[32,11],[32,10],[72],[4,64],[32,7],[65,32],[59,0,4],[32,7],[65,2],[106],[33,7],[32,11],[65,1],[106],[33,11],[12,1],[11],[11],[32,6],[32,2],[54,1,0],[5],[32,4],[40,1,0],[34,12],[65,0],[74],[4,64],[65,0],[33,11],[3,64],[32,11],[32,10],[72],[4,64],[32,7],[32,4],[40,1,0],[33,13],[32,11],[32,12],[111],[65,2],[108],[32,4],[106],[47,0,4],[59,0,4],[32,7],[65,2],[106],[33,7],[32,11],[65,1],[106],[33,11],[12,1],[11],[11],[32,6],[32,2],[54,1,0],[5],[32,6],[32,9],[54,1,0],[11],[11],[5],[32,6],[32,9],[54,1,0],[11],[32,8],[32,9],[65,2],[108],[106],[33,17],[3,64],[32,8],[32,17],[72],[4,64],[32,7],[32,8],[47,0,4],[59,0,4],[32,8],[65,2],[106],[33,8],[32,7],[65,2],[106],[33,7],[12,1],[11],[11],[32,6],[65,195,0],[15]],
|
3013
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.padStart expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[16,builtin('__Porffor_allocate')],[34,6],[33,7],[32,0],[33,8],[32,0],[40,1,0],[33,9],[32,2],[65,0],[114],[34,2],[32,9],[107],[34,10],[65,0],[74],[4,64],[32,5],[65,128,1],[70],[4,64],[65,0],[33,11],[3,64],[32,11],[32,10],[72],[4,64],[32,7],[65,32],[59,0,4],[32,7],[65,2],[106],[33,7],[32,11],[65,1],[106],[33,11],[12,1],[11],[11],[32,6],[32,2],[54,1,0],[5],[32,4],[40,1,0],[34,12],[65,0],[74],[4,64],[65,0],[33,11],[3,64],[32,11],[32,10],[72],[4,64],[32,7],[32,4],[40,1,0],[33,13],[32,11],[32,12],[111],[65,2],[108],[32,4],[106],[47,0,4],[59,0,4],[32,7],[65,2],[106],[33,7],[32,11],[65,1],[106],[33,11],[12,1],[11],[11],[32,6],[32,2],[54,1,0],[5],[32,6],[32,9],[54,1,0],[11],[11],[5],[32,6],[32,9],[54,1,0],[11],[32,8],[32,9],[65,2],[108],[106],[33,17],[3,64],[32,8],[32,17],[72],[4,64],[32,7],[32,8],[47,0,4],[59,0,4],[32,8],[65,2],[106],[33,8],[32,7],[65,2],[106],[33,7],[12,1],[11],[11],[32,6],[65,195,0],[15]],
|
2991
3014
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
2992
3015
|
locals:[127,127,127,127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","targetLength","targetLength#type","padString","padString#type","out","outPtr","thisPtr","len","todo","i","padStringLen","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","#last_type","thisPtrEnd"],
|
3016
|
+
usesTag:1,
|
2993
3017
|
}
|
2994
3018
|
this.__ByteString_prototype_padStart = {
|
2995
3019
|
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[34,6],[33,7],[32,0],[33,8],[32,4],[33,9],[32,0],[40,1,0],[33,10],[32,2],[65,0],[114],[34,2],[32,10],[107],[34,11],[65,0],[74],[4,64],[32,5],[65,128,1],[70],[4,64],[65,0],[33,12],[3,64],[32,12],[32,11],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[65,32],[58,0,4],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,6],[32,2],[54,1,0],[5],[32,4],[40,1,0],[34,13],[65,0],[74],[4,64],[65,0],[33,12],[3,64],[32,12],[32,11],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[32,9],[32,12],[32,13],[111],[106],[45,0,4],[58,0,4],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,6],[32,2],[54,1,0],[5],[32,6],[32,10],[54,1,0],[11],[11],[5],[32,6],[32,10],[54,1,0],[11],[32,8],[32,10],[106],[33,14],[3,64],[32,8],[32,14],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[32,8],[32,8],[65,1],[106],[33,8],[45,0,4],[58,0,4],[12,1],[11],[11],[32,6],[65,195,1],[15]],
|
@@ -2997,9 +3021,10 @@ params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
|
2997
3021
|
locals:[127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","targetLength","targetLength#type","padString","padString#type","out","outPtr","thisPtr","padStringPtr","len","todo","i","padStringLen","thisPtrEnd"],
|
2998
3022
|
}
|
2999
3023
|
this.__String_prototype_padEnd = {
|
3000
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[16,builtin('__Porffor_allocate')],[34,6],[33,7],[32,0],[33,8],[32,0],[40,1,0],[33,9],[32,8],[32,9],[65,2],[108],[106],[33,10],[3,64],[32,8],[32,10],[72],[4,64],[32,7],[32,8],[47,0,4],[59,0,4],[32,8],[65,2],[106],[33,8],[32,7],[65,2],[106],[33,7],[12,1],[11],[11],[32,2],[65,0],[114],[34,2],[32,9],[107],[34,11],[65,0],[74],[4,64],[32,5],[65,128,1],[70],[4,64],[65,0],[33,12],[3,64],[32,12],[32,11],[72],[4,64],[32,7],[65,32],[59,0,4],[32,7],[65,2],[106],[33,7],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,6],[32,2],[54,1,0],[5],[32,4],[40,1,0],[34,13],[65,0],[74],[4,64],[65,0],[33,12],[3,64],[32,12],[32,11],[72],[4,64],[32,7],[32,4],[40,1,0],[33,14],[32,12],[32,13],[111],[65,2],[108],[32,4],[106],[47,0,4],[59,0,4],[32,7],[65,2],[106],[33,7],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,6],[32,2],[54,1,0],[5],[32,6],[32,9],[54,1,0],[11],[11],[5],[32,6],[32,9],[54,1,0],[11],[32,6],[65,195,0],[15]],
|
3024
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.padEnd expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[16,builtin('__Porffor_allocate')],[34,6],[33,7],[32,0],[33,8],[32,0],[40,1,0],[33,9],[32,8],[32,9],[65,2],[108],[106],[33,10],[3,64],[32,8],[32,10],[72],[4,64],[32,7],[32,8],[47,0,4],[59,0,4],[32,8],[65,2],[106],[33,8],[32,7],[65,2],[106],[33,7],[12,1],[11],[11],[32,2],[65,0],[114],[34,2],[32,9],[107],[34,11],[65,0],[74],[4,64],[32,5],[65,128,1],[70],[4,64],[65,0],[33,12],[3,64],[32,12],[32,11],[72],[4,64],[32,7],[65,32],[59,0,4],[32,7],[65,2],[106],[33,7],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,6],[32,2],[54,1,0],[5],[32,4],[40,1,0],[34,13],[65,0],[74],[4,64],[65,0],[33,12],[3,64],[32,12],[32,11],[72],[4,64],[32,7],[32,4],[40,1,0],[33,14],[32,12],[32,13],[111],[65,2],[108],[32,4],[106],[47,0,4],[59,0,4],[32,7],[65,2],[106],[33,7],[32,12],[65,1],[106],[33,12],[12,1],[11],[11],[32,6],[32,2],[54,1,0],[5],[32,6],[32,9],[54,1,0],[11],[11],[5],[32,6],[32,9],[54,1,0],[11],[32,6],[65,195,0],[15]],
|
3001
3025
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
3002
3026
|
locals:[127,127,127,127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","targetLength","targetLength#type","padString","padString#type","out","outPtr","thisPtr","len","thisPtrEnd","todo","i","padStringLen","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","#last_type"],
|
3027
|
+
usesTag:1,
|
3003
3028
|
}
|
3004
3029
|
this.__ByteString_prototype_padEnd = {
|
3005
3030
|
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[34,6],[33,7],[32,0],[33,8],[32,4],[33,9],[32,0],[40,1,0],[33,10],[32,8],[32,10],[106],[33,11],[3,64],[32,8],[32,11],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[32,8],[32,8],[65,1],[106],[33,8],[45,0,4],[58,0,4],[12,1],[11],[11],[32,2],[65,0],[114],[34,2],[32,10],[107],[34,12],[65,0],[74],[4,64],[32,5],[65,128,1],[70],[4,64],[65,0],[33,13],[3,64],[32,13],[32,12],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[65,32],[58,0,4],[32,13],[65,1],[106],[33,13],[12,1],[11],[11],[32,6],[32,2],[54,1,0],[5],[32,4],[40,1,0],[34,14],[65,0],[74],[4,64],[65,0],[33,13],[3,64],[32,13],[32,12],[72],[4,64],[32,7],[32,7],[65,1],[106],[33,7],[32,9],[32,13],[32,14],[111],[106],[45,0,4],[58,0,4],[32,13],[65,1],[106],[33,13],[12,1],[11],[11],[32,6],[32,2],[54,1,0],[5],[32,6],[32,10],[54,1,0],[11],[11],[5],[32,6],[32,10],[54,1,0],[11],[32,6],[65,195,1],[15]],
|
@@ -3007,9 +3032,10 @@ params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
|
3007
3032
|
locals:[127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","targetLength","targetLength#type","padString","padString#type","out","outPtr","thisPtr","padStringPtr","len","thisPtrEnd","todo","i","padStringLen"],
|
3008
3033
|
}
|
3009
3034
|
this.__String_prototype_substring = {
|
3010
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[40,1,0],[33,6],[32,5],[65,128,1],[70],[4,64],[32,6],[33,4],[5],[32,2],[32,4],[74],[4,64],[32,4],[33,7],[32,2],[33,4],[32,7],[33,2],[11],[11],[32,2],[65,0],[114],[33,2],[32,4],[65,0],[114],[33,4],[32,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[32,2],[32,6],[74],[4,64],[32,6],[33,2],[11],[32,4],[65,0],[72],[4,64],[65,0],[33,4],[11],[32,4],[32,6],[74],[4,64],[32,6],[33,4],[11],[16,builtin('__Porffor_allocate')],[34,8],[33,9],[32,0],[34,10],[32,4],[65,2],[108],[106],[33,11],[32,10],[32,2],[65,2],[108],[106],[33,10],[3,64],[32,10],[32,11],[72],[4,64],[32,9],[32,10],[47,0,4],[59,0,4],[32,10],[65,2],[106],[33,10],[32,9],[65,2],[106],[33,9],[12,1],[11],[11],[32,8],[32,4],[32,2],[107],[54,1,0],[32,8],[65,195,0],[15]],
|
3035
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.substring expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[40,1,0],[33,6],[32,5],[65,128,1],[70],[4,64],[32,6],[33,4],[5],[32,2],[32,4],[74],[4,64],[32,4],[33,7],[32,2],[33,4],[32,7],[33,2],[11],[11],[32,2],[65,0],[114],[33,2],[32,4],[65,0],[114],[33,4],[32,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[32,2],[32,6],[74],[4,64],[32,6],[33,2],[11],[32,4],[65,0],[72],[4,64],[65,0],[33,4],[11],[32,4],[32,6],[74],[4,64],[32,6],[33,4],[11],[16,builtin('__Porffor_allocate')],[34,8],[33,9],[32,0],[34,10],[32,4],[65,2],[108],[106],[33,11],[32,10],[32,2],[65,2],[108],[106],[33,10],[3,64],[32,10],[32,11],[72],[4,64],[32,9],[32,10],[47,0,4],[59,0,4],[32,10],[65,2],[106],[33,10],[32,9],[65,2],[106],[33,9],[12,1],[11],[11],[32,8],[32,4],[32,2],[107],[54,1,0],[32,8],[65,195,0],[15]],
|
3011
3036
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
3012
3037
|
locals:[127,127,127,127,127,127],localNames:["_this","_this#type","start","start#type","end","end#type","len","tmp","out","outPtr","thisPtr","thisPtrEnd"],
|
3038
|
+
usesTag:1,
|
3013
3039
|
}
|
3014
3040
|
this.__ByteString_prototype_substring = {
|
3015
3041
|
wasm:(_,{builtin})=>[[32,0],[40,1,0],[33,6],[32,5],[65,128,1],[70],[4,64],[32,6],[33,4],[5],[32,2],[32,4],[74],[4,64],[32,4],[33,7],[32,2],[33,4],[32,7],[33,2],[11],[11],[32,2],[65,0],[114],[33,2],[32,4],[65,0],[114],[33,4],[32,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[32,2],[32,6],[74],[4,64],[32,6],[33,2],[11],[32,4],[65,0],[72],[4,64],[65,0],[33,4],[11],[32,4],[32,6],[74],[4,64],[32,6],[33,4],[11],[16,builtin('__Porffor_allocate')],[34,8],[33,9],[32,0],[34,10],[32,4],[106],[33,11],[32,10],[32,2],[106],[33,10],[3,64],[32,10],[32,11],[72],[4,64],[32,9],[32,9],[65,1],[106],[33,9],[32,10],[32,10],[65,1],[106],[33,10],[45,0,4],[58,0,4],[12,1],[11],[11],[32,8],[32,4],[32,2],[107],[54,1,0],[32,8],[65,195,1],[15]],
|
@@ -3017,19 +3043,21 @@ params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
|
3017
3043
|
locals:[127,127,127,127,127,127],localNames:["_this","_this#type","start","start#type","end","end#type","len","tmp","out","outPtr","thisPtr","thisPtrEnd"],
|
3018
3044
|
}
|
3019
3045
|
this.__String_prototype_substr = {
|
3020
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[40,1,0],[33,6],[32,2],[65,0],[114],[34,2],[65,0],[72],[4,64],[32,6],[32,2],[106],[34,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[11],[32,5],[65,128,1],[70],[4,64],[32,6],[32,2],[107],[33,4],[11],[32,4],[65,0],[114],[33,4],[32,2],[32,4],[106],[32,6],[74],[4,64],[32,6],[32,2],[107],[33,4],[11],[16,builtin('__Porffor_allocate')],[34,7],[33,8],[32,0],[34,9],[32,2],[65,2],[108],[106],[34,9],[32,4],[65,2],[108],[106],[33,10],[3,64],[32,9],[32,10],[72],[4,64],[32,8],[32,9],[47,0,4],[59,0,4],[32,9],[65,2],[106],[33,9],[32,8],[65,2],[106],[33,8],[12,1],[11],[11],[32,7],[32,4],[54,1,0],[32,7],[65,195,0],[15]],
|
3046
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.substr expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[40,1,0],[33,6],[32,2],[65,0],[114],[34,2],[65,0],[72],[4,64],[32,6],[32,2],[106],[34,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[11],[32,5],[65,128,1],[70],[4,64],[32,6],[32,2],[107],[33,4],[11],[32,4],[65,0],[114],[33,4],[32,2],[32,4],[106],[32,6],[74],[4,64],[32,6],[32,2],[107],[33,4],[11],[16,builtin('__Porffor_allocate')],[34,7],[33,8],[32,0],[34,9],[32,2],[65,2],[108],[106],[34,9],[32,4],[65,2],[108],[106],[33,10],[3,64],[32,9],[32,10],[72],[4,64],[32,8],[32,9],[47,0,4],[59,0,4],[32,9],[65,2],[106],[33,9],[32,8],[65,2],[106],[33,8],[12,1],[11],[11],[32,7],[32,4],[54,1,0],[32,7],[65,195,0],[15]],
|
3021
3047
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
3022
3048
|
locals:[127,127,127,127,127],localNames:["_this","_this#type","start","start#type","length","length#type","len","out","outPtr","thisPtr","thisPtrEnd"],
|
3049
|
+
usesTag:1,
|
3023
3050
|
}
|
3024
3051
|
this.__ByteString_prototype_substr = {
|
3025
|
-
wasm:(_,{builtin})=>[[32,
|
3052
|
+
wasm:(_,{builtin})=>[[32,0],[40,1,0],[33,6],[32,2],[65,0],[114],[34,2],[65,0],[72],[4,64],[32,6],[32,2],[106],[34,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[11],[32,5],[65,128,1],[70],[4,64],[32,6],[32,2],[107],[33,4],[11],[32,4],[65,0],[114],[33,4],[32,2],[32,4],[106],[32,6],[74],[4,64],[32,6],[32,2],[107],[33,4],[11],[16,builtin('__Porffor_allocate')],[34,7],[33,8],[32,0],[34,9],[32,2],[106],[34,9],[32,4],[106],[33,10],[3,64],[32,9],[32,10],[72],[4,64],[32,8],[32,8],[65,1],[106],[33,8],[32,9],[32,9],[65,1],[106],[33,9],[45,0,4],[58,0,4],[12,1],[11],[11],[32,7],[32,4],[54,1,0],[32,7],[65,195,1],[15]],
|
3026
3053
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
3027
3054
|
locals:[127,127,127,127,127],localNames:["_this","_this#type","start","start#type","length","length#type","len","out","outPtr","thisPtr","thisPtrEnd"],
|
3028
3055
|
}
|
3029
3056
|
this.__String_prototype_slice = {
|
3030
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[40,1,0],[33,6],[32,5],[65,128,1],[70],[4,64],[32,6],[33,4],[11],[32,2],[65,0],[114],[33,2],[32,4],[65,0],[114],[33,4],[32,2],[65,0],[72],[4,64],[32,6],[32,2],[106],[34,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[11],[32,2],[32,6],[74],[4,64],[32,6],[33,2],[11],[32,4],[65,0],[72],[4,64],[32,6],[32,4],[106],[34,4],[65,0],[72],[4,64],[65,0],[33,4],[11],[11],[32,4],[32,6],[74],[4,64],[32,6],[33,4],[11],[16,builtin('__Porffor_allocate')],[33,7],[32,2],[32,4],[74],[4,64],[32,7],[65,195,0],[15],[26],[11],[32,7],[33,8],[32,0],[34,9],[32,4],[65,2],[108],[106],[33,10],[32,9],[32,2],[65,2],[108],[106],[33,9],[3,64],[32,9],[32,10],[72],[4,64],[32,8],[32,9],[47,0,4],[59,0,4],[32,9],[65,2],[106],[33,9],[32,8],[65,2],[106],[33,8],[12,1],[11],[11],[32,7],[32,4],[32,2],[107],[54,1,0],[32,7],[65,195,0],[15]],
|
3057
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.slice expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[40,1,0],[33,6],[32,5],[65,128,1],[70],[4,64],[32,6],[33,4],[11],[32,2],[65,0],[114],[33,2],[32,4],[65,0],[114],[33,4],[32,2],[65,0],[72],[4,64],[32,6],[32,2],[106],[34,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[11],[32,2],[32,6],[74],[4,64],[32,6],[33,2],[11],[32,4],[65,0],[72],[4,64],[32,6],[32,4],[106],[34,4],[65,0],[72],[4,64],[65,0],[33,4],[11],[11],[32,4],[32,6],[74],[4,64],[32,6],[33,4],[11],[16,builtin('__Porffor_allocate')],[33,7],[32,2],[32,4],[74],[4,64],[32,7],[65,195,0],[15],[26],[11],[32,7],[33,8],[32,0],[34,9],[32,4],[65,2],[108],[106],[33,10],[32,9],[32,2],[65,2],[108],[106],[33,9],[3,64],[32,9],[32,10],[72],[4,64],[32,8],[32,9],[47,0,4],[59,0,4],[32,9],[65,2],[106],[33,9],[32,8],[65,2],[106],[33,8],[12,1],[11],[11],[32,7],[32,4],[32,2],[107],[54,1,0],[32,7],[65,195,0],[15]],
|
3031
3058
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
3032
3059
|
locals:[127,127,127,127,127],localNames:["_this","_this#type","start","start#type","end","end#type","len","out","outPtr","thisPtr","thisPtrEnd"],
|
3060
|
+
usesTag:1,
|
3033
3061
|
}
|
3034
3062
|
this.__ByteString_prototype_slice = {
|
3035
3063
|
wasm:(_,{builtin})=>[[32,0],[40,1,0],[33,6],[32,5],[65,128,1],[70],[4,64],[32,6],[33,4],[11],[32,2],[65,0],[114],[33,2],[32,4],[65,0],[114],[33,4],[32,2],[65,0],[72],[4,64],[32,6],[32,2],[106],[34,2],[65,0],[72],[4,64],[65,0],[33,2],[11],[11],[32,2],[32,6],[74],[4,64],[32,6],[33,2],[11],[32,4],[65,0],[72],[4,64],[32,6],[32,4],[106],[34,4],[65,0],[72],[4,64],[65,0],[33,4],[11],[11],[32,4],[32,6],[74],[4,64],[32,6],[33,4],[11],[16,builtin('__Porffor_allocate')],[33,7],[32,2],[32,4],[74],[4,64],[32,7],[65,195,1],[15],[26],[11],[32,7],[33,8],[32,0],[34,9],[32,4],[106],[33,10],[32,9],[32,2],[106],[33,9],[3,64],[32,9],[32,10],[72],[4,64],[32,8],[32,8],[65,1],[106],[33,8],[32,9],[32,9],[65,1],[106],[33,9],[45,0,4],[58,0,4],[12,1],[11],[11],[32,7],[32,4],[32,2],[107],[54,1,0],[32,7],[65,195,1],[15]],
|
@@ -3037,9 +3065,10 @@ params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
|
3037
3065
|
locals:[127,127,127,127,127],localNames:["_this","_this#type","start","start#type","end","end#type","len","out","outPtr","thisPtr","thisPtrEnd"],
|
3038
3066
|
}
|
3039
3067
|
this.__String_prototype_trimStart = {
|
3040
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[16,builtin('__Porffor_allocate')],[34,2],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[65,2],[108],[106],[33,6],[65,0],[33,7],[65,1],[33,8],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,9],[32,4],[65,2],[106],[33,4],[32,8],[4,64],[32,9],[65,9],[70],[32,9],[65,11],[70],[114],[32,9],[65,12],[70],[114],[32,9],[65,255,253,3],[70],[114],[32,9],[65,32],[70],[114],[32,9],[65,160,1],[70],[114],[32,9],[65,128,45],[70],[114],[32,9],[65,128,192,0],[70],[114],[32,9],[65,129,192,0],[70],[114],[32,9],[65,130,192,0],[70],[114],[32,9],[65,131,192,0],[70],[114],[32,9],[65,132,192,0],[70],[114],[32,9],[65,133,192,0],[70],[114],[32,9],[65,134,192,0],[70],[114],[32,9],[65,135,192,0],[70],[114],[32,9],[65,136,192,0],[70],[114],[32,9],[65,137,192,0],[70],[114],[32,9],[65,138,192,0],[70],[114],[32,9],[65,175,192,0],[70],[114],[32,9],[65,223,192,0],[70],[114],[32,9],[65,128,224,0],[70],[114],[32,9],[65,10],[70],[114],[32,9],[65,13],[70],[114],[32,9],[65,168,192,0],[70],[114],[32,9],[65,169,192,0],[70],[114],[4,64],[32,7],[65,1],[106],[33,7],[12,3],[26],[11],[65,0],[33,8],[11],[32,3],[32,9],[59,0,4],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,2],[32,5],[32,7],[107],[54,1,0],[32,2],[65,195,0],[15]],
|
3068
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.trimStart expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[16,builtin('__Porffor_allocate')],[34,2],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[65,2],[108],[106],[33,6],[65,0],[33,7],[65,1],[33,8],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[47,0,4],[33,9],[32,4],[65,2],[106],[33,4],[32,8],[4,64],[32,9],[65,9],[70],[32,9],[65,11],[70],[114],[32,9],[65,12],[70],[114],[32,9],[65,255,253,3],[70],[114],[32,9],[65,32],[70],[114],[32,9],[65,160,1],[70],[114],[32,9],[65,128,45],[70],[114],[32,9],[65,128,192,0],[70],[114],[32,9],[65,129,192,0],[70],[114],[32,9],[65,130,192,0],[70],[114],[32,9],[65,131,192,0],[70],[114],[32,9],[65,132,192,0],[70],[114],[32,9],[65,133,192,0],[70],[114],[32,9],[65,134,192,0],[70],[114],[32,9],[65,135,192,0],[70],[114],[32,9],[65,136,192,0],[70],[114],[32,9],[65,137,192,0],[70],[114],[32,9],[65,138,192,0],[70],[114],[32,9],[65,175,192,0],[70],[114],[32,9],[65,223,192,0],[70],[114],[32,9],[65,128,224,0],[70],[114],[32,9],[65,10],[70],[114],[32,9],[65,13],[70],[114],[32,9],[65,168,192,0],[70],[114],[32,9],[65,169,192,0],[70],[114],[4,64],[32,7],[65,1],[106],[33,7],[12,3],[26],[11],[65,0],[33,8],[11],[32,3],[32,9],[59,0,4],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,2],[32,5],[32,7],[107],[54,1,0],[32,2],[65,195,0],[15]],
|
3041
3069
|
params:[127,127],typedParams:1,returns:[127,127],
|
3042
3070
|
locals:[127,127,127,127,127,127,127,127],localNames:["_this","_this#type","out","outPtr","thisPtr","len","thisPtrEnd","n","start","chr"],
|
3071
|
+
usesTag:1,
|
3043
3072
|
}
|
3044
3073
|
this.__ByteString_prototype_trimStart = {
|
3045
3074
|
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[34,2],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[32,5],[106],[33,6],[65,0],[33,7],[65,1],[33,8],[3,64],[32,4],[32,6],[72],[4,64],[32,4],[32,4],[65,1],[106],[33,4],[45,0,4],[33,9],[32,8],[4,64],[32,9],[65,9],[70],[32,9],[65,11],[70],[114],[32,9],[65,12],[70],[114],[32,9],[65,255,253,3],[70],[114],[32,9],[65,32],[70],[114],[32,9],[65,160,1],[70],[114],[32,9],[65,128,45],[70],[114],[32,9],[65,128,192,0],[70],[114],[32,9],[65,129,192,0],[70],[114],[32,9],[65,130,192,0],[70],[114],[32,9],[65,131,192,0],[70],[114],[32,9],[65,132,192,0],[70],[114],[32,9],[65,133,192,0],[70],[114],[32,9],[65,134,192,0],[70],[114],[32,9],[65,135,192,0],[70],[114],[32,9],[65,136,192,0],[70],[114],[32,9],[65,137,192,0],[70],[114],[32,9],[65,138,192,0],[70],[114],[32,9],[65,175,192,0],[70],[114],[32,9],[65,223,192,0],[70],[114],[32,9],[65,128,224,0],[70],[114],[32,9],[65,10],[70],[114],[32,9],[65,13],[70],[114],[32,9],[65,168,192,0],[70],[114],[32,9],[65,169,192,0],[70],[114],[4,64],[32,7],[65,1],[106],[33,7],[12,3],[26],[11],[65,0],[33,8],[11],[32,3],[32,3],[65,1],[106],[33,3],[32,9],[58,0,4],[12,1],[11],[11],[32,2],[32,5],[32,7],[107],[54,1,0],[32,2],[65,195,1],[15]],
|
@@ -3047,9 +3076,10 @@ params:[127,127],typedParams:1,returns:[127,127],
|
|
3047
3076
|
locals:[127,127,127,127,127,127,127,127],localNames:["_this","_this#type","out","outPtr","thisPtr","len","thisPtrEnd","n","start","chr"],
|
3048
3077
|
}
|
3049
3078
|
this.__String_prototype_trimEnd = {
|
3050
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[16,builtin('__Porffor_allocate')],[34,2],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[33,6],[32,4],[32,5],[65,2],[108],[106],[33,4],[32,3],[32,5],[65,2],[108],[106],[33,3],[65,0],[33,7],[65,1],[33,8],[3,64],[32,4],[32,6],[74],[4,64],[32,4],[65,2],[107],[34,4],[47,0,4],[33,9],[32,3],[65,2],[107],[33,3],[32,8],[4,64],[32,9],[65,9],[70],[32,9],[65,11],[70],[114],[32,9],[65,12],[70],[114],[32,9],[65,255,253,3],[70],[114],[32,9],[65,32],[70],[114],[32,9],[65,160,1],[70],[114],[32,9],[65,128,45],[70],[114],[32,9],[65,128,192,0],[70],[114],[32,9],[65,129,192,0],[70],[114],[32,9],[65,130,192,0],[70],[114],[32,9],[65,131,192,0],[70],[114],[32,9],[65,132,192,0],[70],[114],[32,9],[65,133,192,0],[70],[114],[32,9],[65,134,192,0],[70],[114],[32,9],[65,135,192,0],[70],[114],[32,9],[65,136,192,0],[70],[114],[32,9],[65,137,192,0],[70],[114],[32,9],[65,138,192,0],[70],[114],[32,9],[65,175,192,0],[70],[114],[32,9],[65,223,192,0],[70],[114],[32,9],[65,128,224,0],[70],[114],[32,9],[65,10],[70],[114],[32,9],[65,13],[70],[114],[32,9],[65,168,192,0],[70],[114],[32,9],[65,169,192,0],[70],[114],[4,64],[32,7],[65,1],[106],[33,7],[12,3],[26],[11],[65,0],[33,8],[11],[32,3],[32,9],[59,0,4],[12,1],[11],[11],[32,2],[32,5],[32,7],[107],[54,1,0],[32,2],[65,195,0],[15]],
|
3079
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.trimEnd expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[16,builtin('__Porffor_allocate')],[34,2],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[33,6],[32,4],[32,5],[65,2],[108],[106],[33,4],[32,3],[32,5],[65,2],[108],[106],[33,3],[65,0],[33,7],[65,1],[33,8],[3,64],[32,4],[32,6],[74],[4,64],[32,4],[65,2],[107],[34,4],[47,0,4],[33,9],[32,3],[65,2],[107],[33,3],[32,8],[4,64],[32,9],[65,9],[70],[32,9],[65,11],[70],[114],[32,9],[65,12],[70],[114],[32,9],[65,255,253,3],[70],[114],[32,9],[65,32],[70],[114],[32,9],[65,160,1],[70],[114],[32,9],[65,128,45],[70],[114],[32,9],[65,128,192,0],[70],[114],[32,9],[65,129,192,0],[70],[114],[32,9],[65,130,192,0],[70],[114],[32,9],[65,131,192,0],[70],[114],[32,9],[65,132,192,0],[70],[114],[32,9],[65,133,192,0],[70],[114],[32,9],[65,134,192,0],[70],[114],[32,9],[65,135,192,0],[70],[114],[32,9],[65,136,192,0],[70],[114],[32,9],[65,137,192,0],[70],[114],[32,9],[65,138,192,0],[70],[114],[32,9],[65,175,192,0],[70],[114],[32,9],[65,223,192,0],[70],[114],[32,9],[65,128,224,0],[70],[114],[32,9],[65,10],[70],[114],[32,9],[65,13],[70],[114],[32,9],[65,168,192,0],[70],[114],[32,9],[65,169,192,0],[70],[114],[4,64],[32,7],[65,1],[106],[33,7],[12,3],[26],[11],[65,0],[33,8],[11],[32,3],[32,9],[59,0,4],[12,1],[11],[11],[32,2],[32,5],[32,7],[107],[54,1,0],[32,2],[65,195,0],[15]],
|
3051
3080
|
params:[127,127],typedParams:1,returns:[127,127],
|
3052
3081
|
locals:[127,127,127,127,127,127,127,127],localNames:["_this","_this#type","out","outPtr","thisPtr","len","thisPtrStart","n","start","chr"],
|
3082
|
+
usesTag:1,
|
3053
3083
|
}
|
3054
3084
|
this.__ByteString_prototype_trimEnd = {
|
3055
3085
|
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[34,2],[33,3],[32,0],[33,4],[32,0],[40,1,0],[33,5],[32,4],[33,6],[32,4],[32,5],[106],[33,4],[32,3],[32,5],[106],[33,3],[65,0],[33,7],[65,1],[33,8],[3,64],[32,4],[32,6],[74],[4,64],[32,4],[65,1],[107],[34,4],[45,0,4],[33,9],[32,3],[65,1],[107],[33,3],[32,8],[4,64],[32,9],[65,9],[70],[32,9],[65,11],[70],[114],[32,9],[65,12],[70],[114],[32,9],[65,255,253,3],[70],[114],[32,9],[65,32],[70],[114],[32,9],[65,160,1],[70],[114],[32,9],[65,128,45],[70],[114],[32,9],[65,128,192,0],[70],[114],[32,9],[65,129,192,0],[70],[114],[32,9],[65,130,192,0],[70],[114],[32,9],[65,131,192,0],[70],[114],[32,9],[65,132,192,0],[70],[114],[32,9],[65,133,192,0],[70],[114],[32,9],[65,134,192,0],[70],[114],[32,9],[65,135,192,0],[70],[114],[32,9],[65,136,192,0],[70],[114],[32,9],[65,137,192,0],[70],[114],[32,9],[65,138,192,0],[70],[114],[32,9],[65,175,192,0],[70],[114],[32,9],[65,223,192,0],[70],[114],[32,9],[65,128,224,0],[70],[114],[32,9],[65,10],[70],[114],[32,9],[65,13],[70],[114],[32,9],[65,168,192,0],[70],[114],[32,9],[65,169,192,0],[70],[114],[4,64],[32,7],[65,1],[106],[33,7],[12,3],[26],[11],[65,0],[33,8],[11],[32,3],[32,9],[58,0,4],[12,1],[11],[11],[32,2],[32,5],[32,7],[107],[54,1,0],[32,2],[65,195,1],[15]],
|
@@ -3057,9 +3087,10 @@ params:[127,127],typedParams:1,returns:[127,127],
|
|
3057
3087
|
locals:[127,127,127,127,127,127,127,127],localNames:["_this","_this#type","out","outPtr","thisPtr","len","thisPtrStart","n","start","chr"],
|
3058
3088
|
}
|
3059
3089
|
this.__String_prototype_trim = {
|
3060
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[65,195,0],[16,builtin('__String_prototype_trimEnd')],[34,2],[16,builtin('__String_prototype_trimStart')],[34,2],[15]],
|
3090
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.trim expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[65,195,0],[16,builtin('__String_prototype_trimEnd')],[34,2],[16,builtin('__String_prototype_trimStart')],[34,2],[15]],
|
3061
3091
|
params:[127,127],typedParams:1,returns:[127,127],
|
3062
3092
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
3093
|
+
usesTag:1,
|
3063
3094
|
}
|
3064
3095
|
this.__ByteString_prototype_trim = {
|
3065
3096
|
wasm:(_,{builtin})=>[[32,0],[65,195,1],[16,builtin('__ByteString_prototype_trimEnd')],[34,2],[16,builtin('__ByteString_prototype_trimStart')],[34,2],[15]],
|
@@ -3067,10 +3098,10 @@ params:[127,127],typedParams:1,returns:[127,127],
|
|
3067
3098
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
3068
3099
|
}
|
3069
3100
|
this.__String_prototype_concat = {
|
3070
|
-
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[33,4],[65,1],[33,5],[32,0],[32,4],[16,builtin('__Porffor_clone')],[32,1],[33,5],[32,2],[40,1,0],[33,6],[65,0],[33,7],[3,64],[32,7],[32,6],[72],[4,64],[32,4],[184],[32,5],[32,2],[32,7],[65,9],[108],[106],[43,0,4],[32,2],[32,7],[65,9],[108],[106],[45,0,12],[16,builtin('__Porffor_concatStrings')],[33,5],[252,3],[33,4],[32,7],[65,1],[106],[33,7],[12,1],[11],[11],[32,4],[32,5],[15]],
|
3101
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.concat expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[16,builtin('__Porffor_allocate')],[33,4],[65,1],[33,5],[32,0],[32,4],[16,builtin('__Porffor_clone')],[32,1],[33,5],[32,2],[40,1,0],[33,6],[65,0],[33,7],[3,64],[32,7],[32,6],[72],[4,64],[32,4],[184],[32,5],[32,2],[32,7],[65,9],[108],[106],[43,0,4],[32,2],[32,7],[65,9],[108],[106],[45,0,12],[16,builtin('__Porffor_concatStrings')],[33,5],[252,3],[33,4],[32,7],[65,1],[106],[33,7],[12,1],[11],[11],[32,4],[32,5],[15]],
|
3071
3102
|
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
3072
3103
|
locals:[127,127,127,127],localNames:["_this","_this#type","vals","vals#type","out","out#type","valsLen","i"],
|
3073
|
-
hasRestArgument:1,
|
3104
|
+
hasRestArgument:1,usesTag:1,
|
3074
3105
|
}
|
3075
3106
|
this.__ByteString_prototype_concat = {
|
3076
3107
|
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[33,4],[65,1],[33,5],[32,0],[32,4],[16,builtin('__Porffor_clone')],[32,1],[33,5],[32,2],[40,1,0],[33,6],[65,0],[33,7],[3,64],[32,7],[32,6],[72],[4,64],[32,4],[184],[32,5],[32,2],[32,7],[65,9],[108],[106],[43,0,4],[32,2],[32,7],[65,9],[108],[106],[45,0,12],[16,builtin('__Porffor_concatStrings')],[33,5],[252,3],[33,4],[32,7],[65,1],[106],[33,7],[12,1],[11],[11],[32,4],[32,5],[15]],
|
@@ -3079,19 +3110,19 @@ locals:[127,127,127,127],localNames:["_this","_this#type","vals","vals#type","ou
|
|
3079
3110
|
hasRestArgument:1,
|
3080
3111
|
}
|
3081
3112
|
this.__String_prototype_repeat = {
|
3082
|
-
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,2],[183],[32,3],[16,builtin('__ecma262_ToIntegerOrInfinity')],[252,2],[34,4],[65,0],[72],[4,64],...internalThrow(_,'RangeError',`Invalid count value`),[26],[11],[16,builtin('__Porffor_allocate')],[33,5],[32,0],[40,1,0],[65,2],[108],[34,6],[69],[4,64],[65,0],[65,195,1],[15],[26],[11],[65,0],[33,7],[3,64],[32,7],[32,4],[72],[4,64],[32,5],[65,4],[106],[32,7],[32,6],[108],[106],[32,0],[65,4],[106],[32,6],[252,10,0,0],[32,7],[65,1],[106],[33,7],[12,1],[11],[11],[32,5],[32,6],[32,4],[108],[54,0,0],[32,5],[65,195,0],[15]],
|
3113
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.repeat expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,2],[183],[32,3],[16,builtin('__ecma262_ToIntegerOrInfinity')],[252,2],[34,4],[65,0],[72],[4,64],...internalThrow(_,'RangeError',`Invalid count value`),[26],[11],[16,builtin('__Porffor_allocate')],[33,5],[32,0],[40,1,0],[65,2],[108],[34,6],[69],[4,64],[65,0],[65,195,1],[15],[26],[11],[65,0],[33,7],[3,64],[32,7],[32,4],[72],[4,64],[32,5],[65,4],[106],[32,7],[32,6],[108],[106],[32,0],[65,4],[106],[32,6],[252,10,0,0],[32,7],[65,1],[106],[33,7],[12,1],[11],[11],[32,5],[32,6],[32,4],[108],[54,0,0],[32,5],[65,195,0],[15]],
|
3083
3114
|
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
3084
3115
|
locals:[127,127,127,127],localNames:["_this","_this#type","cnt","cnt#type","count","out","thisLen","i"],
|
3085
3116
|
usesTag:1,
|
3086
3117
|
}
|
3087
3118
|
this.__ByteString_prototype_repeat = {
|
3088
|
-
wasm:(_,{builtin,internalThrow})=>[[32,
|
3119
|
+
wasm:(_,{builtin,internalThrow})=>[[32,2],[183],[32,3],[16,builtin('__ecma262_ToIntegerOrInfinity')],[252,2],[34,4],[65,0],[72],[4,64],...internalThrow(_,'RangeError',`Invalid count value`),[26],[11],[16,builtin('__Porffor_allocate')],[33,5],[32,0],[40,1,0],[34,6],[69],[4,64],[65,0],[65,195,1],[15],[26],[11],[65,0],[33,7],[3,64],[32,7],[32,4],[72],[4,64],[32,5],[65,4],[106],[32,7],[32,6],[108],[106],[32,0],[65,4],[106],[32,6],[252,10,0,0],[32,7],[65,1],[106],[33,7],[12,1],[11],[11],[32,5],[32,6],[32,4],[108],[54,0,0],[32,5],[65,195,1],[15]],
|
3089
3120
|
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
3090
3121
|
locals:[127,127,127,127],localNames:["_this","_this#type","cnt","cnt#type","count","out","thisLen","i"],
|
3091
3122
|
usesTag:1,
|
3092
3123
|
}
|
3093
3124
|
this.__String_prototype_split = {
|
3094
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[16,builtin('__Porffor_allocate')],[33,6],[65,0],[33,7],[32,5],[65,128,1],[70],[4,64],[65,255,255,255,255,7],[33,4],[65,1],[33,5],[11],[32,4],[65,0],[114],[33,4],[65,1],[33,5],[32,4],[65,0],[72],[4,64],[65,255,255,255,255,7],[33,4],[65,1],[33,5],[11],[32,2],[33,8],[32,3],[33,9],[2,127],...t([0,128],()=>[[32,9],[69],[32,9],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,9],[65,7],[70],[4,64],[32,8],[69],[12,1],[11]]),[65,0],[11],[4,64],[32,6],[65,1],[54,1,0],[32,6],[32,0],[184],[57,0,4],[32,6],[65,195,0],[58,0,12],[32,6],[65,200,0],[15],[26],[11],[16,builtin('__Porffor_allocate')],[33,10],[65,0],[33,11],[32,0],[40,1,0],[65,2],[108],[33,12],[32,2],[40,1,0],[34,13],[65,1],[70],[4,64],[32,2],[40,1,0],[33,15],[32,3],[33,9],[2,127],...t([33],()=>[[32,9],[65,33],[70],[4,64],[65,1],[33,18],[65,0],[65,2],[108],[32,2],[106],[47,0,4],[12,1],[11]]),[32,9],[65,195,0],[70],[4,64],[65,1],[33,18],[65,0],[65,2],[108],[32,2],[106],[47,0,4],[12,1],[11],...t([195],()=>[[32,9],[65,195,1],[70],[4,64],[65,1],[33,18],[65,0],[32,2],[106],[45,0,4],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[65,0],[11],[33,14],[65,0],[33,19],[3,64],[32,19],[32,12],[72],[4,64],[2,64],[32,0],[32,19],[106],[47,0,4],[34,20],[32,14],[70],[4,64],[32,7],[32,4],[78],[4,64],[32,6],[32,7],[54,1,0],[32,6],[65,200,0],[15],[26],[11],[32,10],[32,11],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,10],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[65,195,0],[58,0,12],[32,7],[65,1],[106],[33,7],[16,builtin('__Porffor_allocate')],[33,10],[65,0],[33,11],[12,1],[26],[11],[32,10],[32,11],[65,2],[108],[106],[32,20],[59,0,4],[32,11],[65,1],[106],[33,11],[11],[32,19],[65,2],[106],[33,19],[12,1],[11],[11],[5],[32,13],[69],[4,64],[32,4],[32,12],[74],[4,127],[32,12],[65,1],[33,18],[5],[32,4],[65,1],[33,18],[11],[33,21],[65,1],[33,11],[65,0],[33,19],[3,64],[32,19],[32,21],[76],[4,64],[65,8],[16,builtin('__Porffor_allocateBytes')],[33,10],[32,0],[32,19],[106],[47,0,4],[33,20],[32,10],[32,20],[59,0,4],[32,10],[32,11],[54,1,0],[32,6],[32,7],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,10],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[65,195,0],[58,0,12],[32,7],[65,1],[106],[33,7],[32,19],[65,2],[106],[33,19],[12,1],[11],[11],[32,6],[65,200,0],[15],[26],[5],[65,0],[33,22],[65,0],[33,19],[3,64],[32,19],[32,12],[72],[4,64],[2,64],[32,0],[32,19],[106],[47,0,4],[34,20],[32,2],[40,1,0],[33,15],[32,3],[33,9],[2,127],...t([33],()=>[[32,9],[65,33],[70],[4,64],[65,1],[33,18],[32,22],[65,2],[108],[32,2],[106],[47,0,4],[12,1],[11]]),[32,9],[65,195,0],[70],[4,64],[65,1],[33,18],[32,22],[65,2],[108],[32,2],[106],[47,0,4],[12,1],[11],...t([195],()=>[[32,9],[65,195,1],[70],[4,64],[65,1],[33,18],[32,22],[32,2],[106],[45,0,4],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[65,0],[11],[70],[4,64],[32,22],[65,1],[106],[34,22],[32,13],[70],[4,64],[32,7],[32,4],[78],[4,64],[32,6],[32,7],[54,1,0],[32,6],[65,200,0],[15],[26],[11],[32,10],[32,11],[32,13],[65,1],[107],[107],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,10],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[65,195,0],[58,0,12],[32,7],[65,1],[106],[33,7],[16,builtin('__Porffor_allocate')],[33,10],[65,0],[33,11],[12,2],[26],[11],[5],[65,0],[33,22],[11],[32,10],[32,11],[106],[32,20],[59,0,4],[32,11],[65,1],[106],[33,11],[11],[32,19],[65,2],[106],[33,19],[12,1],[11],[11],[11],[11],[32,11],[65,0],[74],[34,23],[4,127],[32,7],[32,4],[72],[65,2],[33,18],[5],[32,23],[65,2],[33,18],[11],[33,8],[32,18],[33,9],[2,127],[32,9],[65,195,0],[70],[32,9],[65,195,1],[70],[114],[4,64],[32,8],[40,1,0],[12,1],[11],[32,8],[11],[4,64],[32,10],[32,11],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,10],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[65,195,0],[58,0,12],[32,7],[65,1],[106],[33,7],[11],[32,6],[32,7],[54,1,0],[32,6],[65,200,0],[15]],
|
3125
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.split expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[16,builtin('__Porffor_allocate')],[33,6],[65,0],[33,7],[32,5],[65,128,1],[70],[4,64],[65,255,255,255,255,7],[33,4],[65,1],[33,5],[11],[32,4],[65,0],[114],[33,4],[65,1],[33,5],[32,4],[65,0],[72],[4,64],[65,255,255,255,255,7],[33,4],[65,1],[33,5],[11],[32,2],[33,8],[32,3],[33,9],[2,127],...t([0,128],()=>[[32,9],[69],[32,9],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,9],[65,7],[70],[4,64],[32,8],[69],[12,1],[11]]),[65,0],[11],[4,64],[32,6],[65,1],[54,1,0],[32,6],[32,0],[184],[57,0,4],[32,6],[65,195,0],[58,0,12],[32,6],[65,200,0],[15],[26],[11],[16,builtin('__Porffor_allocate')],[33,10],[65,0],[33,11],[32,0],[40,1,0],[65,2],[108],[33,12],[32,2],[40,1,0],[34,13],[65,1],[70],[4,64],[32,2],[40,1,0],[33,15],[32,3],[33,9],[2,127],...t([33],()=>[[32,9],[65,33],[70],[4,64],[65,1],[33,18],[65,0],[65,2],[108],[32,2],[106],[47,0,4],[12,1],[11]]),[32,9],[65,195,0],[70],[4,64],[65,1],[33,18],[65,0],[65,2],[108],[32,2],[106],[47,0,4],[12,1],[11],...t([195],()=>[[32,9],[65,195,1],[70],[4,64],[65,1],[33,18],[65,0],[32,2],[106],[45,0,4],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[65,0],[11],[33,14],[65,0],[33,19],[3,64],[32,19],[32,12],[72],[4,64],[2,64],[32,0],[32,19],[106],[47,0,4],[34,20],[32,14],[70],[4,64],[32,7],[32,4],[78],[4,64],[32,6],[32,7],[54,1,0],[32,6],[65,200,0],[15],[26],[11],[32,10],[32,11],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,10],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[65,195,0],[58,0,12],[32,7],[65,1],[106],[33,7],[16,builtin('__Porffor_allocate')],[33,10],[65,0],[33,11],[12,1],[26],[11],[32,10],[32,11],[65,2],[108],[106],[32,20],[59,0,4],[32,11],[65,1],[106],[33,11],[11],[32,19],[65,2],[106],[33,19],[12,1],[11],[11],[5],[32,13],[69],[4,64],[32,4],[32,12],[74],[4,127],[32,12],[65,1],[33,18],[5],[32,4],[65,1],[33,18],[11],[33,21],[65,1],[33,11],[65,0],[33,19],[3,64],[32,19],[32,21],[76],[4,64],[65,8],[16,builtin('__Porffor_allocateBytes')],[33,10],[32,0],[32,19],[106],[47,0,4],[33,20],[32,10],[32,20],[59,0,4],[32,10],[32,11],[54,1,0],[32,6],[32,7],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,10],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[65,195,0],[58,0,12],[32,7],[65,1],[106],[33,7],[32,19],[65,2],[106],[33,19],[12,1],[11],[11],[32,6],[65,200,0],[15],[26],[5],[65,0],[33,22],[65,0],[33,19],[3,64],[32,19],[32,12],[72],[4,64],[2,64],[32,0],[32,19],[106],[47,0,4],[34,20],[32,2],[40,1,0],[33,15],[32,3],[33,9],[2,127],...t([33],()=>[[32,9],[65,33],[70],[4,64],[65,1],[33,18],[32,22],[65,2],[108],[32,2],[106],[47,0,4],[12,1],[11]]),[32,9],[65,195,0],[70],[4,64],[65,1],[33,18],[32,22],[65,2],[108],[32,2],[106],[47,0,4],[12,1],[11],...t([195],()=>[[32,9],[65,195,1],[70],[4,64],[65,1],[33,18],[32,22],[32,2],[106],[45,0,4],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[65,0],[11],[70],[4,64],[32,22],[65,1],[106],[34,22],[32,13],[70],[4,64],[32,7],[32,4],[78],[4,64],[32,6],[32,7],[54,1,0],[32,6],[65,200,0],[15],[26],[11],[32,10],[32,11],[32,13],[65,1],[107],[107],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,10],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[65,195,0],[58,0,12],[32,7],[65,1],[106],[33,7],[16,builtin('__Porffor_allocate')],[33,10],[65,0],[33,11],[12,2],[26],[11],[5],[65,0],[33,22],[11],[32,10],[32,11],[106],[32,20],[59,0,4],[32,11],[65,1],[106],[33,11],[11],[32,19],[65,2],[106],[33,19],[12,1],[11],[11],[11],[11],[32,11],[65,0],[74],[34,23],[4,127],[32,7],[32,4],[72],[65,2],[33,18],[5],[32,23],[65,2],[33,18],[11],[33,8],[32,18],[33,9],[2,127],[32,9],[65,195,0],[70],[32,9],[65,195,1],[70],[114],[4,64],[32,8],[40,1,0],[12,1],[11],[32,8],[11],[4,64],[32,10],[32,11],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,10],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[65,195,0],[58,0,12],[32,7],[65,1],[106],[33,7],[11],[32,6],[32,7],[54,1,0],[32,6],[65,200,0],[15]],
|
3095
3126
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],
|
3096
3127
|
locals:[127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","separator","separator#type","limit","limit#type","out","outLen","#logicinner_tmp","#typeswitch_tmp1","tmp","tmpLen","thisLen","sepLen","sepChar","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","#last_type","i","x","clammedLimit","sepInd","logictmp"],
|
3097
3128
|
usesTag:1,
|
@@ -3103,7 +3134,7 @@ locals:[127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127]
|
|
3103
3134
|
usesTag:1,
|
3104
3135
|
}
|
3105
3136
|
this.__String_prototype_localeCompare = {
|
3106
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,2],[183],[32,3],[16,builtin('__ecma262_ToString')],[33,4],[252,2],[33,2],[32,4],[33,3],[32,0],[40,1,0],[33,5],[32,2],[40,1,0],[33,6],[32,5],[32,6],[74],[4,127],[32,5],[65,1],[33,4],[5],[32,6],[65,1],[33,4],[11],[33,7],[65,0],[33,8],[3,64],[32,8],[32,7],[72],[4,64],[2,64],[32,0],[40,1,0],[33,10],[65,1],[33,4],[32,8],[65,2],[108],[32,0],[106],[47,0,4],[33,9],[32,2],[40,1,0],[33,10],[32,3],[33,14],[2,127],...t([33],()=>[[32,14],[65,33],[70],[4,64],[65,1],[33,4],[32,8],[65,2],[108],[32,2],[106],[47,0,4],[12,1],[11]]),[32,14],[65,195,0],[70],[4,64],[65,1],[33,4],[32,8],[65,2],[108],[32,2],[106],[47,0,4],[12,1],[11],...t([195],()=>[[32,14],[65,195,1],[70],[4,64],[65,1],[33,4],[32,8],[32,2],[106],[45,0,4],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[65,0],[11],[33,13],[32,9],[32,13],[74],[4,64],[65,1],[65,1],[15],[26],[11],[32,13],[32,9],[74],[4,64],[65,127],[65,1],[15],[26],[11],[11],[32,8],[65,1],[106],[33,8],[12,1],[11],[11],[32,5],[32,6],[74],[4,64],[65,1],[65,1],[15],[26],[11],[32,6],[32,5],[74],[4,64],[65,127],[65,1],[15],[26],[11],[65,0],[65,1],[15]],
|
3137
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.localeCompare expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,2],[183],[32,3],[16,builtin('__ecma262_ToString')],[33,4],[252,2],[33,2],[32,4],[33,3],[32,0],[40,1,0],[33,5],[32,2],[40,1,0],[33,6],[32,5],[32,6],[74],[4,127],[32,5],[65,1],[33,4],[5],[32,6],[65,1],[33,4],[11],[33,7],[65,0],[33,8],[3,64],[32,8],[32,7],[72],[4,64],[2,64],[32,0],[40,1,0],[33,10],[65,1],[33,4],[32,8],[65,2],[108],[32,0],[106],[47,0,4],[33,9],[32,2],[40,1,0],[33,10],[32,3],[33,14],[2,127],...t([33],()=>[[32,14],[65,33],[70],[4,64],[65,1],[33,4],[32,8],[65,2],[108],[32,2],[106],[47,0,4],[12,1],[11]]),[32,14],[65,195,0],[70],[4,64],[65,1],[33,4],[32,8],[65,2],[108],[32,2],[106],[47,0,4],[12,1],[11],...t([195],()=>[[32,14],[65,195,1],[70],[4,64],[65,1],[33,4],[32,8],[32,2],[106],[45,0,4],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[65,0],[11],[33,13],[32,9],[32,13],[74],[4,64],[65,1],[65,1],[15],[26],[11],[32,13],[32,9],[74],[4,64],[65,127],[65,1],[15],[26],[11],[11],[32,8],[65,1],[106],[33,8],[12,1],[11],[11],[32,5],[32,6],[74],[4,64],[65,1],[65,1],[15],[26],[11],[32,6],[32,5],[74],[4,64],[65,127],[65,1],[15],[26],[11],[65,0],[65,1],[15]],
|
3107
3138
|
params:[127,127,127,127],typedParams:1,returns:[127,127],
|
3108
3139
|
locals:[127,127,127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","compareString","compareString#type","#last_type","thisLen","compareLen","maxLen","i","a","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","b","#typeswitch_tmp1"],
|
3109
3140
|
usesTag:1,
|
@@ -3115,9 +3146,10 @@ locals:[127,127,127,127,127,127,127,127,127,127,127],localNames:["_this","_this#
|
|
3115
3146
|
usesTag:1,
|
3116
3147
|
}
|
3117
3148
|
this.__String_prototype_isWellFormed = {
|
3118
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[34,2],[32,0],[40,1,0],[65,2],[108],[106],[33,3],[3,64],[32,2],[32,3],[72],[4,64],[32,2],[47,0,4],[34,4],[65,128,184,3],[78],[32,4],[65,255,191,3],[76],[113],[4,64],[65,0],[65,2],[15],[26],[11],[32,4],[65,128,176,3],[78],[32,4],[65,255,183,3],[76],[113],[4,64],[32,2],[65,2],[106],[32,3],[72],[4,127],[32,2],[65,2],[106],[47,0,4],[65,1],[33,6],[5],[65,0],[65,1],[33,6],[11],[34,5],[65,128,184,3],[78],[32,5],[65,255,191,3],[76],[113],[4,64],[32,2],[65,2],[106],[33,2],[5],[65,0],[65,2],[15],[26],[11],[11],[32,2],[65,2],[106],[33,2],[12,1],[11],[11],[65,1],[65,2],[15]],
|
3149
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.isWellFormed expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[34,2],[32,0],[40,1,0],[65,2],[108],[106],[33,3],[3,64],[32,2],[32,3],[72],[4,64],[32,2],[47,0,4],[34,4],[65,128,184,3],[78],[32,4],[65,255,191,3],[76],[113],[4,64],[65,0],[65,2],[15],[26],[11],[32,4],[65,128,176,3],[78],[32,4],[65,255,183,3],[76],[113],[4,64],[32,2],[65,2],[106],[32,3],[72],[4,127],[32,2],[65,2],[106],[47,0,4],[65,1],[33,6],[5],[65,0],[65,1],[33,6],[11],[34,5],[65,128,184,3],[78],[32,5],[65,255,191,3],[76],[113],[4,64],[32,2],[65,2],[106],[33,2],[5],[65,0],[65,2],[15],[26],[11],[11],[32,2],[65,2],[106],[33,2],[12,1],[11],[11],[65,1],[65,2],[15]],
|
3119
3150
|
params:[127,127],typedParams:1,returns:[127,127],
|
3120
3151
|
locals:[127,127,127,127,127],localNames:["_this","_this#type","ptr","endPtr","c1","c2","#last_type"],
|
3152
|
+
usesTag:1,
|
3121
3153
|
}
|
3122
3154
|
this.__ByteString_prototype_isWellFormed = {
|
3123
3155
|
wasm:()=>[[65,1],[65,2],[15]],
|
@@ -3125,9 +3157,10 @@ params:[127,127],typedParams:1,returns:[127,127],
|
|
3125
3157
|
locals:[],localNames:["_this","_this#type"],
|
3126
3158
|
}
|
3127
3159
|
this.__String_prototype_toWellFormed = {
|
3128
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[16,builtin('__Porffor_allocate')],[33,2],[32,0],[32,2],[16,builtin('__Porffor_clone')],[32,2],[34,3],[32,2],[40,1,0],[65,2],[108],[106],[33,4],[3,64],[32,3],[32,4],[72],[4,64],[32,3],[47,0,4],[34,5],[65,128,184,3],[78],[32,5],[65,255,191,3],[76],[113],[4,64],[32,3],[65,253,255,3],[59,0,4],[11],[32,5],[65,128,176,3],[78],[32,5],[65,255,183,3],[76],[113],[4,64],[32,3],[65,2],[106],[32,4],[72],[4,127],[32,3],[65,2],[106],[47,0,4],[65,1],[33,7],[5],[65,0],[65,1],[33,7],[11],[34,6],[65,128,184,3],[78],[32,6],[65,255,191,3],[76],[113],[4,64],[32,3],[65,2],[106],[33,3],[5],[32,3],[65,253,255,3],[59,0,4],[11],[11],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,2],[65,195,0],[15]],
|
3160
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.toWellFormed expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[16,builtin('__Porffor_allocate')],[33,2],[32,0],[32,2],[16,builtin('__Porffor_clone')],[32,2],[34,3],[32,2],[40,1,0],[65,2],[108],[106],[33,4],[3,64],[32,3],[32,4],[72],[4,64],[32,3],[47,0,4],[34,5],[65,128,184,3],[78],[32,5],[65,255,191,3],[76],[113],[4,64],[32,3],[65,253,255,3],[59,0,4],[11],[32,5],[65,128,176,3],[78],[32,5],[65,255,183,3],[76],[113],[4,64],[32,3],[65,2],[106],[32,4],[72],[4,127],[32,3],[65,2],[106],[47,0,4],[65,1],[33,7],[5],[65,0],[65,1],[33,7],[11],[34,6],[65,128,184,3],[78],[32,6],[65,255,191,3],[76],[113],[4,64],[32,3],[65,2],[106],[33,3],[5],[32,3],[65,253,255,3],[59,0,4],[11],[11],[32,3],[65,2],[106],[33,3],[12,1],[11],[11],[32,2],[65,195,0],[15]],
|
3129
3161
|
params:[127,127],typedParams:1,returns:[127,127],
|
3130
3162
|
locals:[127,127,127,127,127,127],localNames:["_this","_this#type","out","ptr","endPtr","c1","c2","#last_type"],
|
3163
|
+
usesTag:1,
|
3131
3164
|
}
|
3132
3165
|
this.__ByteString_prototype_toWellFormed = {
|
3133
3166
|
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[33,2],[32,0],[32,2],[16,builtin('__Porffor_clone')],[32,2],[65,195,1],[15]],
|
@@ -3135,9 +3168,10 @@ params:[127,127],typedParams:1,returns:[127,127],
|
|
3135
3168
|
locals:[127],localNames:["_this","_this#type","out"],
|
3136
3169
|
}
|
3137
3170
|
this.__String_prototype_toString = {
|
3138
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[65,195,0],[15]],
|
3171
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.toString expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[65,195,0],[15]],
|
3139
3172
|
params:[127,127],typedParams:1,returns:[127,127],
|
3140
3173
|
locals:[],localNames:["_this","_this#type"],
|
3174
|
+
usesTag:1,
|
3141
3175
|
}
|
3142
3176
|
this.__ByteString_prototype_toString = {
|
3143
3177
|
wasm:()=>[[32,0],[65,195,1],[15]],
|
@@ -3145,9 +3179,10 @@ params:[127,127],typedParams:1,returns:[127,127],
|
|
3145
3179
|
locals:[],localNames:["_this","_this#type"],
|
3146
3180
|
}
|
3147
3181
|
this.__String_prototype_toLocaleString = {
|
3148
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[65,195,0],[16,builtin('__String_prototype_toString')],[34,2],[15]],
|
3182
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.toLocaleString expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[65,195,0],[16,builtin('__String_prototype_toString')],[34,2],[15]],
|
3149
3183
|
params:[127,127],typedParams:1,returns:[127,127],
|
3150
3184
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
3185
|
+
usesTag:1,
|
3151
3186
|
}
|
3152
3187
|
this.__ByteString_prototype_toLocaleString = {
|
3153
3188
|
wasm:(_,{builtin})=>[[32,0],[65,195,1],[16,builtin('__ByteString_prototype_toString')],[34,2],[15]],
|
@@ -3155,9 +3190,10 @@ params:[127,127],typedParams:1,returns:[127,127],
|
|
3155
3190
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
3156
3191
|
}
|
3157
3192
|
this.__String_prototype_valueOf = {
|
3158
|
-
wasm:(_,{builtin})=>[[32,1],[65,195,0],[71],[4,64],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[65,195,0],[15]],
|
3193
|
+
wasm:(_,{builtin,internalThrow})=>[[32,1],[65,195,0],[71],[4,64],[32,1],[65,128,1],[114],[65,128,1],[70],[32,1],[65,7],[70],[32,0],[69],[113],[114],[4,64],...internalThrow(_,'TypeError',`String.prototype.valueOf expects 'this' to be non-nullish`),[11],[32,0],[183],[32,1],[16,builtin('__ecma262_ToString')],[33,1],[252,2],[33,0],[32,1],[65,195,1],[70],[4,64],[32,0],[16,builtin('__Porffor_bytestringToString')],[33,0],[11],[11],[32,0],[65,195,0],[15]],
|
3159
3194
|
params:[127,127],typedParams:1,returns:[127,127],
|
3160
3195
|
locals:[],localNames:["_this","_this#type"],
|
3196
|
+
usesTag:1,
|
3161
3197
|
}
|
3162
3198
|
this.__ByteString_prototype_valueOf = {
|
3163
3199
|
wasm:()=>[[32,0],[65,195,1],[15]],
|
package/compiler/codegen.js
CHANGED
@@ -466,9 +466,22 @@ const lookup = (scope, name, failEarly = false) => {
|
|
466
466
|
}
|
467
467
|
}
|
468
468
|
|
469
|
-
return
|
470
|
-
|
471
|
-
|
469
|
+
return [
|
470
|
+
[ Opcodes.local_get, localTmp(scope, '#arguments') ],
|
471
|
+
...Opcodes.eqz,
|
472
|
+
[ Opcodes.if, Blocktype.void ],
|
473
|
+
...generateObject(scope, {
|
474
|
+
properties: names.map((x, i) => ({
|
475
|
+
key: { type: 'Literal', value: i },
|
476
|
+
value: { type: 'Identifier', name: x },
|
477
|
+
kind: 'init'
|
478
|
+
}))
|
479
|
+
}, '#arguments', false),
|
480
|
+
[ Opcodes.local_set, localTmp(scope, '#arguments') ],
|
481
|
+
[ Opcodes.end ],
|
482
|
+
|
483
|
+
[ Opcodes.local_get, localTmp(scope, '#arguments') ]
|
484
|
+
];
|
472
485
|
}
|
473
486
|
|
474
487
|
// no local var with name
|
@@ -1245,7 +1258,7 @@ const asmFuncToAsm = (scope, func, extra) => func(scope, {
|
|
1245
1258
|
getNodeType, generate, generateIdent,
|
1246
1259
|
builtin: (n, offset = false) => {
|
1247
1260
|
let idx = importedFuncs[n] ?? funcIndex[n];
|
1248
|
-
if (idx == null && builtinFuncs
|
1261
|
+
if (idx == null && Object.hasOwn(builtinFuncs, n)) {
|
1249
1262
|
includeBuiltin(scope, n);
|
1250
1263
|
idx = funcIndex[n];
|
1251
1264
|
}
|
@@ -1260,7 +1273,7 @@ const asmFuncToAsm = (scope, func, extra) => func(scope, {
|
|
1260
1273
|
},
|
1261
1274
|
hasFunc: x => funcIndex[x] != null,
|
1262
1275
|
funcRef: name => {
|
1263
|
-
if (funcIndex[name] == null && builtinFuncs
|
1276
|
+
if (funcIndex[name] == null && Object.hasOwn(builtinFuncs, name)) {
|
1264
1277
|
includeBuiltin(scope, name);
|
1265
1278
|
}
|
1266
1279
|
|
@@ -1269,7 +1282,7 @@ const asmFuncToAsm = (scope, func, extra) => func(scope, {
|
|
1269
1282
|
},
|
1270
1283
|
glbl: (opcode, name, type) => {
|
1271
1284
|
const globalName = '#porf#' + name; // avoid potential name clashing with user js
|
1272
|
-
if (!globals
|
1285
|
+
if (!Object.hasOwn(globals, globalName)) {
|
1273
1286
|
const idx = globals['#ind']++;
|
1274
1287
|
globals[globalName] = { idx, type };
|
1275
1288
|
|
@@ -1298,7 +1311,7 @@ const asmFuncToAsm = (scope, func, extra) => func(scope, {
|
|
1298
1311
|
return out;
|
1299
1312
|
},
|
1300
1313
|
loc: (name, type) => {
|
1301
|
-
if (!scope.locals
|
1314
|
+
if (!Object.hasOwn(scope.locals, name)) {
|
1302
1315
|
const idx = scope.localInd++;
|
1303
1316
|
scope.locals[name] = { idx, type };
|
1304
1317
|
}
|
@@ -1401,8 +1414,8 @@ const generateLogicExp = (scope, decl) =>
|
|
1401
1414
|
performLogicOp(scope, decl.operator, generate(scope, decl.left), generate(scope, decl.right), getNodeType(scope, decl.left), getNodeType(scope, decl.right));
|
1402
1415
|
|
1403
1416
|
const isExistingProtoFunc = name => {
|
1404
|
-
if (name.startsWith('__Array_prototype')) return
|
1405
|
-
if (name.startsWith('__String_prototype_')) return
|
1417
|
+
if (name.startsWith('__Array_prototype')) return Object.hasOwn(prototypeFuncs[TYPES.array], name.slice(18));
|
1418
|
+
if (name.startsWith('__String_prototype_')) return Object.hasOwn(prototypeFuncs[TYPES.string], name.slice(19));
|
1406
1419
|
|
1407
1420
|
return false;
|
1408
1421
|
};
|
@@ -1461,7 +1474,7 @@ const getType = (scope, name, failEarly = false) => {
|
|
1461
1474
|
}
|
1462
1475
|
|
1463
1476
|
if (global !== false && name === 'arguments' && !scope.arrow) {
|
1464
|
-
return [ number(TYPES.
|
1477
|
+
return [ number(TYPES.object, Valtype.i32) ];
|
1465
1478
|
}
|
1466
1479
|
|
1467
1480
|
if (metadata?.type != null) {
|
@@ -1475,12 +1488,10 @@ const getType = (scope, name, failEarly = false) => {
|
|
1475
1488
|
[ global ? Opcodes.global_get : Opcodes.local_get, typeLocal.idx ]
|
1476
1489
|
];
|
1477
1490
|
|
1478
|
-
if (hasFuncWithName(name)) {
|
1491
|
+
if (hasFuncWithName(name) || isExistingProtoFunc(name)) {
|
1479
1492
|
return [ number(TYPES.function, Valtype.i32) ];
|
1480
1493
|
}
|
1481
1494
|
|
1482
|
-
if (isExistingProtoFunc(name)) return [ number(TYPES.function, Valtype.i32) ];
|
1483
|
-
|
1484
1495
|
return fallback;
|
1485
1496
|
};
|
1486
1497
|
|
@@ -2119,7 +2130,7 @@ const generateCall = (scope, decl, _global, _name, unusedValue = false) => {
|
|
2119
2130
|
target.name = spl.slice(0, -1).join('_');
|
2120
2131
|
|
2121
2132
|
if (builtinFuncs['__' + target.name + '_' + protoName]) protoName = null;
|
2122
|
-
else if (lookupName(scope, target.name)[0] == null && !builtinFuncs
|
2133
|
+
else if (lookupName(scope, target.name)[0] == null && !Object.hasOwn(builtinFuncs, target.name)) {
|
2123
2134
|
if (lookupName(scope, '__' + target.name)[0] != null || builtinFuncs['__' + target.name]) target.name = '__' + target.name;
|
2124
2135
|
else protoName = null;
|
2125
2136
|
}
|
@@ -2177,38 +2188,14 @@ const generateCall = (scope, decl, _global, _name, unusedValue = false) => {
|
|
2177
2188
|
...generate(scope, decl.arguments[0] ?? DEFAULT_VALUE()),
|
2178
2189
|
[ Opcodes.local_tee, valTmp ],
|
2179
2190
|
...getNodeType(scope, decl.arguments[0] ?? DEFAULT_VALUE()),
|
2180
|
-
[ Opcodes.local_tee, typeTmp ]
|
2181
|
-
|
2182
|
-
// check not undefined or null if not in precompile
|
2183
|
-
// todo: technically this should be allowed sometimes but for now, never
|
2184
|
-
...(globalThis.precompile ? [] : [
|
2185
|
-
...nullish(scope,
|
2186
|
-
[ [ Opcodes.local_get, valTmp ] ],
|
2187
|
-
[ [ Opcodes.local_get, typeTmp ] ],
|
2188
|
-
false, true),
|
2189
|
-
[ Opcodes.if, Blocktype.void ],
|
2190
|
-
...internalThrow(scope, 'TypeError', `Cannot use undefined or null as 'this'`),
|
2191
|
-
[ Opcodes.end ]
|
2192
|
-
])
|
2191
|
+
[ Opcodes.local_tee, typeTmp ]
|
2193
2192
|
],
|
2194
2193
|
_thisWasmComponents: {
|
2195
2194
|
_callValue: [
|
2196
2195
|
...generate(scope, decl.arguments[0] ?? DEFAULT_VALUE()),
|
2197
2196
|
[ Opcodes.local_tee, valTmp ],
|
2198
2197
|
...getNodeType(scope, decl.arguments[0] ?? DEFAULT_VALUE()),
|
2199
|
-
[ Opcodes.local_set, typeTmp ]
|
2200
|
-
|
2201
|
-
// check not undefined or null if not in precompile
|
2202
|
-
// todo: technically this should be allowed sometimes but for now, never
|
2203
|
-
...(globalThis.precompile ? [] : [
|
2204
|
-
...nullish(scope,
|
2205
|
-
[ [ Opcodes.local_get, valTmp ] ],
|
2206
|
-
[ [ Opcodes.local_get, typeTmp ] ],
|
2207
|
-
false, true),
|
2208
|
-
[ Opcodes.if, Blocktype.void ],
|
2209
|
-
...internalThrow(scope, 'TypeError', `Cannot use undefined or null as 'this'`),
|
2210
|
-
[ Opcodes.end ]
|
2211
|
-
])
|
2198
|
+
[ Opcodes.local_set, typeTmp ]
|
2212
2199
|
],
|
2213
2200
|
_callType: [ [ Opcodes.local_get, typeTmp ] ]
|
2214
2201
|
}
|
@@ -3282,7 +3269,7 @@ const generateVarDstr = (scope, kind, pattern, init, defaultValue, global) => {
|
|
3282
3269
|
const [ _func, out ] = generateFunc(scope, init, true);
|
3283
3270
|
|
3284
3271
|
const funcName = init.id?.name;
|
3285
|
-
if (name !== funcName && funcIndex
|
3272
|
+
if (name !== funcName && Object.hasOwn(funcIndex, funcName)) {
|
3286
3273
|
funcIndex[name] = funcIndex[funcName];
|
3287
3274
|
delete funcIndex[funcName];
|
3288
3275
|
}
|
@@ -5657,7 +5644,6 @@ const generateObject = (scope, decl, global = false, name = '$undeclared') => {
|
|
5657
5644
|
}
|
5658
5645
|
|
5659
5646
|
out.push(Opcodes.i32_from_u);
|
5660
|
-
|
5661
5647
|
return out;
|
5662
5648
|
};
|
5663
5649
|
|
@@ -6402,7 +6388,7 @@ const generateTaggedTemplate = (scope, decl, global = false, name = undefined, v
|
|
6402
6388
|
const immediates = asm.slice(1).map(x => {
|
6403
6389
|
const n = parseFloat(x);
|
6404
6390
|
if (Number.isNaN(n) && x !== 'NaN') {
|
6405
|
-
if (builtinFuncs
|
6391
|
+
if (Object.hasOwn(builtinFuncs, x)) {
|
6406
6392
|
if (funcIndex[x] == null) includeBuiltin(scope, x);
|
6407
6393
|
return funcIndex[x];
|
6408
6394
|
}
|
@@ -6441,7 +6427,7 @@ const generateTaggedTemplate = (scope, decl, global = false, name = undefined, v
|
|
6441
6427
|
};
|
6442
6428
|
|
6443
6429
|
const { quasis, expressions } = decl.quasi;
|
6444
|
-
if (intrinsics
|
6430
|
+
if (Object.hasOwn(intrinsics, decl.tag.name)) {
|
6445
6431
|
let str = quasis[0].value.raw;
|
6446
6432
|
|
6447
6433
|
for (let i = 0; i < expressions.length; i++) {
|
@@ -6653,19 +6639,40 @@ const generateFunc = (scope, decl, forceNoExpr = false) => {
|
|
6653
6639
|
number(TYPES.string, Valtype.i32),
|
6654
6640
|
[ Opcodes.i32_ne ],
|
6655
6641
|
[ Opcodes.if, Blocktype.void ],
|
6642
|
+
[ Opcodes.local_get, func.locals[name].idx + 1 ],
|
6643
|
+
number(TYPE_FLAGS.parity, Valtype.i32),
|
6644
|
+
[ Opcodes.i32_or ],
|
6645
|
+
number(TYPES.undefined, Valtype.i32),
|
6646
|
+
[ Opcodes.i32_eq ],
|
6647
|
+
|
6648
|
+
[ Opcodes.local_get, func.locals[name].idx + 1 ],
|
6649
|
+
number(TYPES.object, Valtype.i32),
|
6650
|
+
[ Opcodes.i32_eq ],
|
6651
|
+
[ Opcodes.local_get, func.locals[name].idx ],
|
6652
|
+
...Opcodes.eqz,
|
6653
|
+
[ Opcodes.i32_and ],
|
6654
|
+
|
6655
|
+
[ Opcodes.i32_or ],
|
6656
|
+
[ Opcodes.if, Blocktype.void ],
|
6657
|
+
...internalThrow(func, 'TypeError', `${unhackName(func.name)} expects 'this' to be non-nullish`),
|
6658
|
+
[ Opcodes.end ],
|
6659
|
+
|
6656
6660
|
[ Opcodes.local_get, func.locals[name].idx ],
|
6657
|
-
[ Opcodes.f64_convert_i32_s ],
|
6661
|
+
...(valtypeBinary === Valtype.i32 ? [ [ Opcodes.f64_convert_i32_s ] ] : []),
|
6658
6662
|
[ Opcodes.local_get, func.locals[name].idx + 1 ],
|
6659
6663
|
[ Opcodes.call, includeBuiltin(scope, '__ecma262_ToString').index ],
|
6660
6664
|
[ Opcodes.local_set, func.locals[name].idx + 1 ],
|
6661
|
-
Opcodes.i32_trunc_sat_f64_s,
|
6665
|
+
...(valtypeBinary === Valtype.i32 ? [ Opcodes.i32_trunc_sat_f64_s ] : []),
|
6662
6666
|
[ Opcodes.local_set, func.locals[name].idx ],
|
6667
|
+
|
6663
6668
|
[ Opcodes.local_get, func.locals[name].idx + 1 ],
|
6664
6669
|
number(TYPES.bytestring, Valtype.i32),
|
6665
6670
|
[ Opcodes.i32_eq ],
|
6666
6671
|
[ Opcodes.if, Blocktype.void ],
|
6667
6672
|
[ Opcodes.local_get, func.locals[name].idx ],
|
6673
|
+
Opcodes.i32_to_u,
|
6668
6674
|
[ Opcodes.call, includeBuiltin(scope, '__Porffor_bytestringToString').index ],
|
6675
|
+
Opcodes.i32_from_u,
|
6669
6676
|
[ Opcodes.local_set, func.locals[name].idx ],
|
6670
6677
|
[ Opcodes.end ],
|
6671
6678
|
[ Opcodes.end ]
|
package/package.json
CHANGED