porffor 0.41.2 → 0.41.3
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/_internal_string.ts +0 -4
- package/compiler/builtins/object.ts +2 -1
- package/compiler/builtins/porffor.d.ts +4 -2
- package/compiler/builtins/string_f64.ts +30 -5
- package/compiler/builtins/z_ecma262.ts +6 -0
- package/compiler/builtins_precompiled.js +59 -58
- package/compiler/codegen.js +40 -16
- package/compiler/types.js +1 -0
- package/compiler/wrap.js +2 -0
- package/package.json +1 -1
- package/runner/index.js +1 -1
@@ -16,7 +16,6 @@ export const __Porffor_compareStrings = (a: any, b: any): boolean => {
|
|
16
16
|
|
17
17
|
// todo/perf: just use a.toString()?
|
18
18
|
a = ecma262.ToString(a);
|
19
|
-
at = Porffor.rawType(a);
|
20
19
|
}
|
21
20
|
|
22
21
|
if ((bt | 0b10000000) != Porffor.TYPES.bytestring) {
|
@@ -31,7 +30,6 @@ export const __Porffor_compareStrings = (a: any, b: any): boolean => {
|
|
31
30
|
|
32
31
|
// todo/perf: just use b.toString()?
|
33
32
|
b = ecma262.ToString(b);
|
34
|
-
bt = Porffor.rawType(b);
|
35
33
|
}
|
36
34
|
|
37
35
|
return Porffor.strcmp(a, b);
|
@@ -45,14 +43,12 @@ export const __Porffor_concatStrings = (a: any, b: any): boolean => {
|
|
45
43
|
// a is not string or bytestring
|
46
44
|
// todo/perf: just use a.toString()?
|
47
45
|
a = ecma262.ToString(a);
|
48
|
-
at = Porffor.rawType(a);
|
49
46
|
}
|
50
47
|
|
51
48
|
if ((bt | 0b10000000) != Porffor.TYPES.bytestring) {
|
52
49
|
// b is not string or bytestring
|
53
50
|
// todo/perf: just use b.toString()?
|
54
51
|
b = ecma262.ToString(b);
|
55
|
-
bt = Porffor.rawType(b);
|
56
52
|
}
|
57
53
|
|
58
54
|
return Porffor.strcat(a, b);
|
@@ -703,7 +703,8 @@ export const __Object_prototype_toString = (_this: any) => {
|
|
703
703
|
t == Porffor.TYPES.numberobject)) return out = '[object Number]';
|
704
704
|
if (Porffor.fastOr(
|
705
705
|
t == Porffor.TYPES.string,
|
706
|
-
t == Porffor.TYPES.bytestring
|
706
|
+
t == Porffor.TYPES.bytestring,
|
707
|
+
t == Porffor.TYPES.stringobject)) return out = '[object String]';
|
707
708
|
if (t == Porffor.TYPES.date) return out = '[object Date]';
|
708
709
|
if (t == Porffor.TYPES.regexp) return out = '[object RegExp]';
|
709
710
|
|
@@ -4,7 +4,8 @@ export type f64 = number;
|
|
4
4
|
export type bytestring = string;
|
5
5
|
|
6
6
|
export type BooleanObject = Boolean;
|
7
|
-
export type NumberObject =
|
7
|
+
export type NumberObject = Number;
|
8
|
+
export type StringObject = String;
|
8
9
|
|
9
10
|
type PorfforGlobal = {
|
10
11
|
wasm: {
|
@@ -146,5 +147,6 @@ declare global {
|
|
146
147
|
type bytestring = string;
|
147
148
|
|
148
149
|
type BooleanObject = Boolean;
|
149
|
-
type NumberObject =
|
150
|
+
type NumberObject = Number;
|
151
|
+
type StringObject = String;
|
150
152
|
}
|
@@ -1,10 +1,35 @@
|
|
1
1
|
import type {} from './porffor.d.ts';
|
2
2
|
|
3
|
-
//
|
4
|
-
//
|
5
|
-
export const String = function (
|
6
|
-
|
7
|
-
|
3
|
+
// 22.1.1.1 String (value)
|
4
|
+
// https://tc39.es/ecma262/#sec-string-constructor-string-value
|
5
|
+
export const String = function (...args: any[]): string|bytestring|StringObject {
|
6
|
+
let s: bytestring|string = '';
|
7
|
+
|
8
|
+
// 1. If value is not present, then
|
9
|
+
// a. Let s be the empty String.
|
10
|
+
// s is already empty
|
11
|
+
|
12
|
+
// 2. Else,
|
13
|
+
if (args.length > 0) {
|
14
|
+
const value: any = args[0];
|
15
|
+
|
16
|
+
// a. If NewTarget is undefined and value is a Symbol, return SymbolDescriptiveString(value).
|
17
|
+
if (!new.target && Porffor.rawType(value) == Porffor.TYPES.symbol) return __Symbol_prototype_toString(value);
|
18
|
+
|
19
|
+
// b. Let s be ? ToString(value).
|
20
|
+
s = ecma262.ToString(value);
|
21
|
+
}
|
22
|
+
|
23
|
+
// 3. If NewTarget is undefined, return s.
|
24
|
+
if (!new.target) return s;
|
25
|
+
|
26
|
+
// 4. Return StringCreate(s, ? GetPrototypeFromConstructor(NewTarget, "%String.prototype%")).
|
27
|
+
|
28
|
+
// force bytestrings to strings
|
29
|
+
if (Porffor.rawType(s) == Porffor.TYPES.bytestring) s = Porffor.bytestringToString(s, s.length);
|
30
|
+
|
31
|
+
const O: StringObject = s;
|
32
|
+
return O;
|
8
33
|
};
|
9
34
|
|
10
35
|
export const __String_fromCharCode = (...codes: any[]): bytestring|string => {
|
@@ -154,6 +154,12 @@ export const __ecma262_ToString = (argument: unknown): any => {
|
|
154
154
|
|
155
155
|
// 8. If argument is a BigInt, return BigInt::toString(argument, 10).
|
156
156
|
|
157
|
+
// hack: StringObject -> String
|
158
|
+
if (type == Porffor.TYPES.stringobject) {
|
159
|
+
const remap: string = argument;
|
160
|
+
return remap;
|
161
|
+
}
|
162
|
+
|
157
163
|
// 9. Assert: argument is an Object.
|
158
164
|
// 10. Let primValue be ? ToPrimitive(argument, string).
|
159
165
|
const primValue: any = __ecma262_ToPrimitive_String(argument);
|
@@ -3,7 +3,7 @@ import { number } from './embedding.js';
|
|
3
3
|
|
4
4
|
export const BuiltinFuncs = function() {
|
5
5
|
this.__Porffor_object_underlying = {
|
6
|
-
wasm:(_,{allocPage,glbl,builtin})=>[[32,1],[184],[34,2],[68,7],[97],[4,64],[32,0],[32,1],[15],[11],[32,2],[68,
|
6
|
+
wasm:(_,{allocPage,glbl,builtin})=>[[32,1],[184],[34,2],[68,7],[97],[4,64],[32,0],[32,1],[15],[11],[32,2],[68,40],[102],[32,2],[68,49],[101],[113],[4,64],[32,0],[34,3],[65,7],[15],[11],[32,2],[68,5],[100],[32,2],[68,128],[98],[113],[4,64],...glbl(35,'underlyingKeys',124),[33,5],[65,208,0],[33,6],[32,5],[32,6],[32,0],[32,1],[68,0],[65,128,1],[16,builtin('__Array_prototype_indexOf')],[33,7],[34,4],[68,-1],[97],[4,64],[16,builtin('__Porffor_allocate')],[184],[33,8],[32,2],[68,6],[97],[4,64],[32,0],[252,2],[16,builtin('__Porffor_funcLut_flags')],[183],[34,9],[68,2],[16,builtin('f64_&')],[252,3],[4,64],[16,builtin('__Porffor_allocate')],[184],[33,10],[65,7],[33,11],...number(allocPage(_,'bytestring: __Porffor_object_underlying/key1','i8'),124),[33,12],[32,8],[252,2],[65,7],[32,12],[252,2],[65,195,1],[32,10],[32,11],[65,8],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],...number(allocPage(_,'bytestring: __Porffor_object_underlying/key2','i8'),124),[33,13],[32,10],[252,2],[32,11],[32,13],[252,2],[65,195,1],[32,0],[32,1],[65,10],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[11],[11],[32,2],[68,80],[97],[4,64],[32,0],[34,14],[252,3],[40,1,0],[184],[33,15],...number(allocPage(_,'bytestring: __Porffor_object_underlying/key3','i8'),124),[33,16],[32,8],[252,2],[65,7],[32,16],[252,2],[65,195,1],[32,15],[65,1],[65,8],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[68,0],[33,17],[3,64],[32,17],[32,15],[99],[4,64],[32,8],[252,2],[65,7],[32,17],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[252,2],[32,7],[32,14],[33,18],[32,17],[34,19],[252,3],[65,9],[108],[32,18],[252,3],[106],[34,20],[43,0,4],[32,20],[45,0,12],[34,7],[65,14],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[32,17],[68,1],[160],[33,17],[12,1],[11],[11],[11],[32,2],[68,67],[97],[4,64],[32,0],[34,21],[252,3],[40,1,0],[184],[33,15],[32,16],[252,3],[34,22],[65,6],[54,1,0],[32,22],[65,236,0],[58,0,4],[32,22],[65,229,0],[58,0,5],[32,22],[65,238,0],[58,0,6],[32,22],[65,231,0],[58,0,7],[32,22],[65,244,0],[58,0,8],[32,22],[65,232,0],[58,0,9],[32,22],[184],[33,16],[32,8],[252,2],[65,7],[32,12],[252,2],[65,195,1],[32,15],[65,1],[65,0],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[68,0],[33,17],[3,64],[32,17],[32,15],[99],[4,64],[32,8],[252,2],[65,7],[32,17],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[252,2],[32,7],[32,21],[33,18],[32,17],[33,19],[16,builtin('__Porffor_allocate')],[34,23],[65,1],[54,0,0],[32,23],[32,19],[252,3],[65,2],[108],[32,18],[252,3],[106],[47,0,4],[59,0,4],[32,23],[184],[65,195,0],[33,7],[65,195,0],[65,4],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[32,17],[68,1],[160],[33,17],[12,1],[11],[11],[32,8],[252,2],[65,7],[16,builtin('__Porffor_object_preventExtensions')],[33,7],[183],[26],[11],[32,2],[68,195],[97],[4,64],[32,0],[34,21],[252,3],[40,1,0],[184],[33,15],[32,16],[252,3],[34,22],[65,6],[54,1,0],[32,22],[65,236,0],[58,0,4],[32,22],[65,229,0],[58,0,5],[32,22],[65,238,0],[58,0,6],[32,22],[65,231,0],[58,0,7],[32,22],[65,244,0],[58,0,8],[32,22],[65,232,0],[58,0,9],[32,22],[184],[33,16],[32,8],[252,2],[65,7],[32,12],[252,2],[65,195,1],[32,15],[65,1],[65,0],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[68,0],[33,17],[3,64],[32,17],[32,15],[99],[4,64],[32,8],[252,2],[65,7],[32,17],[65,1],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[252,2],[32,7],[32,21],[33,18],[32,17],[33,19],[16,builtin('__Porffor_allocate')],[34,23],[65,1],[54,0,0],[32,23],[32,19],[252,3],[32,18],[252,3],[106],[45,0,4],[58,0,4],[32,23],[184],[65,195,1],[33,7],[65,195,1],[65,4],[65,1],[16,builtin('__Porffor_object_expr_initWithFlags')],[33,7],[183],[26],[32,17],[68,1],[160],[33,17],[12,1],[11],[11],[32,8],[252,2],[65,7],[16,builtin('__Porffor_object_preventExtensions')],[33,7],[183],[26],[11],...glbl(35,'underlyingVals',124),[65,208,0],[32,8],[65,7],[16,builtin('__Porffor_array_fastPush')],[33,7],[26],...glbl(35,'underlyingKeys',124),[65,208,0],[32,0],[32,1],[16,builtin('__Porffor_array_fastPush')],[33,7],[68,1],[161],[33,4],[11],...glbl(35,'underlyingVals',124),[33,18],[32,4],[34,19],[252,3],[65,9],[108],[32,18],[252,3],[106],[34,20],[43,0,4],[32,20],[45,0,12],[34,7],[15],[11],[32,0],[32,1],[15]],
|
7
7
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
8
8
|
locals:[124,124,124,124,127,127,124,124,124,127,124,124,124,124,124,124,124,124,127,124,127,127],localNames:["obj","obj#type","t","remap","idx","#proto_target","#proto_target#type","#last_type","underlying","flags","proto","proto#type","key1","key2","arr","len","key3","i","#member_obj","#member_prop","#loadArray_offset","str","#makearray_pointer_tmp","#member_allocd"],
|
9
9
|
usedTypes:[7,80,195,67],
|
@@ -163,12 +163,12 @@ params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
|
163
163
|
locals:[127,127,127,127,127,127,127],localNames:["obj","obj#type","key","key#type","set","set#type","#last_type","entryPtr","get","get#type","#logicinner_tmp","#typeswitch_tmp1","size"],
|
164
164
|
};
|
165
165
|
this.__Porffor_compareStrings = {
|
166
|
-
wasm:(_,{t,builtin})=>[[32,1],[184],[33,4],[32,3],[184],[33,5],[32,4],[68,128],[16,builtin('f64_|')],[68,195],[98],[4,64],[32,0],[33,6],[32,1],[33,7],[2,127],...t([0,128],()=>[[32,7],[65,0],[70],[32,7],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,7],[65,7],[70],[4,64],[32,6],[68,0],[97],[12,1],[11]]),[65,0],[11],[32,4],[68,5],[97],[114],[32,4],[68,2],[97],[114],[4,64],[68,0],[65,2],[15],[11],[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,8],[33,1],[33,0],[
|
166
|
+
wasm:(_,{t,builtin})=>[[32,1],[184],[33,4],[32,3],[184],[33,5],[32,4],[68,128],[16,builtin('f64_|')],[68,195],[98],[4,64],[32,0],[33,6],[32,1],[33,7],[2,127],...t([0,128],()=>[[32,7],[65,0],[70],[32,7],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,7],[65,7],[70],[4,64],[32,6],[68,0],[97],[12,1],[11]]),[65,0],[11],[32,4],[68,5],[97],[114],[32,4],[68,2],[97],[114],[4,64],[68,0],[65,2],[15],[11],[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,8],[33,1],[33,0],[11],[32,5],[68,128],[16,builtin('f64_|')],[68,195],[98],[4,64],[32,2],[33,6],[32,3],[33,7],[2,127],...t([0,128],()=>[[32,7],[65,0],[70],[32,7],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,7],[65,7],[70],[4,64],[32,6],[68,0],[97],[12,1],[11]]),[65,0],[11],[32,5],[68,5],[97],[114],[32,5],[68,2],[97],[114],[4,64],[68,0],[65,2],[15],[11],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,8],[33,3],[33,2],[11],[32,0],[252,2],[32,1],[32,2],[252,2],[32,3],[16,builtin('__Porffor_strcmp')],[33,8],[183],[32,8],[15]],
|
167
167
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
168
168
|
locals:[124,124,124,127,127],localNames:["a","a#type","b","b#type","at","bt","#logicinner_tmp","#typeswitch_tmp1","#last_type"],
|
169
169
|
};
|
170
170
|
this.__Porffor_concatStrings = {
|
171
|
-
wasm:(_,{builtin})=>[[32,1],[184],[33,4],[32,3],[184],[33,5],[32,4],[68,128],[16,builtin('f64_|')],[68,195],[98],[4,64],[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,1],[33,0],[
|
171
|
+
wasm:(_,{builtin})=>[[32,1],[184],[33,4],[32,3],[184],[33,5],[32,4],[68,128],[16,builtin('f64_|')],[68,195],[98],[4,64],[32,0],[32,1],[16,builtin('__ecma262_ToString')],[34,6],[33,1],[33,0],[11],[32,5],[68,128],[16,builtin('f64_|')],[68,195],[98],[4,64],[32,2],[32,3],[16,builtin('__ecma262_ToString')],[34,6],[33,3],[33,2],[11],[32,0],[252,2],[32,1],[32,2],[252,2],[32,3],[16,builtin('__Porffor_strcat')],[33,6],[183],[32,6],[15]],
|
172
172
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
173
173
|
locals:[124,124,127],localNames:["a","a#type","b","b#type","at","bt","#last_type"],
|
174
174
|
};
|
@@ -508,7 +508,7 @@ usedTypes:[80],
|
|
508
508
|
table:1,
|
509
509
|
};
|
510
510
|
this.__Porffor_strlt = {
|
511
|
-
wasm:(_,{t,internalThrow})=>[[68,"-Infinity"],[32,0],[252,3],[40,1,0],[184],[165],[32,2],[252,3],[40,1,0],[184],[165],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,9],[2,124],...t([67],()=>[[32,9],[65,195,0],[70],[4,64],[32,5],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,11],[12,1],[11]]),...t([195],()=>[[32,9],[65,195,1],[70],[4,64],[32,5],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,11],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[33,6],[32,2],[252,3],[40,1,0],[33,7],[32,3],[33,9],[2,124],...t([67],()=>[[32,9],[65,195,0],[70],[4,64],[32,5],[252,2],[65,2],[108],[32,2],[252,3],[106],[47,0,4],[184],[65,1],[33,11],[12,1],[11]]),...t([195],()=>[[32,9],[65,195,1],[70],[4,64],[32,5],[252,2],[32,2],[252,3],[106],[45,0,4],[184],[65,1],[33,11],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[33,12],[32,6],[32,12],[99],[4,64],[68,1],[65,2],[15],[11],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[68,0],[65,2],[15]],
|
511
|
+
wasm:(_,{t,internalThrow})=>[[68,"-Infinity"],[32,0],[252,3],[40,1,0],[184],[165],[32,2],[252,3],[40,1,0],[184],[165],[33,4],[68,0],[33,5],[3,64],[32,5],[32,4],[99],[4,64],[2,64],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,9],[2,124],...t([39],()=>[[32,9],[65,39],[70],[4,64],[32,5],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,11],[12,1],[11]]),...t([67],()=>[[32,9],[65,195,0],[70],[4,64],[32,5],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,11],[12,1],[11]]),...t([195],()=>[[32,9],[65,195,1],[70],[4,64],[32,5],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,11],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[33,6],[32,2],[252,3],[40,1,0],[33,7],[32,3],[33,9],[2,124],...t([39],()=>[[32,9],[65,39],[70],[4,64],[32,5],[252,2],[65,2],[108],[32,2],[252,3],[106],[47,0,4],[184],[65,1],[33,11],[12,1],[11]]),...t([67],()=>[[32,9],[65,195,0],[70],[4,64],[32,5],[252,2],[65,2],[108],[32,2],[252,3],[106],[47,0,4],[184],[65,1],[33,11],[12,1],[11]]),...t([195],()=>[[32,9],[65,195,1],[70],[4,64],[32,5],[252,2],[32,2],[252,3],[106],[45,0,4],[184],[65,1],[33,11],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[33,12],[32,6],[32,12],[99],[4,64],[68,1],[65,2],[15],[11],[11],[32,5],[68,1],[160],[33,5],[12,1],[11],[11],[68,0],[65,2],[15]],
|
512
512
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
513
513
|
locals:[124,124,124,127,127,127,127,127,124],localNames:["a","a#type","b","b#type","maxLength","i","ac","__proto_length_cache","__proto_pointer_cache","#typeswitch_tmp1","__charCodeAt_tmp","#last_type","bc"],
|
514
514
|
};
|
@@ -1473,10 +1473,10 @@ usedTypes:[18],
|
|
1473
1473
|
constr:1,
|
1474
1474
|
};
|
1475
1475
|
this.Error = {
|
1476
|
-
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: Error/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: Error/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('Error'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,
|
1476
|
+
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: Error/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: Error/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('Error'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,40],[15]],
|
1477
1477
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1478
1478
|
locals:[124,127,124,124,124,127,124,124,127,124],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type","_empty","#last_type","obj","_name","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","out"],
|
1479
|
-
usedTypes:[195,7,
|
1479
|
+
usedTypes:[195,7,40],
|
1480
1480
|
data:{"bytestring: Error/_name":[5,0,0,0,69,114,114,111,114]},
|
1481
1481
|
constr:1,
|
1482
1482
|
};
|
@@ -1484,14 +1484,14 @@ this.__Error_prototype_toString = {
|
|
1484
1484
|
wasm:(_,{allocPage,builtin})=>[[32,0],[34,2],[33,5],...number(allocPage(_,'bytestring: __Error_prototype_toString/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,7],[54,1,0],[32,8],[65,237,0],[58,0,4],[32,8],[65,229,0],[58,0,5],[32,8],[65,243,0],[58,0,6],[32,8],[65,243,0],[58,0,7],[32,8],[65,225,0],[58,0,8],[32,8],[65,231,0],[58,0,9],[32,8],[65,229,0],[58,0,10],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[34,3],[252,3],[40,1,0],[184],[68,0],[97],[65,1],[65,128,1],[114],[65,1],[65,128,1],[114],[70],[113],[4,64],[32,2],[33,5],[68,196608],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[15],[11],...number(allocPage(_,'bytestring: __Error_prototype_toString/bridge','i8'),124),[33,9],[32,2],[33,5],[68,196608],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[32,9],[65,195,1],[16,builtin('__Porffor_concatStrings')],[34,7],[32,3],[32,4],[16,builtin('__Porffor_concatStrings')],[34,7],[15]],
|
1485
1485
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1486
1486
|
locals:[124,124,127,124,124,127,127,124],localNames:["_this","_this#type","obj","message","message#type","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp","bridge"],
|
1487
|
-
usedTypes:[
|
1487
|
+
usedTypes:[40,7,195],
|
1488
1488
|
data:{"bytestring: __Error_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1489
1489
|
};
|
1490
1490
|
this.AggregateError = {
|
1491
|
-
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: AggregateError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: AggregateError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('AggregateError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,
|
1491
|
+
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: AggregateError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: AggregateError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('AggregateError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,41],[15]],
|
1492
1492
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1493
1493
|
locals:[124,127,124,124,124,127,124,124,127,124],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type","_empty","#last_type","obj","_name","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","out"],
|
1494
|
-
usedTypes:[195,7,
|
1494
|
+
usedTypes:[195,7,41],
|
1495
1495
|
data:{"bytestring: AggregateError/_name":[14,0,0,0,65,103,103,114,101,103,97,116,101,69,114,114,111,114]},
|
1496
1496
|
constr:1,
|
1497
1497
|
};
|
@@ -1499,14 +1499,14 @@ this.__AggregateError_prototype_toString = {
|
|
1499
1499
|
wasm:(_,{allocPage,builtin})=>[[32,0],[34,2],[33,5],...number(allocPage(_,'bytestring: __AggregateError_prototype_toString/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,7],[54,1,0],[32,8],[65,237,0],[58,0,4],[32,8],[65,229,0],[58,0,5],[32,8],[65,243,0],[58,0,6],[32,8],[65,243,0],[58,0,7],[32,8],[65,225,0],[58,0,8],[32,8],[65,231,0],[58,0,9],[32,8],[65,229,0],[58,0,10],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[34,3],[252,3],[40,1,0],[184],[68,0],[97],[65,1],[65,128,1],[114],[65,1],[65,128,1],[114],[70],[113],[4,64],[32,2],[33,5],[68,524288],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[15],[11],...number(allocPage(_,'bytestring: __AggregateError_prototype_toString/bridge','i8'),124),[33,9],[32,2],[33,5],[68,524288],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[32,9],[65,195,1],[16,builtin('__Porffor_concatStrings')],[34,7],[32,3],[32,4],[16,builtin('__Porffor_concatStrings')],[34,7],[15]],
|
1500
1500
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1501
1501
|
locals:[124,124,127,124,124,127,127,124],localNames:["_this","_this#type","obj","message","message#type","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp","bridge"],
|
1502
|
-
usedTypes:[
|
1502
|
+
usedTypes:[41,7,195],
|
1503
1503
|
data:{"bytestring: __AggregateError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1504
1504
|
};
|
1505
1505
|
this.TypeError = {
|
1506
|
-
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: TypeError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: TypeError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('TypeError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,
|
1506
|
+
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: TypeError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: TypeError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('TypeError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,42],[15]],
|
1507
1507
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1508
1508
|
locals:[124,127,124,124,124,127,124,124,127,124],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type","_empty","#last_type","obj","_name","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","out"],
|
1509
|
-
usedTypes:[195,7,
|
1509
|
+
usedTypes:[195,7,42],
|
1510
1510
|
data:{"bytestring: TypeError/_name":[9,0,0,0,84,121,112,101,69,114,114,111,114]},
|
1511
1511
|
constr:1,
|
1512
1512
|
};
|
@@ -1514,14 +1514,14 @@ this.__TypeError_prototype_toString = {
|
|
1514
1514
|
wasm:(_,{allocPage,builtin})=>[[32,0],[34,2],[33,5],...number(allocPage(_,'bytestring: __TypeError_prototype_toString/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,7],[54,1,0],[32,8],[65,237,0],[58,0,4],[32,8],[65,229,0],[58,0,5],[32,8],[65,243,0],[58,0,6],[32,8],[65,243,0],[58,0,7],[32,8],[65,225,0],[58,0,8],[32,8],[65,231,0],[58,0,9],[32,8],[65,229,0],[58,0,10],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[34,3],[252,3],[40,1,0],[184],[68,0],[97],[65,1],[65,128,1],[114],[65,1],[65,128,1],[114],[70],[113],[4,64],[32,2],[33,5],[68,851968],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[15],[11],...number(allocPage(_,'bytestring: __TypeError_prototype_toString/bridge','i8'),124),[33,9],[32,2],[33,5],[68,851968],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[32,9],[65,195,1],[16,builtin('__Porffor_concatStrings')],[34,7],[32,3],[32,4],[16,builtin('__Porffor_concatStrings')],[34,7],[15]],
|
1515
1515
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1516
1516
|
locals:[124,124,127,124,124,127,127,124],localNames:["_this","_this#type","obj","message","message#type","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp","bridge"],
|
1517
|
-
usedTypes:[
|
1517
|
+
usedTypes:[42,7,195],
|
1518
1518
|
data:{"bytestring: __TypeError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1519
1519
|
};
|
1520
1520
|
this.ReferenceError = {
|
1521
|
-
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: ReferenceError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: ReferenceError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('ReferenceError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,
|
1521
|
+
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: ReferenceError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: ReferenceError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('ReferenceError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,43],[15]],
|
1522
1522
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1523
1523
|
locals:[124,127,124,124,124,127,124,124,127,124],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type","_empty","#last_type","obj","_name","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","out"],
|
1524
|
-
usedTypes:[195,7,
|
1524
|
+
usedTypes:[195,7,43],
|
1525
1525
|
data:{"bytestring: ReferenceError/_name":[14,0,0,0,82,101,102,101,114,101,110,99,101,69,114,114,111,114]},
|
1526
1526
|
constr:1,
|
1527
1527
|
};
|
@@ -1529,14 +1529,14 @@ this.__ReferenceError_prototype_toString = {
|
|
1529
1529
|
wasm:(_,{allocPage,builtin})=>[[32,0],[34,2],[33,5],...number(allocPage(_,'bytestring: __ReferenceError_prototype_toString/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,7],[54,1,0],[32,8],[65,237,0],[58,0,4],[32,8],[65,229,0],[58,0,5],[32,8],[65,243,0],[58,0,6],[32,8],[65,243,0],[58,0,7],[32,8],[65,225,0],[58,0,8],[32,8],[65,231,0],[58,0,9],[32,8],[65,229,0],[58,0,10],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[34,3],[252,3],[40,1,0],[184],[68,0],[97],[65,1],[65,128,1],[114],[65,1],[65,128,1],[114],[70],[113],[4,64],[32,2],[33,5],[68,1179648],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[15],[11],...number(allocPage(_,'bytestring: __ReferenceError_prototype_toString/bridge','i8'),124),[33,9],[32,2],[33,5],[68,1179648],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[32,9],[65,195,1],[16,builtin('__Porffor_concatStrings')],[34,7],[32,3],[32,4],[16,builtin('__Porffor_concatStrings')],[34,7],[15]],
|
1530
1530
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1531
1531
|
locals:[124,124,127,124,124,127,127,124],localNames:["_this","_this#type","obj","message","message#type","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp","bridge"],
|
1532
|
-
usedTypes:[
|
1532
|
+
usedTypes:[43,7,195],
|
1533
1533
|
data:{"bytestring: __ReferenceError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1534
1534
|
};
|
1535
1535
|
this.SyntaxError = {
|
1536
|
-
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: SyntaxError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: SyntaxError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('SyntaxError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,
|
1536
|
+
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: SyntaxError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: SyntaxError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('SyntaxError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,44],[15]],
|
1537
1537
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1538
1538
|
locals:[124,127,124,124,124,127,124,124,127,124],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type","_empty","#last_type","obj","_name","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","out"],
|
1539
|
-
usedTypes:[195,7,
|
1539
|
+
usedTypes:[195,7,44],
|
1540
1540
|
data:{"bytestring: SyntaxError/_name":[11,0,0,0,83,121,110,116,97,120,69,114,114,111,114]},
|
1541
1541
|
constr:1,
|
1542
1542
|
};
|
@@ -1544,14 +1544,14 @@ this.__SyntaxError_prototype_toString = {
|
|
1544
1544
|
wasm:(_,{allocPage,builtin})=>[[32,0],[34,2],[33,5],...number(allocPage(_,'bytestring: __SyntaxError_prototype_toString/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,7],[54,1,0],[32,8],[65,237,0],[58,0,4],[32,8],[65,229,0],[58,0,5],[32,8],[65,243,0],[58,0,6],[32,8],[65,243,0],[58,0,7],[32,8],[65,225,0],[58,0,8],[32,8],[65,231,0],[58,0,9],[32,8],[65,229,0],[58,0,10],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[34,3],[252,3],[40,1,0],[184],[68,0],[97],[65,1],[65,128,1],[114],[65,1],[65,128,1],[114],[70],[113],[4,64],[32,2],[33,5],[68,1507328],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[15],[11],...number(allocPage(_,'bytestring: __SyntaxError_prototype_toString/bridge','i8'),124),[33,9],[32,2],[33,5],[68,1507328],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[32,9],[65,195,1],[16,builtin('__Porffor_concatStrings')],[34,7],[32,3],[32,4],[16,builtin('__Porffor_concatStrings')],[34,7],[15]],
|
1545
1545
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1546
1546
|
locals:[124,124,127,124,124,127,127,124],localNames:["_this","_this#type","obj","message","message#type","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp","bridge"],
|
1547
|
-
usedTypes:[
|
1547
|
+
usedTypes:[44,7,195],
|
1548
1548
|
data:{"bytestring: __SyntaxError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1549
1549
|
};
|
1550
1550
|
this.RangeError = {
|
1551
|
-
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: RangeError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: RangeError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('RangeError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,
|
1551
|
+
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: RangeError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: RangeError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('RangeError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,45],[15]],
|
1552
1552
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1553
1553
|
locals:[124,127,124,124,124,127,124,124,127,124],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type","_empty","#last_type","obj","_name","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","out"],
|
1554
|
-
usedTypes:[195,7,
|
1554
|
+
usedTypes:[195,7,45],
|
1555
1555
|
data:{"bytestring: RangeError/_name":[10,0,0,0,82,97,110,103,101,69,114,114,111,114]},
|
1556
1556
|
constr:1,
|
1557
1557
|
};
|
@@ -1559,14 +1559,14 @@ this.__RangeError_prototype_toString = {
|
|
1559
1559
|
wasm:(_,{allocPage,builtin})=>[[32,0],[34,2],[33,5],...number(allocPage(_,'bytestring: __RangeError_prototype_toString/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,7],[54,1,0],[32,8],[65,237,0],[58,0,4],[32,8],[65,229,0],[58,0,5],[32,8],[65,243,0],[58,0,6],[32,8],[65,243,0],[58,0,7],[32,8],[65,225,0],[58,0,8],[32,8],[65,231,0],[58,0,9],[32,8],[65,229,0],[58,0,10],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[34,3],[252,3],[40,1,0],[184],[68,0],[97],[65,1],[65,128,1],[114],[65,1],[65,128,1],[114],[70],[113],[4,64],[32,2],[33,5],[68,1835008],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[15],[11],...number(allocPage(_,'bytestring: __RangeError_prototype_toString/bridge','i8'),124),[33,9],[32,2],[33,5],[68,1835008],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[32,9],[65,195,1],[16,builtin('__Porffor_concatStrings')],[34,7],[32,3],[32,4],[16,builtin('__Porffor_concatStrings')],[34,7],[15]],
|
1560
1560
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1561
1561
|
locals:[124,124,127,124,124,127,127,124],localNames:["_this","_this#type","obj","message","message#type","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp","bridge"],
|
1562
|
-
usedTypes:[
|
1562
|
+
usedTypes:[45,7,195],
|
1563
1563
|
data:{"bytestring: __RangeError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1564
1564
|
};
|
1565
1565
|
this.EvalError = {
|
1566
|
-
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: EvalError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: EvalError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('EvalError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,
|
1566
|
+
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: EvalError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: EvalError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('EvalError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,46],[15]],
|
1567
1567
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1568
1568
|
locals:[124,127,124,124,124,127,124,124,127,124],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type","_empty","#last_type","obj","_name","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","out"],
|
1569
|
-
usedTypes:[195,7,
|
1569
|
+
usedTypes:[195,7,46],
|
1570
1570
|
data:{"bytestring: EvalError/_name":[9,0,0,0,69,118,97,108,69,114,114,111,114]},
|
1571
1571
|
constr:1,
|
1572
1572
|
};
|
@@ -1574,14 +1574,14 @@ this.__EvalError_prototype_toString = {
|
|
1574
1574
|
wasm:(_,{allocPage,builtin})=>[[32,0],[34,2],[33,5],...number(allocPage(_,'bytestring: __EvalError_prototype_toString/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,7],[54,1,0],[32,8],[65,237,0],[58,0,4],[32,8],[65,229,0],[58,0,5],[32,8],[65,243,0],[58,0,6],[32,8],[65,243,0],[58,0,7],[32,8],[65,225,0],[58,0,8],[32,8],[65,231,0],[58,0,9],[32,8],[65,229,0],[58,0,10],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[34,3],[252,3],[40,1,0],[184],[68,0],[97],[65,1],[65,128,1],[114],[65,1],[65,128,1],[114],[70],[113],[4,64],[32,2],[33,5],[68,2162688],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[15],[11],...number(allocPage(_,'bytestring: __EvalError_prototype_toString/bridge','i8'),124),[33,9],[32,2],[33,5],[68,2162688],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[32,9],[65,195,1],[16,builtin('__Porffor_concatStrings')],[34,7],[32,3],[32,4],[16,builtin('__Porffor_concatStrings')],[34,7],[15]],
|
1575
1575
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1576
1576
|
locals:[124,124,127,124,124,127,127,124],localNames:["_this","_this#type","obj","message","message#type","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp","bridge"],
|
1577
|
-
usedTypes:[
|
1577
|
+
usedTypes:[46,7,195],
|
1578
1578
|
data:{"bytestring: __EvalError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1579
1579
|
};
|
1580
1580
|
this.URIError = {
|
1581
|
-
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: URIError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: URIError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('URIError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,
|
1581
|
+
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: URIError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: URIError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('URIError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,47],[15]],
|
1582
1582
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1583
1583
|
locals:[124,127,124,124,124,127,124,124,127,124],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type","_empty","#last_type","obj","_name","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","out"],
|
1584
|
-
usedTypes:[195,7,
|
1584
|
+
usedTypes:[195,7,47],
|
1585
1585
|
data:{"bytestring: URIError/_name":[8,0,0,0,85,82,73,69,114,114,111,114]},
|
1586
1586
|
constr:1,
|
1587
1587
|
};
|
@@ -1589,14 +1589,14 @@ this.__URIError_prototype_toString = {
|
|
1589
1589
|
wasm:(_,{allocPage,builtin})=>[[32,0],[34,2],[33,5],...number(allocPage(_,'bytestring: __URIError_prototype_toString/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,7],[54,1,0],[32,8],[65,237,0],[58,0,4],[32,8],[65,229,0],[58,0,5],[32,8],[65,243,0],[58,0,6],[32,8],[65,243,0],[58,0,7],[32,8],[65,225,0],[58,0,8],[32,8],[65,231,0],[58,0,9],[32,8],[65,229,0],[58,0,10],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[34,3],[252,3],[40,1,0],[184],[68,0],[97],[65,1],[65,128,1],[114],[65,1],[65,128,1],[114],[70],[113],[4,64],[32,2],[33,5],[68,2490368],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[15],[11],...number(allocPage(_,'bytestring: __URIError_prototype_toString/bridge','i8'),124),[33,9],[32,2],[33,5],[68,2490368],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[32,9],[65,195,1],[16,builtin('__Porffor_concatStrings')],[34,7],[32,3],[32,4],[16,builtin('__Porffor_concatStrings')],[34,7],[15]],
|
1590
1590
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1591
1591
|
locals:[124,124,127,124,124,127,127,124],localNames:["_this","_this#type","obj","message","message#type","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp","bridge"],
|
1592
|
-
usedTypes:[
|
1592
|
+
usedTypes:[47,7,195],
|
1593
1593
|
data:{"bytestring: __URIError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1594
1594
|
};
|
1595
1595
|
this.Test262Error = {
|
1596
|
-
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: Test262Error/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: Test262Error/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('Test262Error'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,
|
1596
|
+
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: Test262Error/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: Test262Error/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('Test262Error'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,48],[15]],
|
1597
1597
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1598
1598
|
locals:[124,127,124,124,124,127,124,124,127,124],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type","_empty","#last_type","obj","_name","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","out"],
|
1599
|
-
usedTypes:[195,7,
|
1599
|
+
usedTypes:[195,7,48],
|
1600
1600
|
data:{"bytestring: Test262Error/_name":[12,0,0,0,84,101,115,116,50,54,50,69,114,114,111,114]},
|
1601
1601
|
constr:1,
|
1602
1602
|
};
|
@@ -1604,14 +1604,14 @@ this.__Test262Error_prototype_toString = {
|
|
1604
1604
|
wasm:(_,{allocPage,builtin})=>[[32,0],[34,2],[33,5],...number(allocPage(_,'bytestring: __Test262Error_prototype_toString/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,7],[54,1,0],[32,8],[65,237,0],[58,0,4],[32,8],[65,229,0],[58,0,5],[32,8],[65,243,0],[58,0,6],[32,8],[65,243,0],[58,0,7],[32,8],[65,225,0],[58,0,8],[32,8],[65,231,0],[58,0,9],[32,8],[65,229,0],[58,0,10],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[34,3],[252,3],[40,1,0],[184],[68,0],[97],[65,1],[65,128,1],[114],[65,1],[65,128,1],[114],[70],[113],[4,64],[32,2],[33,5],[68,2818048],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[15],[11],...number(allocPage(_,'bytestring: __Test262Error_prototype_toString/bridge','i8'),124),[33,9],[32,2],[33,5],[68,2818048],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[32,9],[65,195,1],[16,builtin('__Porffor_concatStrings')],[34,7],[32,3],[32,4],[16,builtin('__Porffor_concatStrings')],[34,7],[15]],
|
1605
1605
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1606
1606
|
locals:[124,124,127,124,124,127,127,124],localNames:["_this","_this#type","obj","message","message#type","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp","bridge"],
|
1607
|
-
usedTypes:[
|
1607
|
+
usedTypes:[48,7,195],
|
1608
1608
|
data:{"bytestring: __Test262Error_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1609
1609
|
};
|
1610
1610
|
this.__Porffor_TodoError = {
|
1611
|
-
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: __Porffor_TodoError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: __Porffor_TodoError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('__Porffor_TodoError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,
|
1611
|
+
wasm:(_,{allocPage,builtin,funcRef})=>[...number(allocPage(_,'bytestring: __Porffor_TodoError/_empty','i8'),124),[33,6],[32,4],[68,0],[97],[32,5],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],[32,6],[34,4],[65,195,1],[33,5],[26],[5],[32,4],[32,5],[16,builtin('__ecma262_ToString')],[34,7],[33,5],[33,4],[11],[16,builtin('__Porffor_allocate')],[183],[33,8],...number(allocPage(_,'bytestring: __Porffor_TodoError/_name','i8'),124),[33,9],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,4],[54,1,0],[32,14],[65,238,0],[58,0,4],[32,14],[65,225,0],[58,0,5],[32,14],[65,237,0],[58,0,6],[32,14],[65,229,0],[58,0,7],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,9],[65,195,1],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,7],[54,1,0],[32,14],[65,237,0],[58,0,4],[32,14],[65,229,0],[58,0,5],[32,14],[65,243,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,225,0],[58,0,8],[32,14],[65,231,0],[58,0,9],[32,14],[65,229,0],[58,0,10],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],[32,4],[32,5],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[33,12],[16,builtin('__Porffor_allocate')],[184],[34,13],[252,3],[34,14],[65,11],[54,1,0],[32,14],[65,227,0],[58,0,4],[32,14],[65,239,0],[58,0,5],[32,14],[65,238,0],[58,0,6],[32,14],[65,243,0],[58,0,7],[32,14],[65,244,0],[58,0,8],[32,14],[65,242,0],[58,0,9],[32,14],[65,245,0],[58,0,10],[32,14],[65,227,0],[58,0,11],[32,14],[65,244,0],[58,0,12],[32,14],[65,239,0],[58,0,13],[32,14],[65,242,0],[58,0,14],[32,14],[184],[33,13],[32,12],[252,2],[65,7],[32,13],[252,3],[65,195,1],...funcRef('__Porffor_TodoError'),[65,6],[16,builtin('__Porffor_object_set')],[26],[26],[32,8],[34,15],[65,49],[15]],
|
1612
1612
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1613
1613
|
locals:[124,127,124,124,124,127,124,124,127,124],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type","_empty","#last_type","obj","_name","#member_setter_val_tmp","#member_setter_ptr_tmp","#member_obj","#member_prop_assign","#makearray_pointer_tmp","out"],
|
1614
|
-
usedTypes:[195,7,
|
1614
|
+
usedTypes:[195,7,49],
|
1615
1615
|
data:{"bytestring: __Porffor_TodoError/_name":[9,0,0,0,84,111,100,111,69,114,114,111,114]},
|
1616
1616
|
constr:1,
|
1617
1617
|
};
|
@@ -1619,7 +1619,7 @@ this.__Porffor_TodoError_prototype_toString = {
|
|
1619
1619
|
wasm:(_,{allocPage,builtin})=>[[32,0],[34,2],[33,5],...number(allocPage(_,'bytestring: __Porffor_TodoError_prototype_toString/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,7],[54,1,0],[32,8],[65,237,0],[58,0,4],[32,8],[65,229,0],[58,0,5],[32,8],[65,243,0],[58,0,6],[32,8],[65,243,0],[58,0,7],[32,8],[65,225,0],[58,0,8],[32,8],[65,231,0],[58,0,9],[32,8],[65,229,0],[58,0,10],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[34,3],[252,3],[40,1,0],[184],[68,0],[97],[65,1],[65,128,1],[114],[65,1],[65,128,1],[114],[70],[113],[4,64],[32,2],[33,5],[68,3145728],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[15],[11],...number(allocPage(_,'bytestring: __Porffor_TodoError_prototype_toString/bridge','i8'),124),[33,9],[32,2],[33,5],[68,3145728],[34,6],[252,3],[34,8],[65,4],[54,1,0],[32,8],[65,238,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,237,0],[58,0,6],[32,8],[65,229,0],[58,0,7],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[32,9],[65,195,1],[16,builtin('__Porffor_concatStrings')],[34,7],[32,3],[32,4],[16,builtin('__Porffor_concatStrings')],[34,7],[15]],
|
1620
1620
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1621
1621
|
locals:[124,124,127,124,124,127,127,124],localNames:["_this","_this#type","obj","message","message#type","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp","bridge"],
|
1622
|
-
usedTypes:[
|
1622
|
+
usedTypes:[49,7,195],
|
1623
1623
|
data:{"bytestring: __Porffor_TodoError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1624
1624
|
};
|
1625
1625
|
this.__Test262Error_thrower = {
|
@@ -1795,7 +1795,7 @@ params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
|
1795
1795
|
locals:[],localNames:["_this","_this#type"],
|
1796
1796
|
};
|
1797
1797
|
this.parseInt = {
|
1798
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[33,4],[33,5],[32,4],[33,6],[32,4],[33,7],[2,124],...t([67],()=>[[32,7],[65,195,0],[70],[4,64],[32,5],[252,2],[32,6],[16,builtin('__String_prototype_trim')],[33,4],[183],[12,1],[11]]),...t([195],()=>[[32,7],[65,195,1],[70],[4,64],[32,5],[252,2],[32,6],[16,builtin('__ByteString_prototype_trim')],[33,4],[183],[12,1],[11]]),...internalThrow(_,'TypeError',`'trim' proto func tried to be called on a type without an impl`),[68,0],[11],[34,0],[32,4],[33,1],[26],[68,0],[33,8],[32,2],[32,3],[16,builtin('__ecma262_ToIntegerOrInfinity')],[34,4],[33,3],[34,2],[68,0],[97],[4,64],[68,1],[33,8],[68,10],[34,2],[65,1],[33,3],[26],[11],[32,2],[68,2],[99],[34,9],[69],[4,127],[32,2],[68,36],[100],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[68,"NaN"],[65,1],[15],[11],[68,58],[33,10],[32,2],[68,10],[99],[4,64],[68,48],[32,2],[160],[33,10],[11],[68,"NaN"],[33,11],[32,0],[34,12],[252,2],[40,0,0],[183],[33,13],[32,12],[33,14],[68,0],[33,15],[32,1],[184],[68,195],[97],[4,64],[32,14],[32,13],[160],[33,16],[32,14],[252,2],[45,0,4],[183],[34,17],[68,43],[97],[4,64],[32,14],[68,1],[160],[33,14],[11],[32,17],[68,45],[97],[4,64],[68,1],[33,15],[32,14],[68,1],[160],[33,14],[11],[32,8],[34,18],[68,0],[97],[4,124],[32,2],[68,16],[97],[184],[65,2],[33,4],[5],[32,18],[65,2],[33,4],[11],[34,18],[33,19],[32,4],[33,7],[2,127],...t([67,195],()=>[[32,7],[65,195,0],[70],[32,7],[65,195,1],[70],[114],[4,64],[32,19],[252,3],[40,1,0],[12,1],[11]]),[32,19],[252,3],[11],[4,124],[32,17],[68,48],[97],[184],[65,2],[33,4],[5],[32,18],[32,4],[33,4],[11],[33,19],[32,4],[33,7],[2,127],...t([67,195],()=>[[32,7],[65,195,0],[70],[32,7],[65,195,1],[70],[114],[4,64],[32,19],[252,3],[40,1,0],[12,1],[11]]),[32,19],[252,3],[11],[4,64],[32,14],[68,1],[160],[252,2],[45,0,4],[183],[34,20],[68,120],[97],[34,9],[69],[4,127],[32,20],[68,88],[97],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,14],[68,2],[160],[33,14],[68,16],[34,2],[65,1],[33,3],[26],[11],[11],[3,64],[32,14],[32,16],[99],[4,64],[32,14],[32,14],[68,1],[160],[33,14],[252,2],[45,0,4],[183],[34,21],[68,48],[102],[34,9],[4,127],[32,21],[32,10],[99],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,11],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,11],[11],[32,11],[32,2],[162],[32,21],[160],[68,48],[161],[33,11],[5],[32,2],[68,10],[100],[4,64],[32,21],[68,97],[102],[34,9],[4,127],[32,21],[68,87],[32,2],[160],[99],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,11],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,11],[11],[32,11],[32,2],[162],[32,21],[160],[68,87],[161],[33,11],[5],[32,21],[68,65],[102],[34,9],[4,127],[32,21],[68,55],[32,2],[160],[99],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,11],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,11],[11],[32,11],[32,2],[162],[32,21],[160],[68,55],[161],[33,11],[5],[12,4],[11],[11],[5],[12,2],[11],[11],[12,1],[11],[11],[32,15],[252,3],[4,64],[32,11],[154],[65,1],[15],[11],[32,11],[65,1],[15],[11],[32,14],[32,13],[68,2],[162],[160],[33,16],[32,14],[252,2],[47,0,4],[183],[34,17],[68,43],[97],[4,64],[32,14],[68,2],[160],[33,14],[11],[32,17],[68,45],[97],[4,64],[68,1],[33,15],[32,14],[68,2],[160],[33,14],[11],[32,8],[34,18],[68,0],[97],[4,124],[32,2],[68,16],[97],[184],[65,2],[33,4],[5],[32,18],[65,2],[33,4],[11],[34,18],[33,19],[32,4],[33,7],[2,127],...t([67,195],()=>[[32,7],[65,195,0],[70],[32,7],[65,195,1],[70],[114],[4,64],[32,19],[252,3],[40,1,0],[12,1],[11]]),[32,19],[252,3],[11],[4,124],[32,17],[68,48],[97],[184],[65,2],[33,4],[5],[32,18],[32,4],[33,4],[11],[33,19],[32,4],[33,7],[2,127],...t([67,195],()=>[[32,7],[65,195,0],[70],[32,7],[65,195,1],[70],[114],[4,64],[32,19],[252,3],[40,1,0],[12,1],[11]]),[32,19],[252,3],[11],[4,64],[32,14],[68,2],[160],[252,2],[47,0,4],[183],[34,20],[68,120],[97],[34,9],[69],[4,127],[32,20],[68,88],[97],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,14],[68,4],[160],[33,14],[68,16],[34,2],[65,1],[33,3],[26],[11],[11],[3,64],[32,14],[32,16],[99],[4,64],[32,14],[252,2],[47,0,4],[183],[33,21],[32,14],[68,2],[160],[33,14],[32,21],[68,48],[102],[34,9],[4,127],[32,21],[32,10],[99],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,11],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,11],[11],[32,11],[32,2],[162],[32,21],[160],[68,48],[161],[33,11],[5],[32,2],[68,10],[100],[4,64],[32,21],[68,97],[102],[34,9],[4,127],[32,21],[68,87],[32,2],[160],[99],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,11],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,11],[11],[32,11],[32,2],[162],[32,21],[160],[68,87],[161],[33,11],[5],[32,21],[68,65],[102],[34,9],[4,127],[32,21],[68,55],[32,2],[160],[99],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,11],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,11],[11],[32,11],[32,2],[162],[32,21],[160],[68,55],[161],[33,11],[5],[12,4],[11],[11],[5],[12,2],[11],[11],[12,1],[11],[11],[32,15],[252,3],[4,64],[32,11],[154],[65,1],[15],[11],[32,11],[65,1],[15]],
|
1798
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[33,4],[33,5],[32,4],[33,6],[32,4],[33,7],[2,124],...t([39],()=>[[32,7],[65,39],[70],[4,64],[32,5],[252,2],[32,6],[16,builtin('__String_prototype_trim')],[33,4],[183],[12,1],[11]]),...t([67],()=>[[32,7],[65,195,0],[70],[4,64],[32,5],[252,2],[32,6],[16,builtin('__String_prototype_trim')],[33,4],[183],[12,1],[11]]),...t([195],()=>[[32,7],[65,195,1],[70],[4,64],[32,5],[252,2],[32,6],[16,builtin('__ByteString_prototype_trim')],[33,4],[183],[12,1],[11]]),...internalThrow(_,'TypeError',`'trim' proto func tried to be called on a type without an impl`),[68,0],[11],[34,0],[32,4],[33,1],[26],[68,0],[33,8],[32,2],[32,3],[16,builtin('__ecma262_ToIntegerOrInfinity')],[34,4],[33,3],[34,2],[68,0],[97],[4,64],[68,1],[33,8],[68,10],[34,2],[65,1],[33,3],[26],[11],[32,2],[68,2],[99],[34,9],[69],[4,127],[32,2],[68,36],[100],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[68,"NaN"],[65,1],[15],[11],[68,58],[33,10],[32,2],[68,10],[99],[4,64],[68,48],[32,2],[160],[33,10],[11],[68,"NaN"],[33,11],[32,0],[34,12],[252,2],[40,0,0],[183],[33,13],[32,12],[33,14],[68,0],[33,15],[32,1],[184],[68,195],[97],[4,64],[32,14],[32,13],[160],[33,16],[32,14],[252,2],[45,0,4],[183],[34,17],[68,43],[97],[4,64],[32,14],[68,1],[160],[33,14],[11],[32,17],[68,45],[97],[4,64],[68,1],[33,15],[32,14],[68,1],[160],[33,14],[11],[32,8],[34,18],[68,0],[97],[4,124],[32,2],[68,16],[97],[184],[65,2],[33,4],[5],[32,18],[65,2],[33,4],[11],[34,18],[33,19],[32,4],[33,7],[2,127],...t([67,195],()=>[[32,7],[65,195,0],[70],[32,7],[65,195,1],[70],[114],[4,64],[32,19],[252,3],[40,1,0],[12,1],[11]]),[32,19],[252,3],[11],[4,124],[32,17],[68,48],[97],[184],[65,2],[33,4],[5],[32,18],[32,4],[33,4],[11],[33,19],[32,4],[33,7],[2,127],...t([67,195],()=>[[32,7],[65,195,0],[70],[32,7],[65,195,1],[70],[114],[4,64],[32,19],[252,3],[40,1,0],[12,1],[11]]),[32,19],[252,3],[11],[4,64],[32,14],[68,1],[160],[252,2],[45,0,4],[183],[34,20],[68,120],[97],[34,9],[69],[4,127],[32,20],[68,88],[97],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,14],[68,2],[160],[33,14],[68,16],[34,2],[65,1],[33,3],[26],[11],[11],[3,64],[32,14],[32,16],[99],[4,64],[32,14],[32,14],[68,1],[160],[33,14],[252,2],[45,0,4],[183],[34,21],[68,48],[102],[34,9],[4,127],[32,21],[32,10],[99],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,11],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,11],[11],[32,11],[32,2],[162],[32,21],[160],[68,48],[161],[33,11],[5],[32,2],[68,10],[100],[4,64],[32,21],[68,97],[102],[34,9],[4,127],[32,21],[68,87],[32,2],[160],[99],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,11],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,11],[11],[32,11],[32,2],[162],[32,21],[160],[68,87],[161],[33,11],[5],[32,21],[68,65],[102],[34,9],[4,127],[32,21],[68,55],[32,2],[160],[99],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,11],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,11],[11],[32,11],[32,2],[162],[32,21],[160],[68,55],[161],[33,11],[5],[12,4],[11],[11],[5],[12,2],[11],[11],[12,1],[11],[11],[32,15],[252,3],[4,64],[32,11],[154],[65,1],[15],[11],[32,11],[65,1],[15],[11],[32,14],[32,13],[68,2],[162],[160],[33,16],[32,14],[252,2],[47,0,4],[183],[34,17],[68,43],[97],[4,64],[32,14],[68,2],[160],[33,14],[11],[32,17],[68,45],[97],[4,64],[68,1],[33,15],[32,14],[68,2],[160],[33,14],[11],[32,8],[34,18],[68,0],[97],[4,124],[32,2],[68,16],[97],[184],[65,2],[33,4],[5],[32,18],[65,2],[33,4],[11],[34,18],[33,19],[32,4],[33,7],[2,127],...t([67,195],()=>[[32,7],[65,195,0],[70],[32,7],[65,195,1],[70],[114],[4,64],[32,19],[252,3],[40,1,0],[12,1],[11]]),[32,19],[252,3],[11],[4,124],[32,17],[68,48],[97],[184],[65,2],[33,4],[5],[32,18],[32,4],[33,4],[11],[33,19],[32,4],[33,7],[2,127],...t([67,195],()=>[[32,7],[65,195,0],[70],[32,7],[65,195,1],[70],[114],[4,64],[32,19],[252,3],[40,1,0],[12,1],[11]]),[32,19],[252,3],[11],[4,64],[32,14],[68,2],[160],[252,2],[47,0,4],[183],[34,20],[68,120],[97],[34,9],[69],[4,127],[32,20],[68,88],[97],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,14],[68,4],[160],[33,14],[68,16],[34,2],[65,1],[33,3],[26],[11],[11],[3,64],[32,14],[32,16],[99],[4,64],[32,14],[252,2],[47,0,4],[183],[33,21],[32,14],[68,2],[160],[33,14],[32,21],[68,48],[102],[34,9],[4,127],[32,21],[32,10],[99],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,11],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,11],[11],[32,11],[32,2],[162],[32,21],[160],[68,48],[161],[33,11],[5],[32,2],[68,10],[100],[4,64],[32,21],[68,97],[102],[34,9],[4,127],[32,21],[68,87],[32,2],[160],[99],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,11],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,11],[11],[32,11],[32,2],[162],[32,21],[160],[68,87],[161],[33,11],[5],[32,21],[68,65],[102],[34,9],[4,127],[32,21],[68,55],[32,2],[160],[99],[65,2],[33,4],[5],[32,9],[65,2],[33,4],[11],[4,64],[32,11],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,11],[11],[32,11],[32,2],[162],[32,21],[160],[68,55],[161],[33,11],[5],[12,4],[11],[11],[5],[12,2],[11],[11],[12,1],[11],[11],[32,15],[252,3],[4,64],[32,11],[154],[65,1],[15],[11],[32,11],[65,1],[15]],
|
1799
1799
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1800
1800
|
locals:[127,124,127,127,124,127,124,124,124,124,124,124,124,124,124,124,124,124],localNames:["input","input#type","radix","radix#type","#last_type","#proto_target","#proto_target#type","#typeswitch_tmp1","defaultRadix","logictmpi","nMax","n","inputPtr","len","i","negative","endPtr","startChr","logictmp","#logicinner_tmp","second","chr"],
|
1801
1801
|
};
|
@@ -1805,7 +1805,7 @@ params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
|
1805
1805
|
locals:[127],localNames:["input","input#type","radix","radix#type","#last_type"],
|
1806
1806
|
};
|
1807
1807
|
this.parseFloat = {
|
1808
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[33,2],[33,3],[32,2],[33,4],[32,2],[33,5],[2,124],...t([67],()=>[[32,5],[65,195,0],[70],[4,64],[32,3],[252,2],[32,4],[16,builtin('__String_prototype_trim')],[33,2],[183],[12,1],[11]]),...t([195],()=>[[32,5],[65,195,1],[70],[4,64],[32,3],[252,2],[32,4],[16,builtin('__ByteString_prototype_trim')],[33,2],[183],[12,1],[11]]),...internalThrow(_,'TypeError',`'trim' proto func tried to be called on a type without an impl`),[68,0],[11],[34,0],[32,2],[33,1],[26],[68,"NaN"],[33,6],[68,0],[33,7],[68,0],[33,8],[68,0],[33,9],[65,1],[33,10],[32,0],[252,3],[40,1,0],[33,12],[32,1],[33,5],[2,124],...t([67],()=>[[32,5],[65,195,0],[70],[4,64],[65,0],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,2],[12,1],[11]]),...t([195],()=>[[32,5],[65,195,1],[70],[4,64],[65,0],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,2],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[34,11],[68,43],[97],[4,64],[32,9],[68,1],[160],[33,9],[11],[32,11],[68,45],[97],[4,64],[32,9],[68,1],[160],[33,9],[68,1],[33,8],[11],[32,0],[252,3],[40,1,0],[184],[33,15],[3,64],[32,9],[32,15],[99],[4,64],[32,0],[252,3],[40,1,0],[33,12],[32,1],[33,5],[2,124],...t([67],()=>[[32,5],[65,195,0],[70],[4,64],[32,9],[32,9],[68,1],[160],[33,9],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,2],[12,1],[11]]),...t([195],()=>[[32,5],[65,195,1],[70],[4,64],[32,9],[32,9],[68,1],[160],[33,9],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,2],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[34,16],[68,48],[102],[34,17],[4,127],[32,16],[68,57],[101],[65,2],[33,2],[5],[32,17],[65,2],[33,2],[11],[4,64],[32,6],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,6],[11],[32,7],[252,3],[4,64],[32,7],[68,10],[162],[33,7],[32,6],[32,16],[68,48],[161],[32,7],[163],[160],[33,6],[5],[32,6],[68,10],[162],[32,16],[160],[68,48],[161],[33,6],[11],[5],[32,16],[68,46],[97],[4,64],[32,7],[252,3],[4,64],[12,3],[11],[68,1],[33,7],[5],[12,2],[11],[11],[12,1],[11],[11],[32,8],[252,3],[4,64],[32,6],[154],[65,1],[15],[11],[32,6],[65,1],[15]],
|
1808
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[32,1],[16,builtin('__ecma262_ToString')],[33,2],[33,3],[32,2],[33,4],[32,2],[33,5],[2,124],...t([39],()=>[[32,5],[65,39],[70],[4,64],[32,3],[252,2],[32,4],[16,builtin('__String_prototype_trim')],[33,2],[183],[12,1],[11]]),...t([67],()=>[[32,5],[65,195,0],[70],[4,64],[32,3],[252,2],[32,4],[16,builtin('__String_prototype_trim')],[33,2],[183],[12,1],[11]]),...t([195],()=>[[32,5],[65,195,1],[70],[4,64],[32,3],[252,2],[32,4],[16,builtin('__ByteString_prototype_trim')],[33,2],[183],[12,1],[11]]),...internalThrow(_,'TypeError',`'trim' proto func tried to be called on a type without an impl`),[68,0],[11],[34,0],[32,2],[33,1],[26],[68,"NaN"],[33,6],[68,0],[33,7],[68,0],[33,8],[68,0],[33,9],[65,1],[33,10],[32,0],[252,3],[40,1,0],[33,12],[32,1],[33,5],[2,124],...t([39],()=>[[32,5],[65,39],[70],[4,64],[65,0],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,2],[12,1],[11]]),...t([67],()=>[[32,5],[65,195,0],[70],[4,64],[65,0],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,2],[12,1],[11]]),...t([195],()=>[[32,5],[65,195,1],[70],[4,64],[65,0],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,2],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[34,11],[68,43],[97],[4,64],[32,9],[68,1],[160],[33,9],[11],[32,11],[68,45],[97],[4,64],[32,9],[68,1],[160],[33,9],[68,1],[33,8],[11],[32,0],[252,3],[40,1,0],[184],[33,15],[3,64],[32,9],[32,15],[99],[4,64],[32,0],[252,3],[40,1,0],[33,12],[32,1],[33,5],[2,124],...t([39],()=>[[32,5],[65,39],[70],[4,64],[32,9],[32,9],[68,1],[160],[33,9],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,2],[12,1],[11]]),...t([67],()=>[[32,5],[65,195,0],[70],[4,64],[32,9],[32,9],[68,1],[160],[33,9],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,2],[12,1],[11]]),...t([195],()=>[[32,5],[65,195,1],[70],[4,64],[32,9],[32,9],[68,1],[160],[33,9],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,2],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[34,16],[68,48],[102],[34,17],[4,127],[32,16],[68,57],[101],[65,2],[33,2],[5],[32,17],[65,2],[33,2],[11],[4,64],[32,6],[16,builtin('__Number_isNaN')],[252,3],[4,64],[68,0],[33,6],[11],[32,7],[252,3],[4,64],[32,7],[68,10],[162],[33,7],[32,6],[32,16],[68,48],[161],[32,7],[163],[160],[33,6],[5],[32,6],[68,10],[162],[32,16],[160],[68,48],[161],[33,6],[11],[5],[32,16],[68,46],[97],[4,64],[32,7],[252,3],[4,64],[12,3],[11],[68,1],[33,7],[5],[12,2],[11],[11],[12,1],[11],[11],[32,8],[252,3],[4,64],[32,6],[154],[65,1],[15],[11],[32,6],[65,1],[15]],
|
1809
1809
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1810
1810
|
locals:[127,124,127,127,124,124,124,124,127,124,127,127,127,124,124,127],localNames:["input","input#type","#last_type","#proto_target","#proto_target#type","#typeswitch_tmp1","n","dec","negative","i","i#type","start","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","len","chr","logictmpi"],
|
1811
1811
|
};
|
@@ -1815,10 +1815,10 @@ params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
|
1815
1815
|
locals:[127],localNames:["input","input#type","#last_type"],
|
1816
1816
|
};
|
1817
1817
|
this.Object = {
|
1818
|
-
wasm:(_,{t,builtin})=>[[32,4],[33,6],[32,5],[33,7],[2,127],...t([0,128],()=>[[32,7],[65,0],[70],[32,7],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,7],[65,7],[70],[4,64],[32,6],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],[16,builtin('__Porffor_allocate')],[183],[34,8],[65,7],[15],[11],[32,5],[184],[68,1],[97],[4,64],[68,3],[65,6],[68,0],[65,7],[32,4],[32,5],[16,builtin('Number')],[
|
1818
|
+
wasm:(_,{t,builtin})=>[[32,4],[33,6],[32,5],[33,7],[2,127],...t([0,128],()=>[[32,7],[65,0],[70],[32,7],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,7],[65,7],[70],[4,64],[32,6],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],[16,builtin('__Porffor_allocate')],[183],[34,8],[65,7],[15],[11],[32,5],[184],[68,1],[97],[4,64],[68,3],[65,6],[68,0],[65,7],[32,4],[32,5],[16,builtin('Number')],[26],[65,38],[15],[11],[32,5],[184],[68,2],[97],[4,64],[68,4],[65,6],[68,0],[65,7],[32,4],[32,5],[16,builtin('Boolean')],[26],[65,37],[15],[11],[32,4],[32,5],[15]],
|
1819
1819
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1820
1820
|
locals:[124,127,124,127],localNames:["#newtarget","#newtarget#type","#this","#this#type","value","value#type","#logicinner_tmp","#typeswitch_tmp1","obj","#last_type"],
|
1821
|
-
usedTypes:[7],
|
1821
|
+
usedTypes:[7,38,37],
|
1822
1822
|
constr:1,
|
1823
1823
|
};
|
1824
1824
|
this.__Object_keys = {
|
@@ -1858,13 +1858,13 @@ params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
|
1858
1858
|
locals:[127],localNames:["obj","obj#type","prop","prop#type","#last_type"],
|
1859
1859
|
};
|
1860
1860
|
this.__Porffor_object_in = {
|
1861
|
-
wasm:(_,{t,allocPage,builtin,internalThrow})=>[[32,0],[32,1],[32,2],[32,3],[16,builtin('__Object_prototype_hasOwnProperty')],[33,4],[33,5],[32,4],[33,6],[2,127],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,5],[252,3],[40,1,0],[12,1],[11]]),[32,5],[252,3],[11],[4,64],[68,1],[65,2],[15],[11],[32,0],[33,7],[32,1],[33,8],[3,64],[65,1],[4,64],[32,0],[33,9],...number(allocPage(_,'bytestring: __Porffor_object_in/#member_prop','i8'),124),[34,10],[252,3],[34,11],[65,9],[54,1,0],[32,11],[65,223,0],[58,0,4],[32,11],[65,223,0],[58,0,5],[32,11],[65,240,0],[58,0,6],[32,11],[65,242,0],[58,0,7],[32,11],[65,239,0],[58,0,8],[32,11],[65,244,0],[58,0,9],[32,11],[65,239,0],[58,0,10],[32,11],[65,223,0],[58,0,11],[32,11],[65,223,0],[58,0,12],[32,11],[184],[33,10],[32,1],[33,6],[2,124],...t([1],()=>[[32,6],[65,1],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([2],()=>[[32,6],[65,2],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([5],()=>[[32,6],[65,5],[70],[4,64],[16,builtin('#get___Symbol_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([18],()=>[[32,6],[65,18],[70],[4,64],[16,builtin('#get___Date_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([19],()=>[[32,6],[65,19],[70],[4,64],[16,builtin('#get___Set_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([20],()=>[[32,6],[65,20],[70],[4,64],[16,builtin('#get___Map_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([21],()=>[[32,6],[65,21],[70],[4,64],[16,builtin('#get___ArrayBuffer_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([22],()=>[[32,6],[65,22],[70],[4,64],[16,builtin('#get___SharedArrayBuffer_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([23],()=>[[32,6],[65,23],[70],[4,64],[16,builtin('#get___DataView_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([33],()=>[[32,6],[65,33],[70],[4,64],[16,builtin('#get___WeakRef_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([34],()=>[[32,6],[65,34],[70],[4,64],[16,builtin('#get___WeakSet_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([35],()=>[[32,6],[65,35],[70],[4,64],[16,builtin('#get___WeakMap_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([36],()=>[[32,6],[65,36],[70],[4,64],[16,builtin('#get___Promise_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([37],()=>[[32,6],[65,37],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([38],()=>[[32,6],[65,38],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([39],()=>[[32,6],[65,39],[70],[4,64],[16,builtin('#
|
1861
|
+
wasm:(_,{t,allocPage,builtin,internalThrow})=>[[32,0],[32,1],[32,2],[32,3],[16,builtin('__Object_prototype_hasOwnProperty')],[33,4],[33,5],[32,4],[33,6],[2,127],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,5],[252,3],[40,1,0],[12,1],[11]]),[32,5],[252,3],[11],[4,64],[68,1],[65,2],[15],[11],[32,0],[33,7],[32,1],[33,8],[3,64],[65,1],[4,64],[32,0],[33,9],...number(allocPage(_,'bytestring: __Porffor_object_in/#member_prop','i8'),124),[34,10],[252,3],[34,11],[65,9],[54,1,0],[32,11],[65,223,0],[58,0,4],[32,11],[65,223,0],[58,0,5],[32,11],[65,240,0],[58,0,6],[32,11],[65,242,0],[58,0,7],[32,11],[65,239,0],[58,0,8],[32,11],[65,244,0],[58,0,9],[32,11],[65,239,0],[58,0,10],[32,11],[65,223,0],[58,0,11],[32,11],[65,223,0],[58,0,12],[32,11],[184],[33,10],[32,1],[33,6],[2,124],...t([1],()=>[[32,6],[65,1],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([2],()=>[[32,6],[65,2],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([5],()=>[[32,6],[65,5],[70],[4,64],[16,builtin('#get___Symbol_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([18],()=>[[32,6],[65,18],[70],[4,64],[16,builtin('#get___Date_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([19],()=>[[32,6],[65,19],[70],[4,64],[16,builtin('#get___Set_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([20],()=>[[32,6],[65,20],[70],[4,64],[16,builtin('#get___Map_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([21],()=>[[32,6],[65,21],[70],[4,64],[16,builtin('#get___ArrayBuffer_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([22],()=>[[32,6],[65,22],[70],[4,64],[16,builtin('#get___SharedArrayBuffer_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([23],()=>[[32,6],[65,23],[70],[4,64],[16,builtin('#get___DataView_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([33],()=>[[32,6],[65,33],[70],[4,64],[16,builtin('#get___WeakRef_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([34],()=>[[32,6],[65,34],[70],[4,64],[16,builtin('#get___WeakSet_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([35],()=>[[32,6],[65,35],[70],[4,64],[16,builtin('#get___WeakMap_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([36],()=>[[32,6],[65,36],[70],[4,64],[16,builtin('#get___Promise_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([37],()=>[[32,6],[65,37],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([38],()=>[[32,6],[65,38],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([39],()=>[[32,6],[65,39],[70],[4,64],[16,builtin('#get___String_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([40],()=>[[32,6],[65,40],[70],[4,64],[16,builtin('#get___Error_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([41],()=>[[32,6],[65,41],[70],[4,64],[16,builtin('#get___AggregateError_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([42],()=>[[32,6],[65,42],[70],[4,64],[16,builtin('#get___TypeError_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([43],()=>[[32,6],[65,43],[70],[4,64],[16,builtin('#get___ReferenceError_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([44],()=>[[32,6],[65,44],[70],[4,64],[16,builtin('#get___SyntaxError_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([45],()=>[[32,6],[65,45],[70],[4,64],[16,builtin('#get___RangeError_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([46],()=>[[32,6],[65,46],[70],[4,64],[16,builtin('#get___EvalError_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([47],()=>[[32,6],[65,47],[70],[4,64],[16,builtin('#get___URIError_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([48],()=>[[32,6],[65,48],[70],[4,64],[16,builtin('#get___Test262Error_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([67],()=>[[32,6],[65,195,0],[70],[4,64],[16,builtin('#get___String_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([80],()=>[[32,6],[65,208,0],[70],[4,64],[16,builtin('#get___Array_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([88],()=>[[32,6],[65,216,0],[70],[4,64],[16,builtin('#get___Uint8Array_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([89],()=>[[32,6],[65,217,0],[70],[4,64],[16,builtin('#get___Int8Array_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([90],()=>[[32,6],[65,218,0],[70],[4,64],[16,builtin('#get___Uint8ClampedArray_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([91],()=>[[32,6],[65,219,0],[70],[4,64],[16,builtin('#get___Uint16Array_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([92],()=>[[32,6],[65,220,0],[70],[4,64],[16,builtin('#get___Int16Array_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([93],()=>[[32,6],[65,221,0],[70],[4,64],[16,builtin('#get___Uint32Array_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([94],()=>[[32,6],[65,222,0],[70],[4,64],[16,builtin('#get___Int32Array_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([95],()=>[[32,6],[65,223,0],[70],[4,64],[16,builtin('#get___Float32Array_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([96],()=>[[32,6],[65,224,0],[70],[4,64],[16,builtin('#get___Float64Array_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([128],()=>[[32,6],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot read property of undefined`),[68,0],[12,1],[11]]),...t([195],()=>[[32,6],[65,195,1],[70],[4,64],[16,builtin('#get___ByteString_prototype')],[184],[65,7],[33,4],[12,1],[11]]),[32,9],[252,2],[32,1],[32,10],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[33,4],[11],[34,0],[32,4],[33,1],[26],[32,0],[33,5],[32,1],[33,6],[2,127],...t([0,128],()=>[[32,6],[65,0],[70],[32,6],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,5],[68,0],[97],[12,1],[11]]),[65,0],[11],[32,0],[32,7],[97],[114],[4,64],[12,1],[11],[32,0],[34,7],[32,1],[33,8],[26],[32,0],[32,1],[32,2],[32,3],[16,builtin('__Object_prototype_hasOwnProperty')],[33,4],[33,5],[32,4],[33,6],[2,127],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,5],[252,3],[40,1,0],[12,1],[11]]),[32,5],[252,3],[11],[4,64],[68,1],[65,2],[15],[11],[12,1],[11],[11],[68,0],[65,2],[15]],
|
1862
1862
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1863
1863
|
locals:[127,124,127,124,127,124,124,127],localNames:["obj","obj#type","prop","prop#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","lastProto","lastProto#type","#member_obj","#member_prop","#makearray_pointer_tmp"],
|
1864
1864
|
usedTypes:[7,195],
|
1865
1865
|
};
|
1866
1866
|
this.__Porffor_object_instanceof = {
|
1867
|
-
wasm:(_,{t,allocPage,builtin,internalThrow})=>[[32,3],[184],[68,6],[98],[4,64],...internalThrow(_,'TypeError',`instanceof right-hand side is not a function`),[11],[32,4],[252,2],[32,5],[16,builtin('__Porffor_object_isObject')],[33,6],[183],[33,7],[32,6],[33,8],[2,124],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,7],[68,0],[97],[184],[11],[252,3],[4,64],[68,0],[65,2],[15],[11],[32,0],[33,9],[32,1],[33,10],[3,64],[65,1],[4,64],[32,0],[33,11],...number(allocPage(_,'bytestring: __Porffor_object_instanceof/#member_prop','i8'),124),[34,12],[252,3],[34,13],[65,9],[54,1,0],[32,13],[65,223,0],[58,0,4],[32,13],[65,223,0],[58,0,5],[32,13],[65,240,0],[58,0,6],[32,13],[65,242,0],[58,0,7],[32,13],[65,239,0],[58,0,8],[32,13],[65,244,0],[58,0,9],[32,13],[65,239,0],[58,0,10],[32,13],[65,223,0],[58,0,11],[32,13],[65,223,0],[58,0,12],[32,13],[184],[33,12],[32,1],[33,8],[2,124],...t([1],()=>[[32,8],[65,1],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([2],()=>[[32,8],[65,2],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([5],()=>[[32,8],[65,5],[70],[4,64],[16,builtin('#get___Symbol_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([18],()=>[[32,8],[65,18],[70],[4,64],[16,builtin('#get___Date_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([19],()=>[[32,8],[65,19],[70],[4,64],[16,builtin('#get___Set_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([20],()=>[[32,8],[65,20],[70],[4,64],[16,builtin('#get___Map_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([21],()=>[[32,8],[65,21],[70],[4,64],[16,builtin('#get___ArrayBuffer_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([22],()=>[[32,8],[65,22],[70],[4,64],[16,builtin('#get___SharedArrayBuffer_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([23],()=>[[32,8],[65,23],[70],[4,64],[16,builtin('#get___DataView_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([33],()=>[[32,8],[65,33],[70],[4,64],[16,builtin('#get___WeakRef_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([34],()=>[[32,8],[65,34],[70],[4,64],[16,builtin('#get___WeakSet_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([35],()=>[[32,8],[65,35],[70],[4,64],[16,builtin('#get___WeakMap_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([36],()=>[[32,8],[65,36],[70],[4,64],[16,builtin('#get___Promise_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([37],()=>[[32,8],[65,37],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([38],()=>[[32,8],[65,38],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([39],()=>[[32,8],[65,39],[70],[4,64],[16,builtin('#
|
1867
|
+
wasm:(_,{t,allocPage,builtin,internalThrow})=>[[32,3],[184],[68,6],[98],[4,64],...internalThrow(_,'TypeError',`instanceof right-hand side is not a function`),[11],[32,4],[252,2],[32,5],[16,builtin('__Porffor_object_isObject')],[33,6],[183],[33,7],[32,6],[33,8],[2,124],...t([67,195],()=>[[32,8],[65,195,0],[70],[32,8],[65,195,1],[70],[114],[4,64],[32,7],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,7],[68,0],[97],[184],[11],[252,3],[4,64],[68,0],[65,2],[15],[11],[32,0],[33,9],[32,1],[33,10],[3,64],[65,1],[4,64],[32,0],[33,11],...number(allocPage(_,'bytestring: __Porffor_object_instanceof/#member_prop','i8'),124),[34,12],[252,3],[34,13],[65,9],[54,1,0],[32,13],[65,223,0],[58,0,4],[32,13],[65,223,0],[58,0,5],[32,13],[65,240,0],[58,0,6],[32,13],[65,242,0],[58,0,7],[32,13],[65,239,0],[58,0,8],[32,13],[65,244,0],[58,0,9],[32,13],[65,239,0],[58,0,10],[32,13],[65,223,0],[58,0,11],[32,13],[65,223,0],[58,0,12],[32,13],[184],[33,12],[32,1],[33,8],[2,124],...t([1],()=>[[32,8],[65,1],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([2],()=>[[32,8],[65,2],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([5],()=>[[32,8],[65,5],[70],[4,64],[16,builtin('#get___Symbol_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([18],()=>[[32,8],[65,18],[70],[4,64],[16,builtin('#get___Date_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([19],()=>[[32,8],[65,19],[70],[4,64],[16,builtin('#get___Set_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([20],()=>[[32,8],[65,20],[70],[4,64],[16,builtin('#get___Map_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([21],()=>[[32,8],[65,21],[70],[4,64],[16,builtin('#get___ArrayBuffer_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([22],()=>[[32,8],[65,22],[70],[4,64],[16,builtin('#get___SharedArrayBuffer_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([23],()=>[[32,8],[65,23],[70],[4,64],[16,builtin('#get___DataView_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([33],()=>[[32,8],[65,33],[70],[4,64],[16,builtin('#get___WeakRef_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([34],()=>[[32,8],[65,34],[70],[4,64],[16,builtin('#get___WeakSet_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([35],()=>[[32,8],[65,35],[70],[4,64],[16,builtin('#get___WeakMap_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([36],()=>[[32,8],[65,36],[70],[4,64],[16,builtin('#get___Promise_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([37],()=>[[32,8],[65,37],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([38],()=>[[32,8],[65,38],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([39],()=>[[32,8],[65,39],[70],[4,64],[16,builtin('#get___String_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([40],()=>[[32,8],[65,40],[70],[4,64],[16,builtin('#get___Error_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([41],()=>[[32,8],[65,41],[70],[4,64],[16,builtin('#get___AggregateError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([42],()=>[[32,8],[65,42],[70],[4,64],[16,builtin('#get___TypeError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([43],()=>[[32,8],[65,43],[70],[4,64],[16,builtin('#get___ReferenceError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([44],()=>[[32,8],[65,44],[70],[4,64],[16,builtin('#get___SyntaxError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([45],()=>[[32,8],[65,45],[70],[4,64],[16,builtin('#get___RangeError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([46],()=>[[32,8],[65,46],[70],[4,64],[16,builtin('#get___EvalError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([47],()=>[[32,8],[65,47],[70],[4,64],[16,builtin('#get___URIError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([48],()=>[[32,8],[65,48],[70],[4,64],[16,builtin('#get___Test262Error_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([67],()=>[[32,8],[65,195,0],[70],[4,64],[16,builtin('#get___String_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([80],()=>[[32,8],[65,208,0],[70],[4,64],[16,builtin('#get___Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([88],()=>[[32,8],[65,216,0],[70],[4,64],[16,builtin('#get___Uint8Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([89],()=>[[32,8],[65,217,0],[70],[4,64],[16,builtin('#get___Int8Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([90],()=>[[32,8],[65,218,0],[70],[4,64],[16,builtin('#get___Uint8ClampedArray_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([91],()=>[[32,8],[65,219,0],[70],[4,64],[16,builtin('#get___Uint16Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([92],()=>[[32,8],[65,220,0],[70],[4,64],[16,builtin('#get___Int16Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([93],()=>[[32,8],[65,221,0],[70],[4,64],[16,builtin('#get___Uint32Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([94],()=>[[32,8],[65,222,0],[70],[4,64],[16,builtin('#get___Int32Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([95],()=>[[32,8],[65,223,0],[70],[4,64],[16,builtin('#get___Float32Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([96],()=>[[32,8],[65,224,0],[70],[4,64],[16,builtin('#get___Float64Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([128],()=>[[32,8],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot read property of undefined`),[68,0],[12,1],[11]]),...t([195],()=>[[32,8],[65,195,1],[70],[4,64],[16,builtin('#get___ByteString_prototype')],[184],[65,7],[33,6],[12,1],[11]]),[32,11],[252,2],[32,1],[32,12],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[33,6],[11],[34,0],[32,6],[33,1],[26],[32,0],[33,7],[32,1],[33,8],[2,127],...t([0,128],()=>[[32,8],[65,0],[70],[32,8],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,8],[65,7],[70],[4,64],[32,7],[68,0],[97],[12,1],[11]]),[65,0],[11],[32,0],[32,9],[97],[114],[4,64],[12,1],[11],[32,0],[34,9],[32,1],[33,10],[26],[2,127],[32,0],[34,14],[32,4],[34,15],[32,1],[65,128,1],[114],[65,195,1],[70],[32,5],[65,128,1],[114],[65,195,1],[70],[114],[4,64],[32,14],[32,1],[32,15],[32,5],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[12,1],[11],[97],[11],[32,1],[65,128,1],[114],[32,5],[65,128,1],[114],[70],[113],[4,64],[68,1],[65,2],[15],[11],[12,1],[11],[11],[68,0],[65,2],[15]],
|
1868
1868
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1869
1869
|
locals:[127,124,127,124,127,124,124,127,124,124],localNames:["obj","obj#type","constr","constr#type","checkProto","checkProto#type","#last_type","#logicinner_tmp","#typeswitch_tmp1","lastProto","lastProto#type","#member_obj","#member_prop","#makearray_pointer_tmp","__tmpop_left","__tmpop_right"],
|
1870
1870
|
usedTypes:[7,195],
|
@@ -1974,7 +1974,7 @@ usedTypes:[7,80,67,195],
|
|
1974
1974
|
table:1,
|
1975
1975
|
};
|
1976
1976
|
this.__Object_getPrototypeOf = {
|
1977
|
-
wasm:(_,{t,allocPage,builtin,internalThrow})=>[[32,0],[33,2],[32,1],[33,3],[2,127],...t([0,128],()=>[[32,3],[65,0],[70],[32,3],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,3],[65,7],[70],[4,64],[32,2],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`Object is nullish, expected object`),[11],[32,0],[33,4],...number(allocPage(_,'bytestring: __Object_getPrototypeOf/#member_prop','i8'),124),[34,5],[252,3],[34,7],[65,9],[54,1,0],[32,7],[65,223,0],[58,0,4],[32,7],[65,223,0],[58,0,5],[32,7],[65,240,0],[58,0,6],[32,7],[65,242,0],[58,0,7],[32,7],[65,239,0],[58,0,8],[32,7],[65,244,0],[58,0,9],[32,7],[65,239,0],[58,0,10],[32,7],[65,223,0],[58,0,11],[32,7],[65,223,0],[58,0,12],[32,7],[184],[33,5],[32,1],[33,3],[2,124],...t([1],()=>[[32,3],[65,1],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([2],()=>[[32,3],[65,2],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([5],()=>[[32,3],[65,5],[70],[4,64],[16,builtin('#get___Symbol_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([18],()=>[[32,3],[65,18],[70],[4,64],[16,builtin('#get___Date_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([19],()=>[[32,3],[65,19],[70],[4,64],[16,builtin('#get___Set_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([20],()=>[[32,3],[65,20],[70],[4,64],[16,builtin('#get___Map_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([21],()=>[[32,3],[65,21],[70],[4,64],[16,builtin('#get___ArrayBuffer_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([22],()=>[[32,3],[65,22],[70],[4,64],[16,builtin('#get___SharedArrayBuffer_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([23],()=>[[32,3],[65,23],[70],[4,64],[16,builtin('#get___DataView_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([33],()=>[[32,3],[65,33],[70],[4,64],[16,builtin('#get___WeakRef_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([34],()=>[[32,3],[65,34],[70],[4,64],[16,builtin('#get___WeakSet_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([35],()=>[[32,3],[65,35],[70],[4,64],[16,builtin('#get___WeakMap_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([36],()=>[[32,3],[65,36],[70],[4,64],[16,builtin('#get___Promise_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([37],()=>[[32,3],[65,37],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([38],()=>[[32,3],[65,38],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([39],()=>[[32,3],[65,39],[70],[4,64],[16,builtin('#
|
1977
|
+
wasm:(_,{t,allocPage,builtin,internalThrow})=>[[32,0],[33,2],[32,1],[33,3],[2,127],...t([0,128],()=>[[32,3],[65,0],[70],[32,3],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,3],[65,7],[70],[4,64],[32,2],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`Object is nullish, expected object`),[11],[32,0],[33,4],...number(allocPage(_,'bytestring: __Object_getPrototypeOf/#member_prop','i8'),124),[34,5],[252,3],[34,7],[65,9],[54,1,0],[32,7],[65,223,0],[58,0,4],[32,7],[65,223,0],[58,0,5],[32,7],[65,240,0],[58,0,6],[32,7],[65,242,0],[58,0,7],[32,7],[65,239,0],[58,0,8],[32,7],[65,244,0],[58,0,9],[32,7],[65,239,0],[58,0,10],[32,7],[65,223,0],[58,0,11],[32,7],[65,223,0],[58,0,12],[32,7],[184],[33,5],[32,1],[33,3],[2,124],...t([1],()=>[[32,3],[65,1],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([2],()=>[[32,3],[65,2],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([5],()=>[[32,3],[65,5],[70],[4,64],[16,builtin('#get___Symbol_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([18],()=>[[32,3],[65,18],[70],[4,64],[16,builtin('#get___Date_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([19],()=>[[32,3],[65,19],[70],[4,64],[16,builtin('#get___Set_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([20],()=>[[32,3],[65,20],[70],[4,64],[16,builtin('#get___Map_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([21],()=>[[32,3],[65,21],[70],[4,64],[16,builtin('#get___ArrayBuffer_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([22],()=>[[32,3],[65,22],[70],[4,64],[16,builtin('#get___SharedArrayBuffer_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([23],()=>[[32,3],[65,23],[70],[4,64],[16,builtin('#get___DataView_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([33],()=>[[32,3],[65,33],[70],[4,64],[16,builtin('#get___WeakRef_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([34],()=>[[32,3],[65,34],[70],[4,64],[16,builtin('#get___WeakSet_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([35],()=>[[32,3],[65,35],[70],[4,64],[16,builtin('#get___WeakMap_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([36],()=>[[32,3],[65,36],[70],[4,64],[16,builtin('#get___Promise_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([37],()=>[[32,3],[65,37],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([38],()=>[[32,3],[65,38],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([39],()=>[[32,3],[65,39],[70],[4,64],[16,builtin('#get___String_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([40],()=>[[32,3],[65,40],[70],[4,64],[16,builtin('#get___Error_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([41],()=>[[32,3],[65,41],[70],[4,64],[16,builtin('#get___AggregateError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([42],()=>[[32,3],[65,42],[70],[4,64],[16,builtin('#get___TypeError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([43],()=>[[32,3],[65,43],[70],[4,64],[16,builtin('#get___ReferenceError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([44],()=>[[32,3],[65,44],[70],[4,64],[16,builtin('#get___SyntaxError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([45],()=>[[32,3],[65,45],[70],[4,64],[16,builtin('#get___RangeError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([46],()=>[[32,3],[65,46],[70],[4,64],[16,builtin('#get___EvalError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([47],()=>[[32,3],[65,47],[70],[4,64],[16,builtin('#get___URIError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([48],()=>[[32,3],[65,48],[70],[4,64],[16,builtin('#get___Test262Error_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([67],()=>[[32,3],[65,195,0],[70],[4,64],[16,builtin('#get___String_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([80],()=>[[32,3],[65,208,0],[70],[4,64],[16,builtin('#get___Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([88],()=>[[32,3],[65,216,0],[70],[4,64],[16,builtin('#get___Uint8Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([89],()=>[[32,3],[65,217,0],[70],[4,64],[16,builtin('#get___Int8Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([90],()=>[[32,3],[65,218,0],[70],[4,64],[16,builtin('#get___Uint8ClampedArray_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([91],()=>[[32,3],[65,219,0],[70],[4,64],[16,builtin('#get___Uint16Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([92],()=>[[32,3],[65,220,0],[70],[4,64],[16,builtin('#get___Int16Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([93],()=>[[32,3],[65,221,0],[70],[4,64],[16,builtin('#get___Uint32Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([94],()=>[[32,3],[65,222,0],[70],[4,64],[16,builtin('#get___Int32Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([95],()=>[[32,3],[65,223,0],[70],[4,64],[16,builtin('#get___Float32Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([96],()=>[[32,3],[65,224,0],[70],[4,64],[16,builtin('#get___Float64Array_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([128],()=>[[32,3],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot read property of undefined`),[68,0],[12,1],[11]]),...t([195],()=>[[32,3],[65,195,1],[70],[4,64],[16,builtin('#get___ByteString_prototype')],[184],[65,7],[33,6],[12,1],[11]]),[32,4],[252,2],[32,1],[32,5],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[33,6],[11],[32,6],[15]],
|
1978
1978
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1979
1979
|
locals:[124,127,124,124,127,127],localNames:["obj","obj#type","#logicinner_tmp","#typeswitch_tmp1","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp"],
|
1980
1980
|
usedTypes:[7,195],
|
@@ -1986,13 +1986,13 @@ locals:[124,127,127,124,127,124,124,127],localNames:["obj","obj#type","proto","p
|
|
1986
1986
|
usedTypes:[195],
|
1987
1987
|
};
|
1988
1988
|
this.__Object_prototype_isPrototypeOf = {
|
1989
|
-
wasm:(_,{t,allocPage,builtin,internalThrow})=>[[32,0],[33,4],[32,1],[33,5],[2,127],...t([0,128],()=>[[32,5],[65,0],[70],[32,5],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,5],[65,7],[70],[4,64],[32,4],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`This is nullish, expected object`),[11],[2,127],[32,0],[34,10],[32,2],[33,6],...number(allocPage(_,'bytestring: __Object_prototype_isPrototypeOf/#member_prop','i8'),124),[34,7],[252,3],[34,9],[65,9],[54,1,0],[32,9],[65,223,0],[58,0,4],[32,9],[65,223,0],[58,0,5],[32,9],[65,240,0],[58,0,6],[32,9],[65,242,0],[58,0,7],[32,9],[65,239,0],[58,0,8],[32,9],[65,244,0],[58,0,9],[32,9],[65,239,0],[58,0,10],[32,9],[65,223,0],[58,0,11],[32,9],[65,223,0],[58,0,12],[32,9],[184],[33,7],[32,3],[33,5],[2,124],...t([1],()=>[[32,5],[65,1],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([2],()=>[[32,5],[65,2],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([5],()=>[[32,5],[65,5],[70],[4,64],[16,builtin('#get___Symbol_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([18],()=>[[32,5],[65,18],[70],[4,64],[16,builtin('#get___Date_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([19],()=>[[32,5],[65,19],[70],[4,64],[16,builtin('#get___Set_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([20],()=>[[32,5],[65,20],[70],[4,64],[16,builtin('#get___Map_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([21],()=>[[32,5],[65,21],[70],[4,64],[16,builtin('#get___ArrayBuffer_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([22],()=>[[32,5],[65,22],[70],[4,64],[16,builtin('#get___SharedArrayBuffer_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([23],()=>[[32,5],[65,23],[70],[4,64],[16,builtin('#get___DataView_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([33],()=>[[32,5],[65,33],[70],[4,64],[16,builtin('#get___WeakRef_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([34],()=>[[32,5],[65,34],[70],[4,64],[16,builtin('#get___WeakSet_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([35],()=>[[32,5],[65,35],[70],[4,64],[16,builtin('#get___WeakMap_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([36],()=>[[32,5],[65,36],[70],[4,64],[16,builtin('#get___Promise_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([37],()=>[[32,5],[65,37],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([38],()=>[[32,5],[65,38],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([39],()=>[[32,5],[65,39],[70],[4,64],[16,builtin('#
|
1989
|
+
wasm:(_,{t,allocPage,builtin,internalThrow})=>[[32,0],[33,4],[32,1],[33,5],[2,127],...t([0,128],()=>[[32,5],[65,0],[70],[32,5],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,5],[65,7],[70],[4,64],[32,4],[68,0],[97],[12,1],[11]]),[65,0],[11],[4,64],...internalThrow(_,'TypeError',`This is nullish, expected object`),[11],[2,127],[32,0],[34,10],[32,2],[33,6],...number(allocPage(_,'bytestring: __Object_prototype_isPrototypeOf/#member_prop','i8'),124),[34,7],[252,3],[34,9],[65,9],[54,1,0],[32,9],[65,223,0],[58,0,4],[32,9],[65,223,0],[58,0,5],[32,9],[65,240,0],[58,0,6],[32,9],[65,242,0],[58,0,7],[32,9],[65,239,0],[58,0,8],[32,9],[65,244,0],[58,0,9],[32,9],[65,239,0],[58,0,10],[32,9],[65,223,0],[58,0,11],[32,9],[65,223,0],[58,0,12],[32,9],[184],[33,7],[32,3],[33,5],[2,124],...t([1],()=>[[32,5],[65,1],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([2],()=>[[32,5],[65,2],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([5],()=>[[32,5],[65,5],[70],[4,64],[16,builtin('#get___Symbol_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([18],()=>[[32,5],[65,18],[70],[4,64],[16,builtin('#get___Date_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([19],()=>[[32,5],[65,19],[70],[4,64],[16,builtin('#get___Set_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([20],()=>[[32,5],[65,20],[70],[4,64],[16,builtin('#get___Map_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([21],()=>[[32,5],[65,21],[70],[4,64],[16,builtin('#get___ArrayBuffer_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([22],()=>[[32,5],[65,22],[70],[4,64],[16,builtin('#get___SharedArrayBuffer_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([23],()=>[[32,5],[65,23],[70],[4,64],[16,builtin('#get___DataView_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([33],()=>[[32,5],[65,33],[70],[4,64],[16,builtin('#get___WeakRef_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([34],()=>[[32,5],[65,34],[70],[4,64],[16,builtin('#get___WeakSet_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([35],()=>[[32,5],[65,35],[70],[4,64],[16,builtin('#get___WeakMap_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([36],()=>[[32,5],[65,36],[70],[4,64],[16,builtin('#get___Promise_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([37],()=>[[32,5],[65,37],[70],[4,64],[16,builtin('#get___Boolean_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([38],()=>[[32,5],[65,38],[70],[4,64],[16,builtin('#get___Number_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([39],()=>[[32,5],[65,39],[70],[4,64],[16,builtin('#get___String_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([40],()=>[[32,5],[65,40],[70],[4,64],[16,builtin('#get___Error_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([41],()=>[[32,5],[65,41],[70],[4,64],[16,builtin('#get___AggregateError_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([42],()=>[[32,5],[65,42],[70],[4,64],[16,builtin('#get___TypeError_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([43],()=>[[32,5],[65,43],[70],[4,64],[16,builtin('#get___ReferenceError_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([44],()=>[[32,5],[65,44],[70],[4,64],[16,builtin('#get___SyntaxError_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([45],()=>[[32,5],[65,45],[70],[4,64],[16,builtin('#get___RangeError_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([46],()=>[[32,5],[65,46],[70],[4,64],[16,builtin('#get___EvalError_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([47],()=>[[32,5],[65,47],[70],[4,64],[16,builtin('#get___URIError_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([48],()=>[[32,5],[65,48],[70],[4,64],[16,builtin('#get___Test262Error_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([67],()=>[[32,5],[65,195,0],[70],[4,64],[16,builtin('#get___String_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[16,builtin('#get___Array_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[16,builtin('#get___Uint8Array_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[16,builtin('#get___Int8Array_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[16,builtin('#get___Uint8ClampedArray_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[16,builtin('#get___Uint16Array_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[16,builtin('#get___Int16Array_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[16,builtin('#get___Uint32Array_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[16,builtin('#get___Int32Array_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[16,builtin('#get___Float32Array_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[16,builtin('#get___Float64Array_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot read property of undefined`),[68,0],[12,1],[11]]),...t([195],()=>[[32,5],[65,195,1],[70],[4,64],[16,builtin('#get___ByteString_prototype')],[184],[65,7],[33,8],[12,1],[11]]),[32,6],[252,2],[32,3],[32,7],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[33,8],[11],[34,11],[32,1],[65,128,1],[114],[65,195,1],[70],[32,8],[65,128,1],[114],[65,195,1],[70],[114],[4,64],[32,10],[32,1],[32,11],[32,8],[16,builtin('__Porffor_compareStrings')],[26],[252,3],[12,1],[11],[97],[11],[184],[65,2],[15]],
|
1990
1990
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1991
1991
|
locals:[124,127,124,124,127,127,124,124],localNames:["_this","_this#type","obj","obj#type","#logicinner_tmp","#typeswitch_tmp1","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp","__tmpop_left","__tmpop_right"],
|
1992
1992
|
usedTypes:[7,195],
|
1993
1993
|
};
|
1994
1994
|
this.__Object_prototype_toString = {
|
1995
|
-
wasm:(_,{t,allocPage,builtin,funcRef,internalThrow})=>[[32,1],[184],[68,7],[97],[4,64],[32,0],[34,2],[68,0],[97],[69],[4,64],[32,2],[33,5],...number(allocPage(_,'bytestring: __Object_prototype_toString/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,8],[54,1,0],[32,8],[65,244,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,211,0],[58,0,6],[32,8],[65,244,0],[58,0,7],[32,8],[65,242,0],[58,0,8],[32,8],[65,233,0],[58,0,9],[32,8],[65,238,0],[58,0,10],[32,8],[65,231,0],[58,0,11],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[34,3],[33,9],[32,4],[33,10],[2,127],...t([0,128],()=>[[32,10],[65,0],[70],[32,10],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,10],[65,7],[70],[4,64],[32,9],[68,0],[97],[12,1],[11]]),[65,0],[11],[69],[34,11],[4,127],[32,3],...funcRef('__Object_prototype_toString'),[98],[32,4],[65,128,1],[114],[65,6],[65,128,1],[114],[71],[114],[65,2],[33,7],[5],[32,11],[65,2],[33,7],[11],[4,64],[32,3],[33,26],[32,4],[33,10],[2,124],...t([6],()=>[[32,10],[65,6],[70],[4,64],[68,0],[65,128,1],[33,14],[33,15],[68,0],[65,128,1],[33,16],[33,17],[68,0],[65,128,1],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[32,26],[252,3],[34,24],[65,192,0],[108],[65,4],[106],[45,0,128,128,36,"read func lut"],[33,25],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,24],[65,192,0],[108],[47,0,128,128,36,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,25],[65,1],[113],[4,124],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,24],[17,2,0,"no_type_return"],[5],[32,24],[17,0,0,"no_type_return"],[11],[5],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,24],[17,2,0],[33,7],[5],[32,24],[17,0,0],[33,7],[11],[11],[12,5],[11],[32,25],[65,1],[113],[4,124],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,24],[17,3,0,"no_type_return"],[5],[32,15],[32,14],[32,24],[17,1,0,"no_type_return"],[11],[5],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,24],[17,3,0],[33,7],[5],[32,15],[32,14],[32,24],[17,1,0],[33,7],[11],[11],[12,4],[11],[32,25],[65,1],[113],[4,124],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,24],[17,4,0,"no_type_return"],[5],[32,15],[32,14],[32,17],[32,16],[32,24],[17,2,0,"no_type_return"],[11],[5],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,24],[17,4,0],[33,7],[5],[32,15],[32,14],[32,17],[32,16],[32,24],[17,2,0],[33,7],[11],[11],[12,3],[11],[32,25],[65,1],[113],[4,124],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,24],[17,5,0,"no_type_return"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,24],[17,3,0,"no_type_return"],[11],[5],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,24],[17,5,0],[33,7],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,24],[17,3,0],[33,7],[11],[11],[12,2],[11],[32,25],[65,1],[113],[4,124],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,24],[17,6,0,"no_type_return"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,24],[17,4,0,"no_type_return"],[11],[5],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,24],[17,6,0],[33,7],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,24],[17,4,0],[33,7],[11],[11],[12,1],[11],[32,25],[65,1],[113],[4,124],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,24],[17,7,0,"no_type_return"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,24],[17,5,0,"no_type_return"],[11],[5],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,24],[17,7,0],[33,7],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,24],[17,5,0],[33,7],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`ovr is not a function`),[68,0],[11],[32,7],[15],[11],[11],[11],[16,builtin('__Porffor_allocate')],[183],[33,27],[32,0],[68,0],[97],[32,1],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...number(allocPage(_,'bytestring: __Object_prototype_toString/out','i8'),124),[34,27],[65,195,1],[15],[11],[32,0],[68,0],[97],[32,1],[65,128,1],[114],[65,7],[65,128,1],[114],[70],[113],[4,64],[32,27],[252,3],[34,8],[65,13],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,206,0],[58,0,12],[32,8],[65,245,0],[58,0,13],[32,8],[65,236,0],[58,0,14],[32,8],[65,236,0],[58,0,15],[32,8],[65,221,0],[58,0,16],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,1],[184],[34,28],[68,80],[97],[4,64],[32,27],[252,3],[34,8],[65,14],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,193,0],[58,0,12],[32,8],[65,242,0],[58,0,13],[32,8],[65,242,0],[58,0,14],[32,8],[65,225,0],[58,0,15],[32,8],[65,249,0],[58,0,16],[32,8],[65,221,0],[58,0,17],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,28],[68,6],[97],[4,64],[32,27],[252,3],[34,8],[65,17],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,198,0],[58,0,12],[32,8],[65,245,0],[58,0,13],[32,8],[65,238,0],[58,0,14],[32,8],[65,227,0],[58,0,15],[32,8],[65,244,0],[58,0,16],[32,8],[65,233,0],[58,0,17],[32,8],[65,239,0],[58,0,18],[32,8],[65,238,0],[58,0,19],[32,8],[65,221,0],[58,0,20],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,28],[68,2],[97],[32,28],[68,37],[97],[114],[4,64],[32,27],[252,3],[34,8],[65,16],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,194,0],[58,0,12],[32,8],[65,239,0],[58,0,13],[32,8],[65,239,0],[58,0,14],[32,8],[65,236,0],[58,0,15],[32,8],[65,229,0],[58,0,16],[32,8],[65,225,0],[58,0,17],[32,8],[65,238,0],[58,0,18],[32,8],[65,221,0],[58,0,19],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,28],[68,1],[97],[32,28],[68,38],[97],[114],[4,64],[32,27],[252,3],[34,8],[65,15],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,206,0],[58,0,12],[32,8],[65,245,0],[58,0,13],[32,8],[65,237,0],[58,0,14],[32,8],[65,226,0],[58,0,15],[32,8],[65,229,0],[58,0,16],[32,8],[65,242,0],[58,0,17],[32,8],[65,221,0],[58,0,18],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,28],[68,67],[97],[32,28],[68,195],[97],[114],[4,64],[32,27],[252,3],[34,8],[65,15],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,211,0],[58,0,12],[32,8],[65,244,0],[58,0,13],[32,8],[65,242,0],[58,0,14],[32,8],[65,233,0],[58,0,15],[32,8],[65,238,0],[58,0,16],[32,8],[65,231,0],[58,0,17],[32,8],[65,221,0],[58,0,18],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,28],[68,18],[97],[4,64],[32,27],[252,3],[34,8],[65,13],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,196,0],[58,0,12],[32,8],[65,225,0],[58,0,13],[32,8],[65,244,0],[58,0,14],[32,8],[65,229,0],[58,0,15],[32,8],[65,221,0],[58,0,16],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,28],[68,17],[97],[4,64],[32,27],[252,3],[34,8],[65,15],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,210,0],[58,0,12],[32,8],[65,229,0],[58,0,13],[32,8],[65,231,0],[58,0,14],[32,8],[65,197,0],[58,0,15],[32,8],[65,248,0],[58,0,16],[32,8],[65,240,0],[58,0,17],[32,8],[65,221,0],[58,0,18],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,27],[252,3],[34,8],[65,15],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,207,0],[58,0,12],[32,8],[65,226,0],[58,0,13],[32,8],[65,234,0],[58,0,14],[32,8],[65,229,0],[58,0,15],[32,8],[65,227,0],[58,0,16],[32,8],[65,244,0],[58,0,17],[32,8],[65,221,0],[58,0,18],[32,8],[184],[34,27],[65,195,1],[15]],
|
1995
|
+
wasm:(_,{t,allocPage,builtin,funcRef,internalThrow})=>[[32,1],[184],[68,7],[97],[4,64],[32,0],[34,2],[68,0],[97],[69],[4,64],[32,2],[33,5],...number(allocPage(_,'bytestring: __Object_prototype_toString/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,8],[54,1,0],[32,8],[65,244,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,211,0],[58,0,6],[32,8],[65,244,0],[58,0,7],[32,8],[65,242,0],[58,0,8],[32,8],[65,233,0],[58,0,9],[32,8],[65,238,0],[58,0,10],[32,8],[65,231,0],[58,0,11],[32,8],[184],[33,6],[32,5],[252,2],[65,7],[32,6],[252,3],[65,195,1],[16,builtin('__Porffor_object_get')],[34,7],[33,4],[34,3],[33,9],[32,4],[33,10],[2,127],...t([0,128],()=>[[32,10],[65,0],[70],[32,10],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,10],[65,7],[70],[4,64],[32,9],[68,0],[97],[12,1],[11]]),[65,0],[11],[69],[34,11],[4,127],[32,3],...funcRef('__Object_prototype_toString'),[98],[32,4],[65,128,1],[114],[65,6],[65,128,1],[114],[71],[114],[65,2],[33,7],[5],[32,11],[65,2],[33,7],[11],[4,64],[32,3],[33,26],[32,4],[33,10],[2,124],...t([6],()=>[[32,10],[65,6],[70],[4,64],[68,0],[65,128,1],[33,14],[33,15],[68,0],[65,128,1],[33,16],[33,17],[68,0],[65,128,1],[33,18],[33,19],[68,0],[65,128,1],[33,20],[33,21],[68,0],[65,128,1],[33,22],[33,23],[32,26],[252,3],[34,24],[65,192,0],[108],[65,4],[106],[45,0,128,128,36,"read func lut"],[33,25],[2,124],[2,64],[2,64],[2,64],[2,64],[2,64],[2,64],[32,24],[65,192,0],[108],[47,0,128,128,36,"read func lut"],[14,6,0,1,2,3,4,5,0],[11],[32,25],[65,1],[113],[4,124],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,24],[17,2,0,"no_type_return"],[5],[32,24],[17,0,0,"no_type_return"],[11],[5],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,24],[17,2,0],[33,7],[5],[32,24],[17,0,0],[33,7],[11],[11],[12,5],[11],[32,25],[65,1],[113],[4,124],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,24],[17,3,0,"no_type_return"],[5],[32,15],[32,14],[32,24],[17,1,0,"no_type_return"],[11],[5],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,24],[17,3,0],[33,7],[5],[32,15],[32,14],[32,24],[17,1,0],[33,7],[11],[11],[12,4],[11],[32,25],[65,1],[113],[4,124],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,24],[17,4,0,"no_type_return"],[5],[32,15],[32,14],[32,17],[32,16],[32,24],[17,2,0,"no_type_return"],[11],[5],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,24],[17,4,0],[33,7],[5],[32,15],[32,14],[32,17],[32,16],[32,24],[17,2,0],[33,7],[11],[11],[12,3],[11],[32,25],[65,1],[113],[4,124],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,24],[17,5,0,"no_type_return"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,24],[17,3,0,"no_type_return"],[11],[5],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,24],[17,5,0],[33,7],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,24],[17,3,0],[33,7],[11],[11],[12,2],[11],[32,25],[65,1],[113],[4,124],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,24],[17,6,0,"no_type_return"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,24],[17,4,0,"no_type_return"],[11],[5],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,24],[17,6,0],[33,7],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,24],[17,4,0],[33,7],[11],[11],[12,1],[11],[32,25],[65,1],[113],[4,124],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,24],[17,7,0,"no_type_return"],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,24],[17,5,0,"no_type_return"],[11],[5],[32,25],[65,2],[113],[4,124],[68,0],[65,128,1],[68,0],[65,128,1],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,24],[17,7,0],[33,7],[5],[32,15],[32,14],[32,17],[32,16],[32,19],[32,18],[32,21],[32,20],[32,23],[32,22],[32,24],[17,5,0],[33,7],[11],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`ovr is not a function`),[68,0],[11],[32,7],[15],[11],[11],[11],[16,builtin('__Porffor_allocate')],[183],[33,27],[32,0],[68,0],[97],[32,1],[65,128,1],[114],[65,128,1],[65,128,1],[114],[70],[113],[4,64],...number(allocPage(_,'bytestring: __Object_prototype_toString/out','i8'),124),[34,27],[65,195,1],[15],[11],[32,0],[68,0],[97],[32,1],[65,128,1],[114],[65,7],[65,128,1],[114],[70],[113],[4,64],[32,27],[252,3],[34,8],[65,13],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,206,0],[58,0,12],[32,8],[65,245,0],[58,0,13],[32,8],[65,236,0],[58,0,14],[32,8],[65,236,0],[58,0,15],[32,8],[65,221,0],[58,0,16],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,1],[184],[34,28],[68,80],[97],[4,64],[32,27],[252,3],[34,8],[65,14],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,193,0],[58,0,12],[32,8],[65,242,0],[58,0,13],[32,8],[65,242,0],[58,0,14],[32,8],[65,225,0],[58,0,15],[32,8],[65,249,0],[58,0,16],[32,8],[65,221,0],[58,0,17],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,28],[68,6],[97],[4,64],[32,27],[252,3],[34,8],[65,17],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,198,0],[58,0,12],[32,8],[65,245,0],[58,0,13],[32,8],[65,238,0],[58,0,14],[32,8],[65,227,0],[58,0,15],[32,8],[65,244,0],[58,0,16],[32,8],[65,233,0],[58,0,17],[32,8],[65,239,0],[58,0,18],[32,8],[65,238,0],[58,0,19],[32,8],[65,221,0],[58,0,20],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,28],[68,2],[97],[32,28],[68,37],[97],[114],[4,64],[32,27],[252,3],[34,8],[65,16],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,194,0],[58,0,12],[32,8],[65,239,0],[58,0,13],[32,8],[65,239,0],[58,0,14],[32,8],[65,236,0],[58,0,15],[32,8],[65,229,0],[58,0,16],[32,8],[65,225,0],[58,0,17],[32,8],[65,238,0],[58,0,18],[32,8],[65,221,0],[58,0,19],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,28],[68,1],[97],[32,28],[68,38],[97],[114],[4,64],[32,27],[252,3],[34,8],[65,15],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,206,0],[58,0,12],[32,8],[65,245,0],[58,0,13],[32,8],[65,237,0],[58,0,14],[32,8],[65,226,0],[58,0,15],[32,8],[65,229,0],[58,0,16],[32,8],[65,242,0],[58,0,17],[32,8],[65,221,0],[58,0,18],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,28],[68,67],[97],[32,28],[68,195],[97],[114],[32,28],[68,39],[97],[114],[4,64],[32,27],[252,3],[34,8],[65,15],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,211,0],[58,0,12],[32,8],[65,244,0],[58,0,13],[32,8],[65,242,0],[58,0,14],[32,8],[65,233,0],[58,0,15],[32,8],[65,238,0],[58,0,16],[32,8],[65,231,0],[58,0,17],[32,8],[65,221,0],[58,0,18],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,28],[68,18],[97],[4,64],[32,27],[252,3],[34,8],[65,13],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,196,0],[58,0,12],[32,8],[65,225,0],[58,0,13],[32,8],[65,244,0],[58,0,14],[32,8],[65,229,0],[58,0,15],[32,8],[65,221,0],[58,0,16],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,28],[68,17],[97],[4,64],[32,27],[252,3],[34,8],[65,15],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,210,0],[58,0,12],[32,8],[65,229,0],[58,0,13],[32,8],[65,231,0],[58,0,14],[32,8],[65,197,0],[58,0,15],[32,8],[65,248,0],[58,0,16],[32,8],[65,240,0],[58,0,17],[32,8],[65,221,0],[58,0,18],[32,8],[184],[34,27],[65,195,1],[15],[11],[32,27],[252,3],[34,8],[65,15],[54,1,0],[32,8],[65,219,0],[58,0,4],[32,8],[65,239,0],[58,0,5],[32,8],[65,226,0],[58,0,6],[32,8],[65,234,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,227,0],[58,0,9],[32,8],[65,244,0],[58,0,10],[32,8],[65,32],[58,0,11],[32,8],[65,207,0],[58,0,12],[32,8],[65,226,0],[58,0,13],[32,8],[65,234,0],[58,0,14],[32,8],[65,229,0],[58,0,15],[32,8],[65,227,0],[58,0,16],[32,8],[65,244,0],[58,0,17],[32,8],[65,221,0],[58,0,18],[32,8],[184],[34,27],[65,195,1],[15]],
|
1996
1996
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1997
1997
|
locals:[124,124,127,124,124,127,127,124,127,127,124,127,127,124,127,124,127,124,127,124,127,124,127,127,124,124,124],localNames:["_this","_this#type","obj","ovr","ovr#type","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp","#logicinner_tmp","#typeswitch_tmp1","logictmpi","#call_val","#call_type","#indirect_arg0_type","#indirect_arg0_val","#indirect_arg1_type","#indirect_arg1_val","#indirect_arg2_type","#indirect_arg2_val","#indirect_arg3_type","#indirect_arg3_val","#indirect_arg4_type","#indirect_arg4_val","#indirect_func","#indirect_flags","#indirect_callee","out","t"],
|
1998
1998
|
usedTypes:[7,195],
|
@@ -2700,25 +2700,25 @@ locals:[127,127,127,127,127],localNames:["_this","_this#type","cnt","cnt#type","
|
|
2700
2700
|
usedTypes:[195],
|
2701
2701
|
};
|
2702
2702
|
this.__String_prototype_split = {
|
2703
|
-
wasm:(_,{t,builtin,internalThrow})=>[[16,builtin('__Porffor_allocate')],[33,6],[65,0],[33,7],[65,195,0],[33,8],[32,5],[65,128,1],[70],[4,64],[65,255,255,255,255,7],[34,4],[65,1],[33,5],[26],[11],[32,4],[65,0],[114],[34,4],[65,1],[33,5],[26],[32,4],[65,0],[72],[4,64],[65,255,255,255,255,7],[34,4],[65,1],[33,5],[26],[11],[16,builtin('__Porffor_allocate')],[33,9],[65,0],[33,10],[32,0],[40,1,0],[65,2],[108],[33,11],[32,2],[40,1,0],[34,12],[65,1],[70],[4,64],[32,2],[40,1,0],[33,14],[32,3],[33,16],[2,127],...t([67],()=>[[32,16],[65,195,0],[70],[4,64],[65,0],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,18],[12,1],[11]]),...t([195],()=>[[32,16],[65,195,1],[70],[4,64],[65,0],[32,2],[106],[45,0,4],[65,1],[33,18],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[65,0],[11],[33,13],[65,0],[33,19],[3,64],[32,19],[32,11],[72],[4,64],[2,64],[32,0],[32,19],[106],[47,0,4],[34,20],[32,13],[70],[4,64],[32,7],[32,4],[78],[4,64],[32,6],[34,22],[32,7],[34,21],[54,1,0],[32,6],[65,208,0],[15],[11],[32,9],[34,22],[32,10],[34,21],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,9],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[32,8],[58,0,12],[32,7],[65,1],[106],[33,7],[16,builtin('__Porffor_allocate')],[33,9],[65,0],[33,10],[12,1],[11],[32,9],[32,10],[65,2],[108],[106],[32,20],[59,0,4],[32,10],[65,1],[106],[33,10],[11],[32,19],[65,2],[106],[34,19],[12,1],[11],[11],[5],[65,0],[33,23],[65,0],[33,19],[3,64],[32,19],[32,11],[72],[4,64],[2,64],[32,0],[32,19],[106],[47,0,4],[34,20],[32,2],[40,1,0],[33,14],[32,3],[33,16],[2,127],...t([67],()=>[[32,16],[65,195,0],[70],[4,64],[32,23],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,18],[12,1],[11]]),...t([195],()=>[[32,16],[65,195,1],[70],[4,64],[32,23],[32,2],[106],[45,0,4],[65,1],[33,18],[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,23],[65,1],[106],[34,23],[32,12],[70],[4,64],[32,7],[32,4],[78],[4,64],[32,6],[34,22],[32,7],[34,21],[54,1,0],[32,6],[65,208,0],[15],[11],[32,9],[34,22],[32,10],[32,12],[65,1],[107],[107],[34,21],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,9],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[32,8],[58,0,12],[32,7],[65,1],[106],[33,7],[16,builtin('__Porffor_allocate')],[33,9],[65,0],[33,10],[12,2],[11],[5],[65,0],[33,23],[11],[32,9],[32,10],[106],[32,20],[59,0,4],[32,10],[65,1],[106],[33,10],[11],[32,19],[65,2],[106],[34,19],[12,1],[11],[11],[11],[32,10],[65,0],[74],[34,24],[4,127],[32,7],[32,4],[72],[65,2],[33,18],[5],[32,24],[65,2],[33,18],[11],[33,25],[32,18],[33,16],[2,127],...t([67,195],()=>[[32,16],[65,195,0],[70],[32,16],[65,195,1],[70],[114],[4,64],[32,25],[40,1,0],[12,1],[11]]),[32,25],[11],[4,64],[32,9],[34,22],[32,10],[34,21],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,9],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[32,8],[58,0,12],[32,7],[65,1],[106],[33,7],[11],[32,6],[34,22],[32,7],[34,21],[54,1,0],[32,6],[65,208,0],[15]],
|
2703
|
+
wasm:(_,{t,builtin,internalThrow})=>[[16,builtin('__Porffor_allocate')],[33,6],[65,0],[33,7],[65,195,0],[33,8],[32,5],[65,128,1],[70],[4,64],[65,255,255,255,255,7],[34,4],[65,1],[33,5],[26],[11],[32,4],[65,0],[114],[34,4],[65,1],[33,5],[26],[32,4],[65,0],[72],[4,64],[65,255,255,255,255,7],[34,4],[65,1],[33,5],[26],[11],[16,builtin('__Porffor_allocate')],[33,9],[65,0],[33,10],[32,0],[40,1,0],[65,2],[108],[33,11],[32,2],[40,1,0],[34,12],[65,1],[70],[4,64],[32,2],[40,1,0],[33,14],[32,3],[33,16],[2,127],...t([39],()=>[[32,16],[65,39],[70],[4,64],[65,0],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,18],[12,1],[11]]),...t([67],()=>[[32,16],[65,195,0],[70],[4,64],[65,0],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,18],[12,1],[11]]),...t([195],()=>[[32,16],[65,195,1],[70],[4,64],[65,0],[32,2],[106],[45,0,4],[65,1],[33,18],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[65,0],[11],[33,13],[65,0],[33,19],[3,64],[32,19],[32,11],[72],[4,64],[2,64],[32,0],[32,19],[106],[47,0,4],[34,20],[32,13],[70],[4,64],[32,7],[32,4],[78],[4,64],[32,6],[34,22],[32,7],[34,21],[54,1,0],[32,6],[65,208,0],[15],[11],[32,9],[34,22],[32,10],[34,21],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,9],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[32,8],[58,0,12],[32,7],[65,1],[106],[33,7],[16,builtin('__Porffor_allocate')],[33,9],[65,0],[33,10],[12,1],[11],[32,9],[32,10],[65,2],[108],[106],[32,20],[59,0,4],[32,10],[65,1],[106],[33,10],[11],[32,19],[65,2],[106],[34,19],[12,1],[11],[11],[5],[65,0],[33,23],[65,0],[33,19],[3,64],[32,19],[32,11],[72],[4,64],[2,64],[32,0],[32,19],[106],[47,0,4],[34,20],[32,2],[40,1,0],[33,14],[32,3],[33,16],[2,127],...t([39],()=>[[32,16],[65,39],[70],[4,64],[32,23],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,18],[12,1],[11]]),...t([67],()=>[[32,16],[65,195,0],[70],[4,64],[32,23],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,18],[12,1],[11]]),...t([195],()=>[[32,16],[65,195,1],[70],[4,64],[32,23],[32,2],[106],[45,0,4],[65,1],[33,18],[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,23],[65,1],[106],[34,23],[32,12],[70],[4,64],[32,7],[32,4],[78],[4,64],[32,6],[34,22],[32,7],[34,21],[54,1,0],[32,6],[65,208,0],[15],[11],[32,9],[34,22],[32,10],[32,12],[65,1],[107],[107],[34,21],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,9],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[32,8],[58,0,12],[32,7],[65,1],[106],[33,7],[16,builtin('__Porffor_allocate')],[33,9],[65,0],[33,10],[12,2],[11],[5],[65,0],[33,23],[11],[32,9],[32,10],[106],[32,20],[59,0,4],[32,10],[65,1],[106],[33,10],[11],[32,19],[65,2],[106],[34,19],[12,1],[11],[11],[11],[32,10],[65,0],[74],[34,24],[4,127],[32,7],[32,4],[72],[65,2],[33,18],[5],[32,24],[65,2],[33,18],[11],[33,25],[32,18],[33,16],[2,127],...t([67,195],()=>[[32,16],[65,195,0],[70],[32,16],[65,195,1],[70],[114],[4,64],[32,25],[40,1,0],[12,1],[11]]),[32,25],[11],[4,64],[32,9],[34,22],[32,10],[34,21],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,9],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[32,8],[58,0,12],[32,7],[65,1],[106],[33,7],[11],[32,6],[34,22],[32,7],[34,21],[54,1,0],[32,6],[65,208,0],[15]],
|
2704
2704
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
2705
2705
|
locals:[127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","separator","separator#type","limit","limit#type","out","outLen","sType","tmp","tmpLen","thisLen","sepLen","sepChar","__proto_length_cache","__proto_pointer_cache","#typeswitch_tmp1","__charCodeAt_tmp","#last_type","i","x","__length_setter_tmp","__member_setter_ptr_tmp","sepInd","logictmp","#logicinner_tmp"],
|
2706
2706
|
usedTypes:[80,67],
|
2707
2707
|
};
|
2708
2708
|
this.__ByteString_prototype_split = {
|
2709
|
-
wasm:(_,{t,builtin,internalThrow})=>[[16,builtin('__Porffor_allocate')],[33,6],[65,0],[33,7],[65,195,1],[33,8],[32,5],[65,128,1],[70],[4,64],[65,255,255,255,255,7],[34,4],[65,1],[33,5],[26],[11],[32,4],[65,0],[114],[34,4],[65,1],[33,5],[26],[32,4],[65,0],[72],[4,64],[65,255,255,255,255,7],[34,4],[65,1],[33,5],[26],[11],[16,builtin('__Porffor_allocate')],[33,9],[65,0],[33,10],[32,0],[40,1,0],[33,11],[32,2],[40,1,0],[34,12],[65,1],[70],[4,64],[32,2],[40,1,0],[33,14],[32,3],[33,16],[2,127],...t([67],()=>[[32,16],[65,195,0],[70],[4,64],[65,0],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,18],[12,1],[11]]),...t([195],()=>[[32,16],[65,195,1],[70],[4,64],[65,0],[32,2],[106],[45,0,4],[65,1],[33,18],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[65,0],[11],[33,13],[65,0],[33,19],[3,64],[32,19],[32,11],[72],[4,64],[2,64],[32,0],[32,19],[106],[45,0,4],[34,20],[32,13],[70],[4,64],[32,7],[32,4],[78],[4,64],[32,6],[34,22],[32,7],[34,21],[54,1,0],[32,6],[65,208,0],[15],[11],[32,9],[34,22],[32,10],[34,21],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,9],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[32,8],[58,0,12],[32,7],[65,1],[106],[33,7],[16,builtin('__Porffor_allocate')],[33,9],[65,0],[33,10],[12,1],[11],[32,9],[32,10],[106],[32,20],[58,0,4],[32,10],[65,1],[106],[33,10],[11],[32,19],[65,1],[106],[33,19],[12,1],[11],[11],[5],[65,0],[33,23],[65,0],[33,19],[3,64],[32,19],[32,11],[72],[4,64],[2,64],[32,0],[32,19],[106],[45,0,4],[34,20],[32,2],[40,1,0],[33,14],[32,3],[33,16],[2,127],...t([67],()=>[[32,16],[65,195,0],[70],[4,64],[32,23],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,18],[12,1],[11]]),...t([195],()=>[[32,16],[65,195,1],[70],[4,64],[32,23],[32,2],[106],[45,0,4],[65,1],[33,18],[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,23],[65,1],[106],[34,23],[32,12],[70],[4,64],[32,7],[32,4],[78],[4,64],[32,6],[34,22],[32,7],[34,21],[54,1,0],[32,6],[65,208,0],[15],[11],[32,9],[34,22],[32,10],[32,12],[65,1],[107],[107],[34,21],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,9],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[32,8],[58,0,12],[32,7],[65,1],[106],[33,7],[16,builtin('__Porffor_allocate')],[33,9],[65,0],[33,10],[12,2],[11],[5],[65,0],[33,23],[11],[32,9],[32,10],[106],[32,20],[58,0,4],[32,10],[65,1],[106],[33,10],[11],[32,19],[65,1],[106],[33,19],[12,1],[11],[11],[11],[32,10],[65,0],[74],[34,24],[4,127],[32,7],[32,4],[72],[65,2],[33,18],[5],[32,24],[65,2],[33,18],[11],[33,25],[32,18],[33,16],[2,127],...t([67,195],()=>[[32,16],[65,195,0],[70],[32,16],[65,195,1],[70],[114],[4,64],[32,25],[40,1,0],[12,1],[11]]),[32,25],[11],[4,64],[32,9],[34,22],[32,10],[34,21],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,9],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[32,8],[58,0,12],[32,7],[65,1],[106],[33,7],[11],[32,6],[34,22],[32,7],[34,21],[54,1,0],[32,6],[65,208,0],[15]],
|
2709
|
+
wasm:(_,{t,builtin,internalThrow})=>[[16,builtin('__Porffor_allocate')],[33,6],[65,0],[33,7],[65,195,1],[33,8],[32,5],[65,128,1],[70],[4,64],[65,255,255,255,255,7],[34,4],[65,1],[33,5],[26],[11],[32,4],[65,0],[114],[34,4],[65,1],[33,5],[26],[32,4],[65,0],[72],[4,64],[65,255,255,255,255,7],[34,4],[65,1],[33,5],[26],[11],[16,builtin('__Porffor_allocate')],[33,9],[65,0],[33,10],[32,0],[40,1,0],[33,11],[32,2],[40,1,0],[34,12],[65,1],[70],[4,64],[32,2],[40,1,0],[33,14],[32,3],[33,16],[2,127],...t([39],()=>[[32,16],[65,39],[70],[4,64],[65,0],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,18],[12,1],[11]]),...t([67],()=>[[32,16],[65,195,0],[70],[4,64],[65,0],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,18],[12,1],[11]]),...t([195],()=>[[32,16],[65,195,1],[70],[4,64],[65,0],[32,2],[106],[45,0,4],[65,1],[33,18],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[65,0],[11],[33,13],[65,0],[33,19],[3,64],[32,19],[32,11],[72],[4,64],[2,64],[32,0],[32,19],[106],[45,0,4],[34,20],[32,13],[70],[4,64],[32,7],[32,4],[78],[4,64],[32,6],[34,22],[32,7],[34,21],[54,1,0],[32,6],[65,208,0],[15],[11],[32,9],[34,22],[32,10],[34,21],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,9],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[32,8],[58,0,12],[32,7],[65,1],[106],[33,7],[16,builtin('__Porffor_allocate')],[33,9],[65,0],[33,10],[12,1],[11],[32,9],[32,10],[106],[32,20],[58,0,4],[32,10],[65,1],[106],[33,10],[11],[32,19],[65,1],[106],[33,19],[12,1],[11],[11],[5],[65,0],[33,23],[65,0],[33,19],[3,64],[32,19],[32,11],[72],[4,64],[2,64],[32,0],[32,19],[106],[45,0,4],[34,20],[32,2],[40,1,0],[33,14],[32,3],[33,16],[2,127],...t([39],()=>[[32,16],[65,39],[70],[4,64],[32,23],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,18],[12,1],[11]]),...t([67],()=>[[32,16],[65,195,0],[70],[4,64],[32,23],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,18],[12,1],[11]]),...t([195],()=>[[32,16],[65,195,1],[70],[4,64],[32,23],[32,2],[106],[45,0,4],[65,1],[33,18],[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,23],[65,1],[106],[34,23],[32,12],[70],[4,64],[32,7],[32,4],[78],[4,64],[32,6],[34,22],[32,7],[34,21],[54,1,0],[32,6],[65,208,0],[15],[11],[32,9],[34,22],[32,10],[32,12],[65,1],[107],[107],[34,21],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,9],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[32,8],[58,0,12],[32,7],[65,1],[106],[33,7],[16,builtin('__Porffor_allocate')],[33,9],[65,0],[33,10],[12,2],[11],[5],[65,0],[33,23],[11],[32,9],[32,10],[106],[32,20],[58,0,4],[32,10],[65,1],[106],[33,10],[11],[32,19],[65,1],[106],[33,19],[12,1],[11],[11],[11],[32,10],[65,0],[74],[34,24],[4,127],[32,7],[32,4],[72],[65,2],[33,18],[5],[32,24],[65,2],[33,18],[11],[33,25],[32,18],[33,16],[2,127],...t([67,195],()=>[[32,16],[65,195,0],[70],[32,16],[65,195,1],[70],[114],[4,64],[32,25],[40,1,0],[12,1],[11]]),[32,25],[11],[4,64],[32,9],[34,22],[32,10],[34,21],[54,1,0],[32,6],[32,7],[65,9],[108],[106],[32,9],[184],[57,0,4],[32,6],[32,7],[65,9],[108],[106],[32,8],[58,0,12],[32,7],[65,1],[106],[33,7],[11],[32,6],[34,22],[32,7],[34,21],[54,1,0],[32,6],[65,208,0],[15]],
|
2710
2710
|
params:[127,127,127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
2711
2711
|
locals:[127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127],localNames:["_this","_this#type","separator","separator#type","limit","limit#type","out","outLen","bsType","tmp","tmpLen","thisLen","sepLen","sepChar","__proto_length_cache","__proto_pointer_cache","#typeswitch_tmp1","__charCodeAt_tmp","#last_type","i","x","__length_setter_tmp","__member_setter_ptr_tmp","sepInd","logictmp","#logicinner_tmp"],
|
2712
2712
|
usedTypes:[80,195],
|
2713
2713
|
};
|
2714
2714
|
this.__String_prototype_localeCompare = {
|
2715
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,2],[184],[32,3],[16,builtin('__ecma262_ToString')],[33,4],[252,2],[34,2],[32,4],[33,3],[26],[32,0],[40,1,0],[33,5],[32,2],[40,1,0],[33,6],[32,5],[32,6],[74],[4,127],[32,5],[65,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],[32,8],[65,2],[108],[32,0],[106],[47,0,4],[65,1],[33,4],[33,9],[32,2],[40,1,0],[33,10],[32,3],[33,14],[2,127],...t([67],()=>[[32,14],[65,195,0],[70],[4,64],[32,8],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,4],[12,1],[11]]),...t([195],()=>[[32,14],[65,195,1],[70],[4,64],[32,8],[32,2],[106],[45,0,4],[65,1],[33,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],[11],[32,13],[32,9],[74],[4,64],[65,127],[65,1],[15],[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],[11],[32,6],[32,5],[74],[4,64],[65,127],[65,1],[15],[11],[65,0],[65,1],[15]],
|
2715
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,2],[184],[32,3],[16,builtin('__ecma262_ToString')],[33,4],[252,2],[34,2],[32,4],[33,3],[26],[32,0],[40,1,0],[33,5],[32,2],[40,1,0],[33,6],[32,5],[32,6],[74],[4,127],[32,5],[65,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],[32,8],[65,2],[108],[32,0],[106],[47,0,4],[65,1],[33,4],[33,9],[32,2],[40,1,0],[33,10],[32,3],[33,14],[2,127],...t([39],()=>[[32,14],[65,39],[70],[4,64],[32,8],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,4],[12,1],[11]]),...t([67],()=>[[32,14],[65,195,0],[70],[4,64],[32,8],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,4],[12,1],[11]]),...t([195],()=>[[32,14],[65,195,1],[70],[4,64],[32,8],[32,2],[106],[45,0,4],[65,1],[33,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],[11],[32,13],[32,9],[74],[4,64],[65,127],[65,1],[15],[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],[11],[32,6],[32,5],[74],[4,64],[65,127],[65,1],[15],[11],[65,0],[65,1],[15]],
|
2716
2716
|
params:[127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
2717
2717
|
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"],
|
2718
2718
|
usedTypes:[67],
|
2719
2719
|
};
|
2720
2720
|
this.__ByteString_prototype_localeCompare = {
|
2721
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,2],[184],[32,3],[16,builtin('__ecma262_ToString')],[33,4],[252,2],[34,2],[32,4],[33,3],[26],[32,0],[40,1,0],[33,5],[32,2],[40,1,0],[33,6],[32,5],[32,6],[74],[4,127],[32,5],[65,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],[32,8],[32,0],[106],[45,0,4],[65,1],[33,4],[33,9],[32,2],[40,1,0],[33,10],[32,3],[33,14],[2,127],...t([67],()=>[[32,14],[65,195,0],[70],[4,64],[32,8],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,4],[12,1],[11]]),...t([195],()=>[[32,14],[65,195,1],[70],[4,64],[32,8],[32,2],[106],[45,0,4],[65,1],[33,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],[11],[32,13],[32,9],[74],[4,64],[65,127],[65,1],[15],[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],[11],[32,6],[32,5],[74],[4,64],[65,127],[65,1],[15],[11],[65,0],[65,1],[15]],
|
2721
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,2],[184],[32,3],[16,builtin('__ecma262_ToString')],[33,4],[252,2],[34,2],[32,4],[33,3],[26],[32,0],[40,1,0],[33,5],[32,2],[40,1,0],[33,6],[32,5],[32,6],[74],[4,127],[32,5],[65,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],[32,8],[32,0],[106],[45,0,4],[65,1],[33,4],[33,9],[32,2],[40,1,0],[33,10],[32,3],[33,14],[2,127],...t([39],()=>[[32,14],[65,39],[70],[4,64],[32,8],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,4],[12,1],[11]]),...t([67],()=>[[32,14],[65,195,0],[70],[4,64],[32,8],[65,2],[108],[32,2],[106],[47,0,4],[65,1],[33,4],[12,1],[11]]),...t([195],()=>[[32,14],[65,195,1],[70],[4,64],[32,8],[32,2],[106],[45,0,4],[65,1],[33,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],[11],[32,13],[32,9],[74],[4,64],[65,127],[65,1],[15],[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],[11],[32,6],[32,5],[74],[4,64],[65,127],[65,1],[15],[11],[65,0],[65,1],[15]],
|
2722
2722
|
params:[127,127,127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
2723
2723
|
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"],
|
2724
2724
|
usedTypes:[195],
|
@@ -2782,10 +2782,11 @@ locals:[],localNames:["_this","_this#type"],
|
|
2782
2782
|
usedTypes:[195],
|
2783
2783
|
};
|
2784
2784
|
this.String = {
|
2785
|
-
wasm:(_,{t,builtin})=>[[32,0],[33,
|
2785
|
+
wasm:(_,{t,builtin})=>[[68,16],[33,6],[65,195,1],[33,7],[32,4],[252,3],[40,1,0],[184],[68,0],[100],[4,64],[32,4],[33,10],[68,0],[34,11],[252,3],[65,9],[108],[32,10],[252,3],[106],[34,13],[43,0,4],[32,13],[45,0,12],[34,12],[33,9],[33,8],[32,0],[33,14],[32,1],[33,15],[2,124],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,14],[68,0],[97],[184],[11],[34,16],[252,3],[4,124],[32,9],[184],[68,5],[97],[184],[65,2],[33,12],[5],[32,16],[65,2],[33,12],[11],[33,14],[32,12],[33,15],[2,127],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[12,1],[11]]),[32,14],[252,3],[11],[4,64],[32,8],[32,9],[16,builtin('__Symbol_prototype_toString')],[34,12],[15],[11],[32,8],[32,9],[16,builtin('__ecma262_ToString')],[34,12],[33,7],[33,6],[11],[32,0],[33,14],[32,1],[33,15],[2,124],...t([67,195],()=>[[32,15],[65,195,0],[70],[32,15],[65,195,1],[70],[114],[4,64],[32,14],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,14],[68,0],[97],[184],[11],[252,3],[4,64],[32,6],[32,7],[15],[11],[32,7],[184],[68,195],[97],[4,64],[32,6],[252,2],[32,6],[252,3],[40,1,0],[16,builtin('__Porffor_bytestringToString')],[183],[34,6],[65,195,0],[33,7],[26],[11],[32,6],[34,17],[65,39],[15]],
|
2786
2786
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2787
|
-
locals:[124,127,124,127],localNames:["#newtarget","#newtarget#type","#this","#this#type","value","value#type","#logicinner_tmp","#typeswitch_tmp1","logictmp","
|
2788
|
-
|
2787
|
+
locals:[124,127,124,127,124,124,127,127,124,127,124,124],localNames:["#newtarget","#newtarget#type","#this","#this#type","args","args#type","s","s#type","value","value#type","#member_obj","#member_prop","#last_type","#loadArray_offset","#logicinner_tmp","#typeswitch_tmp1","logictmp","O"],
|
2788
|
+
usedTypes:[195,80,67,39],
|
2789
|
+
constr:1,hasRestArgument:1,
|
2789
2790
|
};
|
2790
2791
|
this.__String_fromCharCode = {
|
2791
2792
|
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[183],[33,2],[32,0],[252,3],[40,1,0],[184],[33,3],[32,2],[252,3],[34,5],[32,3],[34,4],[252,3],[54,1,0],[68,1],[33,6],[68,0],[33,7],[3,64],[32,7],[32,3],[99],[4,64],[32,0],[33,9],[32,7],[34,10],[252,3],[65,9],[108],[32,9],[252,3],[106],[34,12],[43,0,4],[32,12],[45,0,12],[34,11],[16,builtin('__ecma262_ToIntegerOrInfinity')],[33,11],[34,8],[68,255],[100],[4,64],[68,0],[33,6],[11],[32,2],[32,7],[68,2],[162],[160],[252,2],[32,8],[252,2],[59,0,4],[32,7],[68,1],[160],[33,7],[12,1],[11],[11],[32,6],[252,3],[4,64],[32,2],[33,13],[68,0],[33,7],[3,64],[32,7],[32,3],[99],[4,64],[32,2],[32,7],[160],[252,2],[32,2],[32,7],[68,2],[162],[160],[252,2],[45,0,4],[58,0,4],[32,7],[68,1],[160],[33,7],[12,1],[11],[11],[32,13],[65,195,1],[15],[11],[32,2],[65,195,0],[15]],
|
@@ -2795,17 +2796,17 @@ usedTypes:[67,80,195],
|
|
2795
2796
|
hasRestArgument:1,
|
2796
2797
|
};
|
2797
2798
|
this.__Porffor_stn_int = {
|
2798
|
-
wasm:(_,{t,internalThrow})=>[[68,58],[33,6],[32,2],[68,10],[99],[4,64],[68,48],[32,2],[160],[33,6],[11],[68,0],[33,7],[32,0],[252,3],[40,1,0],[184],[34,8],[32,4],[161],[68,0],[97],[4,64],[68,"NaN"],[65,1],[15],[11],[3,64],[32,4],[32,8],[99],[4,64],[32,0],[252,3],[40,1,0],[33,10],[32,1],[33,12],[2,124],...t([67],()=>[[32,12],[65,195,0],[70],[4,64],[32,4],[32,4],[68,1],[160],[33,4],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,14],[12,1],[11]]),...t([195],()=>[[32,12],[65,195,1],[70],[4,64],[32,4],[32,4],[68,1],[160],[33,4],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,14],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[34,9],[68,48],[102],[34,15],[4,127],[32,9],[32,6],[99],[65,2],[33,14],[5],[32,15],[65,2],[33,14],[11],[4,64],[32,7],[32,2],[162],[32,9],[160],[68,48],[161],[33,7],[5],[32,2],[68,10],[100],[4,64],[32,9],[68,97],[102],[34,15],[4,127],[32,9],[68,87],[32,2],[160],[99],[65,2],[33,14],[5],[32,15],[65,2],[33,14],[11],[4,64],[32,7],[32,2],[162],[32,9],[160],[68,87],[161],[33,7],[5],[32,9],[68,65],[102],[34,15],[4,127],[32,9],[68,55],[32,2],[160],[99],[65,2],[33,14],[5],[32,15],[65,2],[33,14],[11],[4,64],[32,7],[32,2],[162],[32,9],[160],[68,55],[161],[33,7],[5],[68,"NaN"],[65,1],[15],[11],[11],[5],[68,"NaN"],[65,1],[15],[11],[11],[12,1],[11],[11],[32,7],[65,1],[15]],
|
2799
|
+
wasm:(_,{t,internalThrow})=>[[68,58],[33,6],[32,2],[68,10],[99],[4,64],[68,48],[32,2],[160],[33,6],[11],[68,0],[33,7],[32,0],[252,3],[40,1,0],[184],[34,8],[32,4],[161],[68,0],[97],[4,64],[68,"NaN"],[65,1],[15],[11],[3,64],[32,4],[32,8],[99],[4,64],[32,0],[252,3],[40,1,0],[33,10],[32,1],[33,12],[2,124],...t([39],()=>[[32,12],[65,39],[70],[4,64],[32,4],[32,4],[68,1],[160],[33,4],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,14],[12,1],[11]]),...t([67],()=>[[32,12],[65,195,0],[70],[4,64],[32,4],[32,4],[68,1],[160],[33,4],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,14],[12,1],[11]]),...t([195],()=>[[32,12],[65,195,1],[70],[4,64],[32,4],[32,4],[68,1],[160],[33,4],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,14],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[34,9],[68,48],[102],[34,15],[4,127],[32,9],[32,6],[99],[65,2],[33,14],[5],[32,15],[65,2],[33,14],[11],[4,64],[32,7],[32,2],[162],[32,9],[160],[68,48],[161],[33,7],[5],[32,2],[68,10],[100],[4,64],[32,9],[68,97],[102],[34,15],[4,127],[32,9],[68,87],[32,2],[160],[99],[65,2],[33,14],[5],[32,15],[65,2],[33,14],[11],[4,64],[32,7],[32,2],[162],[32,9],[160],[68,87],[161],[33,7],[5],[32,9],[68,65],[102],[34,15],[4,127],[32,9],[68,55],[32,2],[160],[99],[65,2],[33,14],[5],[32,15],[65,2],[33,14],[11],[4,64],[32,7],[32,2],[162],[32,9],[160],[68,55],[161],[33,7],[5],[68,"NaN"],[65,1],[15],[11],[11],[5],[68,"NaN"],[65,1],[15],[11],[11],[12,1],[11],[11],[32,7],[65,1],[15]],
|
2799
2800
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2800
2801
|
locals:[124,124,124,124,127,127,127,127,127,127],localNames:["str","str#type","radix","radix#type","i","i#type","nMax","n","len","chr","__proto_length_cache","__proto_pointer_cache","#typeswitch_tmp1","__charCodeAt_tmp","#last_type","logictmpi"],
|
2801
2802
|
};
|
2802
2803
|
this.__Porffor_stn_float = {
|
2803
|
-
wasm:(_,{t,internalThrow})=>[[68,0],[33,4],[68,0],[33,5],[32,0],[252,3],[40,1,0],[184],[34,6],[32,2],[161],[68,0],[97],[4,64],[68,"NaN"],[65,1],[15],[11],[3,64],[32,2],[32,6],[99],[4,64],[32,0],[252,3],[40,1,0],[33,8],[32,1],[33,10],[2,124],...t([67],()=>[[32,10],[65,195,0],[70],[4,64],[32,2],[32,2],[68,1],[160],[33,2],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,12],[12,1],[11]]),...t([195],()=>[[32,10],[65,195,1],[70],[4,64],[32,2],[32,2],[68,1],[160],[33,2],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[34,7],[68,48],[102],[34,13],[4,127],[32,7],[68,57],[101],[65,2],[33,12],[5],[32,13],[65,2],[33,12],[11],[4,64],[32,5],[252,3],[4,64],[32,5],[68,10],[162],[33,5],[32,4],[32,7],[68,48],[161],[32,5],[163],[160],[33,4],[5],[32,4],[68,10],[162],[32,7],[160],[68,48],[161],[33,4],[11],[5],[32,7],[68,46],[97],[4,64],[32,5],[252,3],[4,64],[68,"NaN"],[65,1],[15],[11],[68,1],[33,5],[5],[68,"NaN"],[65,1],[15],[11],[11],[12,1],[11],[11],[32,4],[65,1],[15]],
|
2804
|
+
wasm:(_,{t,internalThrow})=>[[68,0],[33,4],[68,0],[33,5],[32,0],[252,3],[40,1,0],[184],[34,6],[32,2],[161],[68,0],[97],[4,64],[68,"NaN"],[65,1],[15],[11],[3,64],[32,2],[32,6],[99],[4,64],[32,0],[252,3],[40,1,0],[33,8],[32,1],[33,10],[2,124],...t([39],()=>[[32,10],[65,39],[70],[4,64],[32,2],[32,2],[68,1],[160],[33,2],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,12],[12,1],[11]]),...t([67],()=>[[32,10],[65,195,0],[70],[4,64],[32,2],[32,2],[68,1],[160],[33,2],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,12],[12,1],[11]]),...t([195],()=>[[32,10],[65,195,1],[70],[4,64],[32,2],[32,2],[68,1],[160],[33,2],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,12],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[34,7],[68,48],[102],[34,13],[4,127],[32,7],[68,57],[101],[65,2],[33,12],[5],[32,13],[65,2],[33,12],[11],[4,64],[32,5],[252,3],[4,64],[32,5],[68,10],[162],[33,5],[32,4],[32,7],[68,48],[161],[32,5],[163],[160],[33,4],[5],[32,4],[68,10],[162],[32,7],[160],[68,48],[161],[33,4],[11],[5],[32,7],[68,46],[97],[4,64],[32,5],[252,3],[4,64],[68,"NaN"],[65,1],[15],[11],[68,1],[33,5],[5],[68,"NaN"],[65,1],[15],[11],[11],[12,1],[11],[11],[32,4],[65,1],[15]],
|
2804
2805
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2805
2806
|
locals:[124,124,124,124,127,127,127,127,127,127],localNames:["str","str#type","i","i#type","n","dec","len","chr","__proto_length_cache","__proto_pointer_cache","#typeswitch_tmp1","__charCodeAt_tmp","#last_type","logictmpi"],
|
2806
2807
|
};
|
2807
2808
|
this.__ecma262_StringToNumber = {
|
2808
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,2],[32,1],[33,3],[32,1],[33,4],[2,124],...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,2],[252,2],[32,3],[16,builtin('__String_prototype_trim')],[33,5],[183],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,2],[252,2],[32,3],[16,builtin('__ByteString_prototype_trim')],[33,5],[183],[12,1],[11]]),...internalThrow(_,'TypeError',`'trim' proto func tried to be called on a type without an impl`),[68,0],[11],[34,0],[32,5],[33,1],[26],[32,0],[252,3],[40,1,0],[184],[68,0],[97],[4,64],[68,0],[65,1],[15],[11],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[65,0],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[65,0],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[33,6],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[65,1],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[65,1],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[33,10],[32,6],[68,48],[97],[4,64],[32,10],[68,120],[97],[34,11],[69],[4,127],[32,10],[68,88],[97],[65,2],[33,5],[5],[32,11],[65,2],[33,5],[11],[4,64],[32,0],[32,1],[68,16],[65,1],[68,2],[65,1],[16,builtin('__Porffor_stn_int')],[34,5],[15],[11],[32,10],[68,111],[97],[34,11],[69],[4,127],[32,10],[68,79],[97],[65,2],[33,5],[5],[32,11],[65,2],[33,5],[11],[4,64],[32,0],[32,1],[68,8],[65,1],[68,2],[65,1],[16,builtin('__Porffor_stn_int')],[34,5],[15],[11],[32,10],[68,98],[97],[34,11],[69],[4,127],[32,10],[68,66],[97],[65,2],[33,5],[5],[32,11],[65,2],[33,5],[11],[4,64],[32,0],[32,1],[68,2],[65,1],[68,2],[65,1],[16,builtin('__Porffor_stn_int')],[34,5],[15],[11],[11],[68,0],[33,12],[68,0],[33,13],[32,6],[68,43],[97],[4,64],[68,1],[33,12],[11],[32,6],[68,45],[97],[4,64],[68,1],[33,13],[68,1],[33,12],[11],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,73],[97],[4,64],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,1],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,1],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,110],[97],[34,11],[4,127],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,2],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,2],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,102],[97],[65,2],[33,5],[5],[32,11],[65,2],[33,5],[11],[34,11],[33,14],[32,5],[33,4],[2,127],...t([67,195],()=>[[32,4],[65,195,0],[70],[32,4],[65,195,1],[70],[114],[4,64],[32,14],[40,1,0],[12,1],[11]]),[32,14],[11],[4,127],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,3],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,3],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,105],[97],[65,2],[33,5],[5],[32,11],[32,5],[33,5],[11],[34,11],[33,14],[32,5],[33,4],[2,127],...t([67,195],()=>[[32,4],[65,195,0],[70],[32,4],[65,195,1],[70],[114],[4,64],[32,14],[40,1,0],[12,1],[11]]),[32,14],[11],[4,127],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,4],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,4],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,110],[97],[65,2],[33,5],[5],[32,11],[32,5],[33,5],[11],[34,11],[33,14],[32,5],[33,4],[2,127],...t([67,195],()=>[[32,4],[65,195,0],[70],[32,4],[65,195,1],[70],[114],[4,64],[32,14],[40,1,0],[12,1],[11]]),[32,14],[11],[4,127],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,5],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,5],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,105],[97],[65,2],[33,5],[5],[32,11],[32,5],[33,5],[11],[34,11],[33,14],[32,5],[33,4],[2,127],...t([67,195],()=>[[32,4],[65,195,0],[70],[32,4],[65,195,1],[70],[114],[4,64],[32,14],[40,1,0],[12,1],[11]]),[32,14],[11],[4,127],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,6],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,6],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,116],[97],[65,2],[33,5],[5],[32,11],[32,5],[33,5],[11],[34,11],[33,14],[32,5],[33,4],[2,127],...t([67,195],()=>[[32,4],[65,195,0],[70],[32,4],[65,195,1],[70],[114],[4,64],[32,14],[40,1,0],[12,1],[11]]),[32,14],[11],[4,127],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,7],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,7],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,121],[97],[65,2],[33,5],[5],[32,11],[32,5],[33,5],[11],[4,64],[68,"Infinity"],[33,15],[32,13],[252,3],[4,124],[32,15],[154],[65,1],[33,5],[5],[32,15],[65,1],[33,5],[11],[32,5],[15],[11],[68,"NaN"],[65,1],[15],[11],[32,0],[32,1],[32,12],[65,1],[16,builtin('__Porffor_stn_float')],[33,5],[33,15],[32,13],[252,3],[4,64],[32,15],[154],[65,1],[15],[11],[32,15],[65,1],[15]],
|
2809
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,2],[32,1],[33,3],[32,1],[33,4],[2,124],...t([39],()=>[[32,4],[65,39],[70],[4,64],[32,2],[252,2],[32,3],[16,builtin('__String_prototype_trim')],[33,5],[183],[12,1],[11]]),...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,2],[252,2],[32,3],[16,builtin('__String_prototype_trim')],[33,5],[183],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,2],[252,2],[32,3],[16,builtin('__ByteString_prototype_trim')],[33,5],[183],[12,1],[11]]),...internalThrow(_,'TypeError',`'trim' proto func tried to be called on a type without an impl`),[68,0],[11],[34,0],[32,5],[33,1],[26],[32,0],[252,3],[40,1,0],[184],[68,0],[97],[4,64],[68,0],[65,1],[15],[11],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([39],()=>[[32,4],[65,39],[70],[4,64],[65,0],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[65,0],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[65,0],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[33,6],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([39],()=>[[32,4],[65,39],[70],[4,64],[65,1],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[65,1],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[65,1],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[33,10],[32,6],[68,48],[97],[4,64],[32,10],[68,120],[97],[34,11],[69],[4,127],[32,10],[68,88],[97],[65,2],[33,5],[5],[32,11],[65,2],[33,5],[11],[4,64],[32,0],[32,1],[68,16],[65,1],[68,2],[65,1],[16,builtin('__Porffor_stn_int')],[34,5],[15],[11],[32,10],[68,111],[97],[34,11],[69],[4,127],[32,10],[68,79],[97],[65,2],[33,5],[5],[32,11],[65,2],[33,5],[11],[4,64],[32,0],[32,1],[68,8],[65,1],[68,2],[65,1],[16,builtin('__Porffor_stn_int')],[34,5],[15],[11],[32,10],[68,98],[97],[34,11],[69],[4,127],[32,10],[68,66],[97],[65,2],[33,5],[5],[32,11],[65,2],[33,5],[11],[4,64],[32,0],[32,1],[68,2],[65,1],[68,2],[65,1],[16,builtin('__Porffor_stn_int')],[34,5],[15],[11],[11],[68,0],[33,12],[68,0],[33,13],[32,6],[68,43],[97],[4,64],[68,1],[33,12],[11],[32,6],[68,45],[97],[4,64],[68,1],[33,13],[68,1],[33,12],[11],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([39],()=>[[32,4],[65,39],[70],[4,64],[32,12],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,73],[97],[4,64],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([39],()=>[[32,4],[65,39],[70],[4,64],[32,12],[68,1],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,1],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,1],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,110],[97],[34,11],[4,127],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([39],()=>[[32,4],[65,39],[70],[4,64],[32,12],[68,2],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,2],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,2],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,102],[97],[65,2],[33,5],[5],[32,11],[65,2],[33,5],[11],[34,11],[33,14],[32,5],[33,4],[2,127],...t([67,195],()=>[[32,4],[65,195,0],[70],[32,4],[65,195,1],[70],[114],[4,64],[32,14],[40,1,0],[12,1],[11]]),[32,14],[11],[4,127],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([39],()=>[[32,4],[65,39],[70],[4,64],[32,12],[68,3],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,3],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,3],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,105],[97],[65,2],[33,5],[5],[32,11],[32,5],[33,5],[11],[34,11],[33,14],[32,5],[33,4],[2,127],...t([67,195],()=>[[32,4],[65,195,0],[70],[32,4],[65,195,1],[70],[114],[4,64],[32,14],[40,1,0],[12,1],[11]]),[32,14],[11],[4,127],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([39],()=>[[32,4],[65,39],[70],[4,64],[32,12],[68,4],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,4],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,4],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,110],[97],[65,2],[33,5],[5],[32,11],[32,5],[33,5],[11],[34,11],[33,14],[32,5],[33,4],[2,127],...t([67,195],()=>[[32,4],[65,195,0],[70],[32,4],[65,195,1],[70],[114],[4,64],[32,14],[40,1,0],[12,1],[11]]),[32,14],[11],[4,127],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([39],()=>[[32,4],[65,39],[70],[4,64],[32,12],[68,5],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,5],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,5],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,105],[97],[65,2],[33,5],[5],[32,11],[32,5],[33,5],[11],[34,11],[33,14],[32,5],[33,4],[2,127],...t([67,195],()=>[[32,4],[65,195,0],[70],[32,4],[65,195,1],[70],[114],[4,64],[32,14],[40,1,0],[12,1],[11]]),[32,14],[11],[4,127],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([39],()=>[[32,4],[65,39],[70],[4,64],[32,12],[68,6],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,6],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,6],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,116],[97],[65,2],[33,5],[5],[32,11],[32,5],[33,5],[11],[34,11],[33,14],[32,5],[33,4],[2,127],...t([67,195],()=>[[32,4],[65,195,0],[70],[32,4],[65,195,1],[70],[114],[4,64],[32,14],[40,1,0],[12,1],[11]]),[32,14],[11],[4,127],[32,0],[252,3],[40,1,0],[33,7],[32,1],[33,4],[2,124],...t([39],()=>[[32,4],[65,39],[70],[4,64],[32,12],[68,7],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([67],()=>[[32,4],[65,195,0],[70],[4,64],[32,12],[68,7],[160],[252,2],[65,2],[108],[32,0],[252,3],[106],[47,0,4],[184],[65,1],[33,5],[12,1],[11]]),...t([195],()=>[[32,4],[65,195,1],[70],[4,64],[32,12],[68,7],[160],[252,2],[32,0],[252,3],[106],[45,0,4],[184],[65,1],[33,5],[12,1],[11]]),...internalThrow(_,'TypeError',`'charCodeAt' proto func tried to be called on a type without an impl`),[68,0],[11],[68,121],[97],[65,2],[33,5],[5],[32,11],[32,5],[33,5],[11],[4,64],[68,"Infinity"],[33,15],[32,13],[252,3],[4,124],[32,15],[154],[65,1],[33,5],[5],[32,15],[65,1],[33,5],[11],[32,5],[15],[11],[68,"NaN"],[65,1],[15],[11],[32,0],[32,1],[32,12],[65,1],[16,builtin('__Porffor_stn_float')],[33,5],[33,15],[32,13],[252,3],[4,64],[32,15],[154],[65,1],[15],[11],[32,15],[65,1],[15]],
|
2809
2810
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
2810
2811
|
locals:[124,127,127,127,124,127,127,127,124,127,124,124,127,124],localNames:["str","str#type","#proto_target","#proto_target#type","#typeswitch_tmp1","#last_type","first","__proto_length_cache","__proto_pointer_cache","__charCodeAt_tmp","second","logictmpi","i","negative","#logicinner_tmp_int","n"],
|
2811
2812
|
};
|
@@ -4897,12 +4898,12 @@ locals:[127],localNames:["_this","_this#type","#last_type"],
|
|
4897
4898
|
usedTypes:[33],
|
4898
4899
|
};
|
4899
4900
|
this.__ecma262_ToPrimitive_Number = {
|
4900
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,4],[32,1],[33,5],[32,1],[33,6],[2,124],...t([1],()=>[[32,6],[65,1],[70],[4,64],[32,4],[32,5],[16,builtin('__Number_prototype_valueOf')],[33,7],[12,1],[11]]),...t([2],()=>[[32,6],[65,2],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_valueOf')],[33,7],[12,1],[11]]),...t([5],()=>[[32,6],[65,5],[70],[4,64],[32,4],[32,5],[16,builtin('__Symbol_prototype_valueOf')],[33,7],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,4],[32,5],[16,builtin('__Object_prototype_valueOf')],[33,7],[12,1],[11]]),...t([18],()=>[[32,6],[65,18],[70],[4,64],[32,4],[32,5],[16,builtin('__Date_prototype_valueOf')],[33,7],[12,1],[11]]),...t([37],()=>[[32,6],[65,37],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_valueOf')],[33,7],[12,1],[11]]),...t([38],()=>[[32,6],[65,38],[70],[4,64],[32,4],[32,5],[16,builtin('__Number_prototype_valueOf')],[33,7],[12,1],[11]]),...t([67],()=>[[32,6],[65,195,0],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__String_prototype_valueOf')],[33,7],[183],[12,1],[11]]),...t([80],()=>[[32,6],[65,208,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([88],()=>[[32,6],[65,216,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint8Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([89],()=>[[32,6],[65,217,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int8Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([90],()=>[[32,6],[65,218,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint8ClampedArray_prototype_valueOf')],[33,7],[12,1],[11]]),...t([91],()=>[[32,6],[65,219,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint16Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([92],()=>[[32,6],[65,220,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int16Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([93],()=>[[32,6],[65,221,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint32Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([94],()=>[[32,6],[65,222,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int32Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([95],()=>[[32,6],[65,223,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Float32Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([96],()=>[[32,6],[65,224,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Float64Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([195],()=>[[32,6],[65,195,1],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__ByteString_prototype_valueOf')],[33,7],[183],[12,1],[11]]),[32,4],[32,5],[16,builtin('__Object_prototype_valueOf')],[33,7],[11],[33,2],[32,7],[33,3],[32,2],[33,8],[32,3],[33,6],[2,127],...t([0,128],()=>[[32,6],[65,0],[70],[32,6],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,8],[68,0],[97],[12,1],[11]]),[65,0],[11],[69],[184],[34,9],[252,3],[4,124],[32,2],[252,2],[32,3],[16,builtin('__Porffor_object_isObjectOrNull')],[33,7],[183],[33,8],[32,7],[33,6],[2,124],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,8],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,8],[68,0],[97],[184],[11],[65,2],[33,7],[5],[32,9],[65,2],[33,7],[11],[33,8],[32,7],[33,6],[2,127],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,8],[252,3],[40,1,0],[12,1],[11]]),[32,8],[252,3],[11],[4,64],[32,2],[32,3],[15],[11],[32,0],[33,4],[32,1],[33,5],[32,1],[33,6],[2,124],...t([1],()=>[[32,6],[65,1],[70],[4,64],[32,4],[32,5],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[12,1],[11]]),...t([2],()=>[[32,6],[65,2],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_toString')],[33,7],[12,1],[11]]),...t([5],()=>[[32,6],[65,5],[70],[4,64],[32,4],[32,5],[16,builtin('__Symbol_prototype_toString')],[33,7],[12,1],[11]]),...t([6],()=>[[32,6],[65,6],[70],[4,64],[32,4],[32,5],[16,builtin('__Function_prototype_toString')],[33,7],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,4],[32,5],[16,builtin('__Object_prototype_toString')],[33,7],[12,1],[11]]),...t([18],()=>[[32,6],[65,18],[70],[4,64],[32,4],[32,5],[16,builtin('__Date_prototype_toString')],[33,7],[12,1],[11]]),...t([19],()=>[[32,6],[65,19],[70],[4,64],[32,4],[32,5],[16,builtin('__Set_prototype_toString')],[33,7],[12,1],[11]]),...t([20],()=>[[32,6],[65,20],[70],[4,64],[32,4],[32,5],[16,builtin('__Map_prototype_toString')],[33,7],[12,1],[11]]),...t([33],()=>[[32,6],[65,33],[70],[4,64],[32,4],[32,5],[16,builtin('__WeakRef_prototype_toString')],[33,7],[12,1],[11]]),...t([34],()=>[[32,6],[65,34],[70],[4,64],[32,4],[32,5],[16,builtin('__WeakSet_prototype_toString')],[33,7],[12,1],[11]]),...t([35],()=>[[32,6],[65,35],[70],[4,64],[32,4],[32,5],[16,builtin('__WeakMap_prototype_toString')],[33,7],[12,1],[11]]),...t([36],()=>[[32,6],[65,36],[70],[4,64],[32,4],[32,5],[16,builtin('__Promise_prototype_toString')],[33,7],[12,1],[11]]),...t([37],()=>[[32,6],[65,37],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_toString')],[33,7],[12,1],[11]]),...t([38],()=>[[32,6],[65,38],[70],[4,64],[32,4],[32,5],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[12,1],[11]]),...t([39],()=>[[32,6],[65,39],[70],[4,64],[32,4],[32,5],[16,builtin('
|
4901
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,4],[32,1],[33,5],[32,1],[33,6],[2,124],...t([1],()=>[[32,6],[65,1],[70],[4,64],[32,4],[32,5],[16,builtin('__Number_prototype_valueOf')],[33,7],[12,1],[11]]),...t([2],()=>[[32,6],[65,2],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_valueOf')],[33,7],[12,1],[11]]),...t([5],()=>[[32,6],[65,5],[70],[4,64],[32,4],[32,5],[16,builtin('__Symbol_prototype_valueOf')],[33,7],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,4],[32,5],[16,builtin('__Object_prototype_valueOf')],[33,7],[12,1],[11]]),...t([18],()=>[[32,6],[65,18],[70],[4,64],[32,4],[32,5],[16,builtin('__Date_prototype_valueOf')],[33,7],[12,1],[11]]),...t([37],()=>[[32,6],[65,37],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_valueOf')],[33,7],[12,1],[11]]),...t([38],()=>[[32,6],[65,38],[70],[4,64],[32,4],[32,5],[16,builtin('__Number_prototype_valueOf')],[33,7],[12,1],[11]]),...t([39],()=>[[32,6],[65,39],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__String_prototype_valueOf')],[33,7],[183],[12,1],[11]]),...t([67],()=>[[32,6],[65,195,0],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__String_prototype_valueOf')],[33,7],[183],[12,1],[11]]),...t([80],()=>[[32,6],[65,208,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([88],()=>[[32,6],[65,216,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint8Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([89],()=>[[32,6],[65,217,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int8Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([90],()=>[[32,6],[65,218,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint8ClampedArray_prototype_valueOf')],[33,7],[12,1],[11]]),...t([91],()=>[[32,6],[65,219,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint16Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([92],()=>[[32,6],[65,220,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int16Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([93],()=>[[32,6],[65,221,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint32Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([94],()=>[[32,6],[65,222,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int32Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([95],()=>[[32,6],[65,223,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Float32Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([96],()=>[[32,6],[65,224,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Float64Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([195],()=>[[32,6],[65,195,1],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__ByteString_prototype_valueOf')],[33,7],[183],[12,1],[11]]),[32,4],[32,5],[16,builtin('__Object_prototype_valueOf')],[33,7],[11],[33,2],[32,7],[33,3],[32,2],[33,8],[32,3],[33,6],[2,127],...t([0,128],()=>[[32,6],[65,0],[70],[32,6],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,8],[68,0],[97],[12,1],[11]]),[65,0],[11],[69],[184],[34,9],[252,3],[4,124],[32,2],[252,2],[32,3],[16,builtin('__Porffor_object_isObjectOrNull')],[33,7],[183],[33,8],[32,7],[33,6],[2,124],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,8],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,8],[68,0],[97],[184],[11],[65,2],[33,7],[5],[32,9],[65,2],[33,7],[11],[33,8],[32,7],[33,6],[2,127],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,8],[252,3],[40,1,0],[12,1],[11]]),[32,8],[252,3],[11],[4,64],[32,2],[32,3],[15],[11],[32,0],[33,4],[32,1],[33,5],[32,1],[33,6],[2,124],...t([1],()=>[[32,6],[65,1],[70],[4,64],[32,4],[32,5],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[12,1],[11]]),...t([2],()=>[[32,6],[65,2],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_toString')],[33,7],[12,1],[11]]),...t([5],()=>[[32,6],[65,5],[70],[4,64],[32,4],[32,5],[16,builtin('__Symbol_prototype_toString')],[33,7],[12,1],[11]]),...t([6],()=>[[32,6],[65,6],[70],[4,64],[32,4],[32,5],[16,builtin('__Function_prototype_toString')],[33,7],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,4],[32,5],[16,builtin('__Object_prototype_toString')],[33,7],[12,1],[11]]),...t([18],()=>[[32,6],[65,18],[70],[4,64],[32,4],[32,5],[16,builtin('__Date_prototype_toString')],[33,7],[12,1],[11]]),...t([19],()=>[[32,6],[65,19],[70],[4,64],[32,4],[32,5],[16,builtin('__Set_prototype_toString')],[33,7],[12,1],[11]]),...t([20],()=>[[32,6],[65,20],[70],[4,64],[32,4],[32,5],[16,builtin('__Map_prototype_toString')],[33,7],[12,1],[11]]),...t([33],()=>[[32,6],[65,33],[70],[4,64],[32,4],[32,5],[16,builtin('__WeakRef_prototype_toString')],[33,7],[12,1],[11]]),...t([34],()=>[[32,6],[65,34],[70],[4,64],[32,4],[32,5],[16,builtin('__WeakSet_prototype_toString')],[33,7],[12,1],[11]]),...t([35],()=>[[32,6],[65,35],[70],[4,64],[32,4],[32,5],[16,builtin('__WeakMap_prototype_toString')],[33,7],[12,1],[11]]),...t([36],()=>[[32,6],[65,36],[70],[4,64],[32,4],[32,5],[16,builtin('__Promise_prototype_toString')],[33,7],[12,1],[11]]),...t([37],()=>[[32,6],[65,37],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_toString')],[33,7],[12,1],[11]]),...t([38],()=>[[32,6],[65,38],[70],[4,64],[32,4],[32,5],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[12,1],[11]]),...t([39],()=>[[32,6],[65,39],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__String_prototype_toString')],[33,7],[183],[12,1],[11]]),...t([40],()=>[[32,6],[65,40],[70],[4,64],[32,4],[32,5],[16,builtin('__Error_prototype_toString')],[33,7],[12,1],[11]]),...t([41],()=>[[32,6],[65,41],[70],[4,64],[32,4],[32,5],[16,builtin('__AggregateError_prototype_toString')],[33,7],[12,1],[11]]),...t([42],()=>[[32,6],[65,42],[70],[4,64],[32,4],[32,5],[16,builtin('__TypeError_prototype_toString')],[33,7],[12,1],[11]]),...t([43],()=>[[32,6],[65,43],[70],[4,64],[32,4],[32,5],[16,builtin('__ReferenceError_prototype_toString')],[33,7],[12,1],[11]]),...t([44],()=>[[32,6],[65,44],[70],[4,64],[32,4],[32,5],[16,builtin('__SyntaxError_prototype_toString')],[33,7],[12,1],[11]]),...t([45],()=>[[32,6],[65,45],[70],[4,64],[32,4],[32,5],[16,builtin('__RangeError_prototype_toString')],[33,7],[12,1],[11]]),...t([46],()=>[[32,6],[65,46],[70],[4,64],[32,4],[32,5],[16,builtin('__EvalError_prototype_toString')],[33,7],[12,1],[11]]),...t([47],()=>[[32,6],[65,47],[70],[4,64],[32,4],[32,5],[16,builtin('__URIError_prototype_toString')],[33,7],[12,1],[11]]),...t([48],()=>[[32,6],[65,48],[70],[4,64],[32,4],[32,5],[16,builtin('__Test262Error_prototype_toString')],[33,7],[12,1],[11]]),...t([67],()=>[[32,6],[65,195,0],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__String_prototype_toString')],[33,7],[183],[12,1],[11]]),...t([80],()=>[[32,6],[65,208,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Array_prototype_toString')],[33,7],[12,1],[11]]),...t([88],()=>[[32,6],[65,216,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint8Array_prototype_toString')],[33,7],[12,1],[11]]),...t([89],()=>[[32,6],[65,217,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int8Array_prototype_toString')],[33,7],[12,1],[11]]),...t([90],()=>[[32,6],[65,218,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint8ClampedArray_prototype_toString')],[33,7],[12,1],[11]]),...t([91],()=>[[32,6],[65,219,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint16Array_prototype_toString')],[33,7],[12,1],[11]]),...t([92],()=>[[32,6],[65,220,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int16Array_prototype_toString')],[33,7],[12,1],[11]]),...t([93],()=>[[32,6],[65,221,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint32Array_prototype_toString')],[33,7],[12,1],[11]]),...t([94],()=>[[32,6],[65,222,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int32Array_prototype_toString')],[33,7],[12,1],[11]]),...t([95],()=>[[32,6],[65,223,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Float32Array_prototype_toString')],[33,7],[12,1],[11]]),...t([96],()=>[[32,6],[65,224,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Float64Array_prototype_toString')],[33,7],[12,1],[11]]),...t([195],()=>[[32,6],[65,195,1],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__ByteString_prototype_toString')],[33,7],[183],[12,1],[11]]),[32,4],[32,5],[16,builtin('__Object_prototype_toString')],[33,7],[11],[34,2],[32,7],[33,3],[26],[32,2],[33,8],[32,3],[33,6],[2,127],...t([0,128],()=>[[32,6],[65,0],[70],[32,6],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,8],[68,0],[97],[12,1],[11]]),[65,0],[11],[69],[184],[34,9],[252,3],[4,124],[32,2],[252,2],[32,3],[16,builtin('__Porffor_object_isObjectOrNull')],[33,7],[183],[33,8],[32,7],[33,6],[2,124],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,8],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,8],[68,0],[97],[184],[11],[65,2],[33,7],[5],[32,9],[65,2],[33,7],[11],[33,8],[32,7],[33,6],[2,127],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,8],[252,3],[40,1,0],[12,1],[11]]),[32,8],[252,3],[11],[4,64],[32,2],[32,3],[15],[11],...internalThrow(_,'TypeError',`Cannot convert an object to primitive`),[68,0],[65,128,1],[15]],
|
4901
4902
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
4902
4903
|
locals:[124,127,124,127,127,127,124,124],localNames:["input","input#type","value","value#type","#proto_target","#proto_target#type","#typeswitch_tmp1","#last_type","#logicinner_tmp","logictmp"],
|
4903
4904
|
};
|
4904
4905
|
this.__ecma262_ToPrimitive_String = {
|
4905
|
-
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,4],[32,1],[33,5],[32,1],[33,6],[2,124],...t([1],()=>[[32,6],[65,1],[70],[4,64],[32,4],[32,5],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[12,1],[11]]),...t([2],()=>[[32,6],[65,2],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_toString')],[33,7],[12,1],[11]]),...t([5],()=>[[32,6],[65,5],[70],[4,64],[32,4],[32,5],[16,builtin('__Symbol_prototype_toString')],[33,7],[12,1],[11]]),...t([6],()=>[[32,6],[65,6],[70],[4,64],[32,4],[32,5],[16,builtin('__Function_prototype_toString')],[33,7],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,4],[32,5],[16,builtin('__Object_prototype_toString')],[33,7],[12,1],[11]]),...t([18],()=>[[32,6],[65,18],[70],[4,64],[32,4],[32,5],[16,builtin('__Date_prototype_toString')],[33,7],[12,1],[11]]),...t([19],()=>[[32,6],[65,19],[70],[4,64],[32,4],[32,5],[16,builtin('__Set_prototype_toString')],[33,7],[12,1],[11]]),...t([20],()=>[[32,6],[65,20],[70],[4,64],[32,4],[32,5],[16,builtin('__Map_prototype_toString')],[33,7],[12,1],[11]]),...t([33],()=>[[32,6],[65,33],[70],[4,64],[32,4],[32,5],[16,builtin('__WeakRef_prototype_toString')],[33,7],[12,1],[11]]),...t([34],()=>[[32,6],[65,34],[70],[4,64],[32,4],[32,5],[16,builtin('__WeakSet_prototype_toString')],[33,7],[12,1],[11]]),...t([35],()=>[[32,6],[65,35],[70],[4,64],[32,4],[32,5],[16,builtin('__WeakMap_prototype_toString')],[33,7],[12,1],[11]]),...t([36],()=>[[32,6],[65,36],[70],[4,64],[32,4],[32,5],[16,builtin('__Promise_prototype_toString')],[33,7],[12,1],[11]]),...t([37],()=>[[32,6],[65,37],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_toString')],[33,7],[12,1],[11]]),...t([38],()=>[[32,6],[65,38],[70],[4,64],[32,4],[32,5],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[12,1],[11]]),...t([39],()=>[[32,6],[65,39],[70],[4,64],[32,4],[32,5],[16,builtin('
|
4906
|
+
wasm:(_,{t,builtin,internalThrow})=>[[32,0],[33,4],[32,1],[33,5],[32,1],[33,6],[2,124],...t([1],()=>[[32,6],[65,1],[70],[4,64],[32,4],[32,5],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[12,1],[11]]),...t([2],()=>[[32,6],[65,2],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_toString')],[33,7],[12,1],[11]]),...t([5],()=>[[32,6],[65,5],[70],[4,64],[32,4],[32,5],[16,builtin('__Symbol_prototype_toString')],[33,7],[12,1],[11]]),...t([6],()=>[[32,6],[65,6],[70],[4,64],[32,4],[32,5],[16,builtin('__Function_prototype_toString')],[33,7],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,4],[32,5],[16,builtin('__Object_prototype_toString')],[33,7],[12,1],[11]]),...t([18],()=>[[32,6],[65,18],[70],[4,64],[32,4],[32,5],[16,builtin('__Date_prototype_toString')],[33,7],[12,1],[11]]),...t([19],()=>[[32,6],[65,19],[70],[4,64],[32,4],[32,5],[16,builtin('__Set_prototype_toString')],[33,7],[12,1],[11]]),...t([20],()=>[[32,6],[65,20],[70],[4,64],[32,4],[32,5],[16,builtin('__Map_prototype_toString')],[33,7],[12,1],[11]]),...t([33],()=>[[32,6],[65,33],[70],[4,64],[32,4],[32,5],[16,builtin('__WeakRef_prototype_toString')],[33,7],[12,1],[11]]),...t([34],()=>[[32,6],[65,34],[70],[4,64],[32,4],[32,5],[16,builtin('__WeakSet_prototype_toString')],[33,7],[12,1],[11]]),...t([35],()=>[[32,6],[65,35],[70],[4,64],[32,4],[32,5],[16,builtin('__WeakMap_prototype_toString')],[33,7],[12,1],[11]]),...t([36],()=>[[32,6],[65,36],[70],[4,64],[32,4],[32,5],[16,builtin('__Promise_prototype_toString')],[33,7],[12,1],[11]]),...t([37],()=>[[32,6],[65,37],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_toString')],[33,7],[12,1],[11]]),...t([38],()=>[[32,6],[65,38],[70],[4,64],[32,4],[32,5],[68,0],[65,128,1],[16,builtin('__Number_prototype_toString')],[33,7],[12,1],[11]]),...t([39],()=>[[32,6],[65,39],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__String_prototype_toString')],[33,7],[183],[12,1],[11]]),...t([40],()=>[[32,6],[65,40],[70],[4,64],[32,4],[32,5],[16,builtin('__Error_prototype_toString')],[33,7],[12,1],[11]]),...t([41],()=>[[32,6],[65,41],[70],[4,64],[32,4],[32,5],[16,builtin('__AggregateError_prototype_toString')],[33,7],[12,1],[11]]),...t([42],()=>[[32,6],[65,42],[70],[4,64],[32,4],[32,5],[16,builtin('__TypeError_prototype_toString')],[33,7],[12,1],[11]]),...t([43],()=>[[32,6],[65,43],[70],[4,64],[32,4],[32,5],[16,builtin('__ReferenceError_prototype_toString')],[33,7],[12,1],[11]]),...t([44],()=>[[32,6],[65,44],[70],[4,64],[32,4],[32,5],[16,builtin('__SyntaxError_prototype_toString')],[33,7],[12,1],[11]]),...t([45],()=>[[32,6],[65,45],[70],[4,64],[32,4],[32,5],[16,builtin('__RangeError_prototype_toString')],[33,7],[12,1],[11]]),...t([46],()=>[[32,6],[65,46],[70],[4,64],[32,4],[32,5],[16,builtin('__EvalError_prototype_toString')],[33,7],[12,1],[11]]),...t([47],()=>[[32,6],[65,47],[70],[4,64],[32,4],[32,5],[16,builtin('__URIError_prototype_toString')],[33,7],[12,1],[11]]),...t([48],()=>[[32,6],[65,48],[70],[4,64],[32,4],[32,5],[16,builtin('__Test262Error_prototype_toString')],[33,7],[12,1],[11]]),...t([67],()=>[[32,6],[65,195,0],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__String_prototype_toString')],[33,7],[183],[12,1],[11]]),...t([80],()=>[[32,6],[65,208,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Array_prototype_toString')],[33,7],[12,1],[11]]),...t([88],()=>[[32,6],[65,216,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint8Array_prototype_toString')],[33,7],[12,1],[11]]),...t([89],()=>[[32,6],[65,217,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int8Array_prototype_toString')],[33,7],[12,1],[11]]),...t([90],()=>[[32,6],[65,218,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint8ClampedArray_prototype_toString')],[33,7],[12,1],[11]]),...t([91],()=>[[32,6],[65,219,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint16Array_prototype_toString')],[33,7],[12,1],[11]]),...t([92],()=>[[32,6],[65,220,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int16Array_prototype_toString')],[33,7],[12,1],[11]]),...t([93],()=>[[32,6],[65,221,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint32Array_prototype_toString')],[33,7],[12,1],[11]]),...t([94],()=>[[32,6],[65,222,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int32Array_prototype_toString')],[33,7],[12,1],[11]]),...t([95],()=>[[32,6],[65,223,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Float32Array_prototype_toString')],[33,7],[12,1],[11]]),...t([96],()=>[[32,6],[65,224,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Float64Array_prototype_toString')],[33,7],[12,1],[11]]),...t([195],()=>[[32,6],[65,195,1],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__ByteString_prototype_toString')],[33,7],[183],[12,1],[11]]),[32,4],[32,5],[16,builtin('__Object_prototype_toString')],[33,7],[11],[33,2],[32,7],[33,3],[32,2],[33,8],[32,3],[33,6],[2,127],...t([0,128],()=>[[32,6],[65,0],[70],[32,6],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,8],[68,0],[97],[12,1],[11]]),[65,0],[11],[69],[184],[34,9],[252,3],[4,124],[32,2],[252,2],[32,3],[16,builtin('__Porffor_object_isObjectOrNull')],[33,7],[183],[33,8],[32,7],[33,6],[2,124],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,8],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,8],[68,0],[97],[184],[11],[65,2],[33,7],[5],[32,9],[65,2],[33,7],[11],[33,8],[32,7],[33,6],[2,127],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,8],[252,3],[40,1,0],[12,1],[11]]),[32,8],[252,3],[11],[4,64],[32,2],[32,3],[15],[11],[32,0],[33,4],[32,1],[33,5],[32,1],[33,6],[2,124],...t([1],()=>[[32,6],[65,1],[70],[4,64],[32,4],[32,5],[16,builtin('__Number_prototype_valueOf')],[33,7],[12,1],[11]]),...t([2],()=>[[32,6],[65,2],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_valueOf')],[33,7],[12,1],[11]]),...t([5],()=>[[32,6],[65,5],[70],[4,64],[32,4],[32,5],[16,builtin('__Symbol_prototype_valueOf')],[33,7],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,4],[32,5],[16,builtin('__Object_prototype_valueOf')],[33,7],[12,1],[11]]),...t([18],()=>[[32,6],[65,18],[70],[4,64],[32,4],[32,5],[16,builtin('__Date_prototype_valueOf')],[33,7],[12,1],[11]]),...t([37],()=>[[32,6],[65,37],[70],[4,64],[32,4],[32,5],[16,builtin('__Boolean_prototype_valueOf')],[33,7],[12,1],[11]]),...t([38],()=>[[32,6],[65,38],[70],[4,64],[32,4],[32,5],[16,builtin('__Number_prototype_valueOf')],[33,7],[12,1],[11]]),...t([39],()=>[[32,6],[65,39],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__String_prototype_valueOf')],[33,7],[183],[12,1],[11]]),...t([67],()=>[[32,6],[65,195,0],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__String_prototype_valueOf')],[33,7],[183],[12,1],[11]]),...t([80],()=>[[32,6],[65,208,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([88],()=>[[32,6],[65,216,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint8Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([89],()=>[[32,6],[65,217,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int8Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([90],()=>[[32,6],[65,218,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint8ClampedArray_prototype_valueOf')],[33,7],[12,1],[11]]),...t([91],()=>[[32,6],[65,219,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint16Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([92],()=>[[32,6],[65,220,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int16Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([93],()=>[[32,6],[65,221,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Uint32Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([94],()=>[[32,6],[65,222,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Int32Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([95],()=>[[32,6],[65,223,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Float32Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([96],()=>[[32,6],[65,224,0],[70],[4,64],[32,4],[32,5],[16,builtin('__Float64Array_prototype_valueOf')],[33,7],[12,1],[11]]),...t([195],()=>[[32,6],[65,195,1],[70],[4,64],[32,4],[252,2],[32,5],[16,builtin('__ByteString_prototype_valueOf')],[33,7],[183],[12,1],[11]]),[32,4],[32,5],[16,builtin('__Object_prototype_valueOf')],[33,7],[11],[34,2],[32,7],[33,3],[26],[32,2],[33,8],[32,3],[33,6],[2,127],...t([0,128],()=>[[32,6],[65,0],[70],[32,6],[65,128,1],[70],[114],[4,64],[65,1],[12,1],[11]]),...t([7],()=>[[32,6],[65,7],[70],[4,64],[32,8],[68,0],[97],[12,1],[11]]),[65,0],[11],[69],[184],[34,9],[252,3],[4,124],[32,2],[252,2],[32,3],[16,builtin('__Porffor_object_isObjectOrNull')],[33,7],[183],[33,8],[32,7],[33,6],[2,124],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,8],[252,3],[40,1,0],[69],[184],[12,1],[11]]),[32,8],[68,0],[97],[184],[11],[65,2],[33,7],[5],[32,9],[65,2],[33,7],[11],[33,8],[32,7],[33,6],[2,127],...t([67,195],()=>[[32,6],[65,195,0],[70],[32,6],[65,195,1],[70],[114],[4,64],[32,8],[252,3],[40,1,0],[12,1],[11]]),[32,8],[252,3],[11],[4,64],[32,2],[32,3],[15],[11],...internalThrow(_,'TypeError',`Cannot convert an object to primitive`),[68,0],[65,128,1],[15]],
|
4906
4907
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
4907
4908
|
locals:[124,127,124,127,127,127,124,124],localNames:["input","input#type","value","value#type","#proto_target","#proto_target#type","#typeswitch_tmp1","#last_type","#logicinner_tmp","logictmp"],
|
4908
4909
|
};
|
@@ -4928,10 +4929,10 @@ params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
|
4928
4929
|
locals:[124,127],localNames:["value","value#type","integer","#last_type"],
|
4929
4930
|
};
|
4930
4931
|
this.__ecma262_ToString = {
|
4931
|
-
wasm:(_,{allocPage,builtin,internalThrow})=>[[32,1],[184],[34,2],[68,67],[97],[32,2],[68,195],[97],[114],[4,64],[32,0],[32,1],[15],[11],[32,2],[68,5],[97],[4,64],...internalThrow(_,'TypeError',`Cannot convert a Symbol value to a string`),[11],[16,builtin('__Porffor_allocate')],[183],[33,3],[32,2],[68,128],[97],[32,2],[68,0],[97],[114],[4,64],...number(allocPage(_,'bytestring: __ecma262_ToString/out','i8'),124),[34,3],[65,195,1],[15],[11],[32,2],[68,7],[97],[32,0],[68,0],[97],[113],[4,64],[32,3],[252,3],[34,4],[65,4],[54,1,0],[32,4],[65,238,0],[58,0,4],[32,4],[65,245,0],[58,0,5],[32,4],[65,236,0],[58,0,6],[32,4],[65,236,0],[58,0,7],[32,4],[184],[34,3],[65,195,1],[15],[11],[32,2],[68,2],[97],[4,64],[32,0],[68,1],[97],[4,64],[32,3],[252,3],[34,4],[65,4],[54,1,0],[32,4],[65,244,0],[58,0,4],[32,4],[65,242,0],[58,0,5],[32,4],[65,245,0],[58,0,6],[32,4],[65,229,0],[58,0,7],[32,4],[184],[34,3],[65,195,1],[15],[11],[32,3],[252,3],[34,4],[65,5],[54,1,0],[32,4],[65,230,0],[58,0,4],[32,4],[65,225,0],[58,0,5],[32,4],[65,236,0],[58,0,6],[32,4],[65,243,0],[58,0,7],[32,4],[65,229,0],[58,0,8],[32,4],[184],[34,3],[65,195,1],[15],[11],[32,2],[68,1],[97],[4,64],[32,0],[32,1],[68,10],[65,1],[16,builtin('__Number_prototype_toString')],[34,5],[15],[11],[32,0],[32,1],[16,builtin('__ecma262_ToPrimitive_String')],[34,5],[33,
|
4932
|
+
wasm:(_,{allocPage,builtin,internalThrow})=>[[32,1],[184],[34,2],[68,67],[97],[32,2],[68,195],[97],[114],[4,64],[32,0],[32,1],[15],[11],[32,2],[68,5],[97],[4,64],...internalThrow(_,'TypeError',`Cannot convert a Symbol value to a string`),[11],[16,builtin('__Porffor_allocate')],[183],[33,3],[32,2],[68,128],[97],[32,2],[68,0],[97],[114],[4,64],...number(allocPage(_,'bytestring: __ecma262_ToString/out','i8'),124),[34,3],[65,195,1],[15],[11],[32,2],[68,7],[97],[32,0],[68,0],[97],[113],[4,64],[32,3],[252,3],[34,4],[65,4],[54,1,0],[32,4],[65,238,0],[58,0,4],[32,4],[65,245,0],[58,0,5],[32,4],[65,236,0],[58,0,6],[32,4],[65,236,0],[58,0,7],[32,4],[184],[34,3],[65,195,1],[15],[11],[32,2],[68,2],[97],[4,64],[32,0],[68,1],[97],[4,64],[32,3],[252,3],[34,4],[65,4],[54,1,0],[32,4],[65,244,0],[58,0,4],[32,4],[65,242,0],[58,0,5],[32,4],[65,245,0],[58,0,6],[32,4],[65,229,0],[58,0,7],[32,4],[184],[34,3],[65,195,1],[15],[11],[32,3],[252,3],[34,4],[65,5],[54,1,0],[32,4],[65,230,0],[58,0,4],[32,4],[65,225,0],[58,0,5],[32,4],[65,236,0],[58,0,6],[32,4],[65,243,0],[58,0,7],[32,4],[65,229,0],[58,0,8],[32,4],[184],[34,3],[65,195,1],[15],[11],[32,2],[68,1],[97],[4,64],[32,0],[32,1],[68,10],[65,1],[16,builtin('__Number_prototype_toString')],[34,5],[15],[11],[32,2],[68,39],[97],[4,64],[32,0],[34,6],[65,195,0],[15],[11],[32,0],[32,1],[16,builtin('__ecma262_ToPrimitive_String')],[34,5],[33,8],[34,7],[32,8],[16,builtin('__ecma262_ToString')],[34,5],[15]],
|
4932
4933
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
4933
|
-
locals:[124,124,127,127,124,127],localNames:["argument","argument#type","type","out","#makearray_pointer_tmp","#last_type","primValue","primValue#type"],
|
4934
|
-
usedTypes:[195],
|
4934
|
+
locals:[124,124,127,127,124,124,127],localNames:["argument","argument#type","type","out","#makearray_pointer_tmp","#last_type","remap","primValue","primValue#type"],
|
4935
|
+
usedTypes:[195,67],
|
4935
4936
|
data:{"bytestring: __ecma262_ToString/out":[9,0,0,0,117,110,100,101,102,105,110,101,100]},
|
4936
4937
|
};
|
4937
4938
|
this.__ecma262_ToPropertyKey = {
|
package/compiler/codegen.js
CHANGED
@@ -601,18 +601,21 @@ const truthy = (scope, wasm, type, intIn = false, intOut = false, forceTruthyMod
|
|
601
601
|
[ Opcodes.i32_eqz ], */
|
602
602
|
...(intOut ? [] : [ Opcodes.i32_from_u ])
|
603
603
|
] ],
|
604
|
-
|
605
|
-
// [ 'default', [
|
606
|
-
// // other types are always truthy
|
607
|
-
// ...(!useTmp ? [ [ Opcodes.drop ] ] : []),
|
608
|
-
// ...number(1, intOut ? Valtype.i32 : valtypeBinary)
|
609
|
-
// ] ]
|
604
|
+
|
610
605
|
...(truthyMode === 'full' ? [ [ [ TYPES.booleanobject, TYPES.numberobject ], [
|
611
606
|
// always truthy :))
|
612
607
|
...(!useTmp ? [ [ Opcodes.drop ] ] : []),
|
613
608
|
...number(1, intOut ? Valtype.i32 : valtypeBinary)
|
614
609
|
] ] ] : []),
|
610
|
+
|
615
611
|
[ 'default', def ]
|
612
|
+
|
613
|
+
// [ [ TYPES.boolean, TYPES.number, TYPES.object, TYPES.undefined, TYPES.empty ], def ],
|
614
|
+
// [ 'default', [
|
615
|
+
// // other types are always truthy
|
616
|
+
// ...(!useTmp ? [ [ Opcodes.drop ] ] : []),
|
617
|
+
// ...number(1, intOut ? Valtype.i32 : valtypeBinary)
|
618
|
+
// ] ]
|
616
619
|
], intOut ? Valtype.i32 : valtypeBinary)
|
617
620
|
];
|
618
621
|
};
|
@@ -666,18 +669,21 @@ const falsy = (scope, wasm, type, intIn = false, intOut = false, forceTruthyMode
|
|
666
669
|
[ Opcodes.i32_eqz ],
|
667
670
|
...(intOut ? [] : [ Opcodes.i32_from_u ])
|
668
671
|
] ],
|
669
|
-
|
670
|
-
// [ 'default', [
|
671
|
-
// // other types are always truthy
|
672
|
-
// ...(!useTmp ? [ [ Opcodes.drop ] ] : []),
|
673
|
-
// ...number(0, intOut ? Valtype.i32 : valtypeBinary)
|
674
|
-
// ] ]
|
672
|
+
|
675
673
|
...(truthyMode === 'full' ? [ [ [ TYPES.booleanobject, TYPES.numberobject ], [
|
676
674
|
// always truthy :))
|
677
675
|
...(!useTmp ? [ [ Opcodes.drop ] ] : []),
|
678
676
|
...number(0, intOut ? Valtype.i32 : valtypeBinary)
|
679
677
|
] ] ] : []),
|
678
|
+
|
680
679
|
[ 'default', def ]
|
680
|
+
|
681
|
+
// [ [ TYPES.boolean, TYPES.number, TYPES.object, TYPES.undefined, TYPES.empty ], def ],
|
682
|
+
// [ 'default', [
|
683
|
+
// // other types are always truthy
|
684
|
+
// ...(!useTmp ? [ [ Opcodes.drop ] ] : []),
|
685
|
+
// ...number(0, intOut ? Valtype.i32 : valtypeBinary)
|
686
|
+
// ] ]
|
681
687
|
], intOut ? Valtype.i32 : valtypeBinary)
|
682
688
|
];
|
683
689
|
};
|
@@ -749,7 +755,8 @@ const performOp = (scope, op, left, right, leftType, rightType, _global = false,
|
|
749
755
|
// todo: niche null hell with 0
|
750
756
|
|
751
757
|
if ((knownLeft === TYPES.string || knownRight === TYPES.string) ||
|
752
|
-
(knownLeft === TYPES.bytestring || knownRight === TYPES.bytestring)
|
758
|
+
(knownLeft === TYPES.bytestring || knownRight === TYPES.bytestring) ||
|
759
|
+
(knownLeft === TYPES.stringobject || knownRight === TYPES.stringobject)) {
|
753
760
|
if (op === '+') {
|
754
761
|
// string concat (a + b)
|
755
762
|
return concatStrings(scope, left, right, leftType, rightType);
|
@@ -887,6 +894,7 @@ const generateBinaryExp = (scope, decl, _global, _name) => {
|
|
887
894
|
// switch primitive types to primitive object types
|
888
895
|
if (checkType === TYPES.number) checkType = TYPES.numberobject;
|
889
896
|
if (checkType === TYPES.boolean) checkType = TYPES.booleanobject;
|
897
|
+
if (checkType === TYPES.string) checkType = TYPES.stringobject;
|
890
898
|
|
891
899
|
// currently unsupported types
|
892
900
|
if ([TYPES.string].includes(checkType)) {
|
@@ -1269,6 +1277,14 @@ const getNodeType = (scope, node) => {
|
|
1269
1277
|
|
1270
1278
|
if (node.type === 'CallExpression' || node.type === 'NewExpression') {
|
1271
1279
|
const name = node.callee.name;
|
1280
|
+
|
1281
|
+
// hack: special primitive object types
|
1282
|
+
if (node.type === 'NewExpression') {
|
1283
|
+
if (name === 'Number') return TYPES.numberobject;
|
1284
|
+
if (name === 'Boolean') return TYPES.booleanobject;
|
1285
|
+
if (name === 'String') return TYPES.stringobject;
|
1286
|
+
}
|
1287
|
+
|
1272
1288
|
if (name == null) {
|
1273
1289
|
// iife
|
1274
1290
|
if (scope.locals['#last_type']) return getLastType(scope);
|
@@ -1375,11 +1391,14 @@ const getNodeType = (scope, node) => {
|
|
1375
1391
|
|
1376
1392
|
if ((knownLeft != null || knownRight != null) && !(
|
1377
1393
|
(knownLeft === TYPES.string || knownRight === TYPES.string) ||
|
1378
|
-
(knownLeft === TYPES.bytestring || knownRight === TYPES.bytestring)
|
1394
|
+
(knownLeft === TYPES.bytestring || knownRight === TYPES.bytestring) ||
|
1395
|
+
(knownLeft === TYPES.stringobject || knownRight === TYPES.stringobject)
|
1379
1396
|
)) return TYPES.number;
|
1380
1397
|
|
1381
|
-
if (
|
1382
|
-
|
1398
|
+
if (
|
1399
|
+
(knownLeft === TYPES.string || knownRight === TYPES.string) ||
|
1400
|
+
(knownLeft === TYPES.stringobject || knownRight === TYPES.stringobject)
|
1401
|
+
) return TYPES.string;
|
1383
1402
|
|
1384
1403
|
// guess bytestring, could really be bytestring or string
|
1385
1404
|
if (knownLeft === TYPES.bytestring || knownRight === TYPES.bytestring)
|
@@ -1727,6 +1746,7 @@ const aliasPrimObjsBC = bc => {
|
|
1727
1746
|
|
1728
1747
|
add(TYPES.boolean, TYPES.booleanobject);
|
1729
1748
|
add(TYPES.number, TYPES.numberobject);
|
1749
|
+
add(TYPES.string, TYPES.stringobject);
|
1730
1750
|
};
|
1731
1751
|
|
1732
1752
|
const createThisArg = (scope, decl) => {
|
@@ -2100,6 +2120,9 @@ const generateCall = (scope, decl, _global, _name, unusedValue = false) => {
|
|
2100
2120
|
};
|
2101
2121
|
}
|
2102
2122
|
|
2123
|
+
// alias primitive prototype with primitive object types
|
2124
|
+
aliasPrimObjsBC(protoBC);
|
2125
|
+
|
2103
2126
|
return [
|
2104
2127
|
...(usePointerCache ? [
|
2105
2128
|
...rawPointer,
|
@@ -6195,6 +6218,7 @@ const generateFunc = (scope, decl) => {
|
|
6195
6218
|
].includes(typeAnno.type)) {
|
6196
6219
|
let types = [ typeAnno.type ];
|
6197
6220
|
if (typeAnno.type === TYPES.number) types.push(TYPES.numberobject);
|
6221
|
+
if (typeAnno.type === TYPES.string) types.push(TYPES.stringobject);
|
6198
6222
|
|
6199
6223
|
prelude.push(
|
6200
6224
|
...typeIsNotOneOf([ [ Opcodes.local_get, func.locals[name].idx + 1 ] ], types),
|
package/compiler/types.js
CHANGED
package/compiler/wrap.js
CHANGED
@@ -159,6 +159,8 @@ ${flags & 0b0001 ? ` get func idx: ${get}
|
|
159
159
|
return Array.from(read(Uint8Array, memory, value + 4, length)).map(x => String.fromCharCode(x)).join('');
|
160
160
|
}
|
161
161
|
|
162
|
+
case TYPES.stringobject: return new String(porfToJSValue({ memory, funcs, pages }, value, TYPES.string));
|
163
|
+
|
162
164
|
case TYPES.array: {
|
163
165
|
let length = read(Uint32Array, memory, value, 1)[0];
|
164
166
|
if (override) length = override;
|
package/package.json
CHANGED