porffor 0.37.27 → 0.37.29
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_object.ts +8 -0
- package/compiler/builtins/error.js +30 -2
- package/compiler/builtins/object.ts +12 -7
- package/compiler/builtins_precompiled.js +132 -38
- package/compiler/codegen.js +19 -70
- package/compiler/precompile.js +1 -1
- package/compiler/types.js +9 -0
- package/compiler/wrap.js +16 -32
- package/package.json +1 -1
- package/runner/index.js +1 -1
- package/runner/repl.js +17 -22
@@ -4,6 +4,14 @@ export const __Porffor_object_underlying = (obj: any): any => {
|
|
4
4
|
const t: i32 = Porffor.rawType(obj);
|
5
5
|
if (t == Porffor.TYPES.object) return obj;
|
6
6
|
|
7
|
+
if (Porffor.fastAnd(
|
8
|
+
t >= Porffor.TYPES.error,
|
9
|
+
t <= Porffor.TYPES.urierror
|
10
|
+
)) {
|
11
|
+
const remap: object = obj;
|
12
|
+
return remap;
|
13
|
+
}
|
14
|
+
|
7
15
|
if (Porffor.fastAnd(t > 0x05, t != Porffor.TYPES.undefined)) {
|
8
16
|
let idx: i32 = underlyingKeys.indexOf(obj);
|
9
17
|
if (idx == -1) {
|
@@ -1,9 +1,34 @@
|
|
1
1
|
export default () => {
|
2
2
|
let out = '';
|
3
3
|
|
4
|
-
const error = name => out += `export const ${name} = function (message:
|
4
|
+
const error = name => out += `export const ${name} = function (message: any) {
|
5
5
|
new.target; // trick compiler into allowing as constructor
|
6
|
-
|
6
|
+
|
7
|
+
const _empty: bytestring = '';
|
8
|
+
if (message === undefined) message = _empty;
|
9
|
+
else message = ecma262.ToString(message);
|
10
|
+
|
11
|
+
const obj: object = Porffor.allocate();
|
12
|
+
|
13
|
+
const _name: bytestring = '${name.split('_').pop()}';
|
14
|
+
|
15
|
+
obj.name = _name;
|
16
|
+
obj.message = message;
|
17
|
+
|
18
|
+
const out: ${name} = obj;
|
19
|
+
return out;
|
20
|
+
};
|
21
|
+
|
22
|
+
export const __${name}_prototype_toString = (_this: ${name}) => {
|
23
|
+
const obj: object = _this;
|
24
|
+
|
25
|
+
const message: any = obj.message;
|
26
|
+
if (message.length === 0) {
|
27
|
+
return obj.name;
|
28
|
+
}
|
29
|
+
|
30
|
+
const bridge: bytestring = ': ';
|
31
|
+
return obj.name + bridge + message;
|
7
32
|
};`;
|
8
33
|
|
9
34
|
error('Error');
|
@@ -15,5 +40,8 @@ export default () => {
|
|
15
40
|
error('EvalError');
|
16
41
|
error('URIError');
|
17
42
|
|
43
|
+
error('__Porffor_TodoError');
|
44
|
+
error('Test262Error');
|
45
|
+
|
18
46
|
return out;
|
19
47
|
};
|
@@ -192,14 +192,13 @@ export const __Porffor_object_in = (obj: any, prop: any) => {
|
|
192
192
|
return false;
|
193
193
|
};
|
194
194
|
|
195
|
-
export const __Porffor_object_instanceof = (obj: any, constr: any) => {
|
195
|
+
export const __Porffor_object_instanceof = (obj: any, constr: any, checkProto: any) => {
|
196
196
|
if (Porffor.rawType(constr) != Porffor.TYPES.function) {
|
197
197
|
throw new TypeError('instanceof right-hand side is not a function');
|
198
198
|
}
|
199
199
|
|
200
|
-
const checkProto: any = constr.prototype;
|
201
200
|
if (!Porffor.object.isObject(checkProto)) {
|
202
|
-
|
201
|
+
return false;
|
203
202
|
}
|
204
203
|
|
205
204
|
let lastProto = obj;
|
@@ -677,9 +676,12 @@ export const __Object_prototype_isPrototypeOf = (_this: any, obj: any) => {
|
|
677
676
|
|
678
677
|
export const __Object_prototype_toString = (_this: any) => {
|
679
678
|
if (Porffor.rawType(_this) == Porffor.TYPES.object) {
|
679
|
+
// todo: breaks with Foo.prototype
|
680
680
|
const obj: object = _this;
|
681
|
-
|
682
|
-
|
681
|
+
if (obj != null) {
|
682
|
+
const ovr: any = obj.toString;
|
683
|
+
if (ovr != null && ovr !== __Object_prototype_toString) return ovr.call(_this);
|
684
|
+
}
|
683
685
|
}
|
684
686
|
|
685
687
|
let out: bytestring = Porffor.allocate();
|
@@ -715,9 +717,12 @@ export const __Object_prototype_toLocaleString = (_this: any) => __Object_protot
|
|
715
717
|
export const __Object_prototype_valueOf = (_this: any) => {
|
716
718
|
// todo: ToObject
|
717
719
|
if (Porffor.rawType(_this) == Porffor.TYPES.object) {
|
720
|
+
// todo: breaks with Foo.prototype
|
718
721
|
const obj: object = _this;
|
719
|
-
|
720
|
-
|
722
|
+
if (obj != null) {
|
723
|
+
const ovr: any = obj.valueOf;
|
724
|
+
if (ovr != null && ovr !== __Object_prototype_valueOf) return ovr.call(_this);
|
725
|
+
}
|
721
726
|
}
|
722
727
|
|
723
728
|
return _this;
|
@@ -3,10 +3,10 @@ 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,5],[100],[32,2],[68,128],[98],[113],[4,64],...glbl(35,'underlyingKeys',124),[33,
|
6
|
+
wasm:(_,{allocPage,glbl,builtin})=>[[32,1],[184],[34,2],[68,7],[97],[4,64],[32,0],[32,1],[15],[11],[32,2],[68,39],[102],[32,2],[68,46],[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
|
-
locals:[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","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
|
-
usedTypes:[80,
|
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
|
+
usedTypes:[7,80,195,67],
|
10
10
|
globalInits:{underlyingKeys:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingKeys','f64'),124),...glbl(36,'underlyingKeys',124),...glbl(35,'underlyingKeys',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]],underlyingVals:(_,{allocPage,glbl,loc})=>[...number(allocPage(_,'array: __internal_object.ts/underlyingVals','f64'),124),...glbl(36,'underlyingVals',124),...glbl(35,'underlyingVals',124),[252,3],[33,loc('#makearray_pointer_tmp',127)],[32,loc('#makearray_pointer_tmp',127)],[65,0],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[68,0],[252,3],[54,1,0],[32,loc('#makearray_pointer_tmp',127)],[26]]},data:{"bytestring: __Porffor_object_underlying/key1":[9,0,0,0,112,114,111,116,111,116,121,112,101],"bytestring: __Porffor_object_underlying/key2":[11,0,0,0,99,111,110,115,116,114,117,99,116,111,114],"bytestring: __Porffor_object_underlying/key3":[6,0,0,0,108,101,110,103,116,104]},
|
11
11
|
};
|
12
12
|
this.__Porffor_strcmp = {
|
@@ -1450,61 +1450,155 @@ usedTypes:[18],
|
|
1450
1450
|
constr:1,
|
1451
1451
|
};
|
1452
1452
|
this.Error = {
|
1453
|
-
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[184],[65,7],[15]],
|
1453
|
+
wasm:(_,{allocPage,builtin})=>[...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],[34,15],[65,39],[15]],
|
1454
1454
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1455
|
-
locals:[],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type"],
|
1456
|
-
usedTypes:[7],
|
1455
|
+
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"],
|
1456
|
+
usedTypes:[195,7,39],
|
1457
|
+
data:{"bytestring: Error/_name":[5,0,0,0,69,114,114,111,114]},
|
1457
1458
|
constr:1,
|
1458
1459
|
};
|
1460
|
+
this.__Error_prototype_toString = {
|
1461
|
+
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]],
|
1462
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1463
|
+
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"],
|
1464
|
+
usedTypes:[39,7,195],
|
1465
|
+
data:{"bytestring: __Error_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1466
|
+
};
|
1459
1467
|
this.AggregateError = {
|
1460
|
-
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[184],[65,7],[15]],
|
1468
|
+
wasm:(_,{allocPage,builtin})=>[...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],[34,15],[65,40],[15]],
|
1461
1469
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1462
|
-
locals:[],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type"],
|
1463
|
-
usedTypes:[7],
|
1470
|
+
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"],
|
1471
|
+
usedTypes:[195,7,40],
|
1472
|
+
data:{"bytestring: AggregateError/_name":[14,0,0,0,65,103,103,114,101,103,97,116,101,69,114,114,111,114]},
|
1464
1473
|
constr:1,
|
1465
1474
|
};
|
1475
|
+
this.__AggregateError_prototype_toString = {
|
1476
|
+
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]],
|
1477
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1478
|
+
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"],
|
1479
|
+
usedTypes:[40,7,195],
|
1480
|
+
data:{"bytestring: __AggregateError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1481
|
+
};
|
1466
1482
|
this.TypeError = {
|
1467
|
-
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[184],[65,7],[15]],
|
1483
|
+
wasm:(_,{allocPage,builtin})=>[...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],[34,15],[65,41],[15]],
|
1468
1484
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1469
|
-
locals:[],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type"],
|
1470
|
-
usedTypes:[7],
|
1485
|
+
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"],
|
1486
|
+
usedTypes:[195,7,41],
|
1487
|
+
data:{"bytestring: TypeError/_name":[9,0,0,0,84,121,112,101,69,114,114,111,114]},
|
1471
1488
|
constr:1,
|
1472
1489
|
};
|
1490
|
+
this.__TypeError_prototype_toString = {
|
1491
|
+
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]],
|
1492
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1493
|
+
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"],
|
1494
|
+
usedTypes:[41,7,195],
|
1495
|
+
data:{"bytestring: __TypeError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1496
|
+
};
|
1473
1497
|
this.ReferenceError = {
|
1474
|
-
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[184],[65,7],[15]],
|
1498
|
+
wasm:(_,{allocPage,builtin})=>[...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],[34,15],[65,42],[15]],
|
1475
1499
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1476
|
-
locals:[],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type"],
|
1477
|
-
usedTypes:[7],
|
1500
|
+
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"],
|
1501
|
+
usedTypes:[195,7,42],
|
1502
|
+
data:{"bytestring: ReferenceError/_name":[14,0,0,0,82,101,102,101,114,101,110,99,101,69,114,114,111,114]},
|
1478
1503
|
constr:1,
|
1479
1504
|
};
|
1505
|
+
this.__ReferenceError_prototype_toString = {
|
1506
|
+
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]],
|
1507
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1508
|
+
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"],
|
1509
|
+
usedTypes:[42,7,195],
|
1510
|
+
data:{"bytestring: __ReferenceError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1511
|
+
};
|
1480
1512
|
this.SyntaxError = {
|
1481
|
-
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[184],[65,7],[15]],
|
1513
|
+
wasm:(_,{allocPage,builtin})=>[...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],[34,15],[65,43],[15]],
|
1482
1514
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1483
|
-
locals:[],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type"],
|
1484
|
-
usedTypes:[7],
|
1515
|
+
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"],
|
1516
|
+
usedTypes:[195,7,43],
|
1517
|
+
data:{"bytestring: SyntaxError/_name":[11,0,0,0,83,121,110,116,97,120,69,114,114,111,114]},
|
1485
1518
|
constr:1,
|
1486
1519
|
};
|
1520
|
+
this.__SyntaxError_prototype_toString = {
|
1521
|
+
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]],
|
1522
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1523
|
+
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"],
|
1524
|
+
usedTypes:[43,7,195],
|
1525
|
+
data:{"bytestring: __SyntaxError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1526
|
+
};
|
1487
1527
|
this.RangeError = {
|
1488
|
-
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[184],[65,7],[15]],
|
1528
|
+
wasm:(_,{allocPage,builtin})=>[...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],[34,15],[65,44],[15]],
|
1489
1529
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1490
|
-
locals:[],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type"],
|
1491
|
-
usedTypes:[7],
|
1530
|
+
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"],
|
1531
|
+
usedTypes:[195,7,44],
|
1532
|
+
data:{"bytestring: RangeError/_name":[10,0,0,0,82,97,110,103,101,69,114,114,111,114]},
|
1492
1533
|
constr:1,
|
1493
1534
|
};
|
1535
|
+
this.__RangeError_prototype_toString = {
|
1536
|
+
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]],
|
1537
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1538
|
+
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"],
|
1539
|
+
usedTypes:[44,7,195],
|
1540
|
+
data:{"bytestring: __RangeError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1541
|
+
};
|
1494
1542
|
this.EvalError = {
|
1495
|
-
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[184],[65,7],[15]],
|
1543
|
+
wasm:(_,{allocPage,builtin})=>[...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],[34,15],[65,45],[15]],
|
1496
1544
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1497
|
-
locals:[],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type"],
|
1498
|
-
usedTypes:[7],
|
1545
|
+
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"],
|
1546
|
+
usedTypes:[195,7,45],
|
1547
|
+
data:{"bytestring: EvalError/_name":[9,0,0,0,69,118,97,108,69,114,114,111,114]},
|
1499
1548
|
constr:1,
|
1500
1549
|
};
|
1550
|
+
this.__EvalError_prototype_toString = {
|
1551
|
+
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]],
|
1552
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1553
|
+
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"],
|
1554
|
+
usedTypes:[45,7,195],
|
1555
|
+
data:{"bytestring: __EvalError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1556
|
+
};
|
1501
1557
|
this.URIError = {
|
1502
|
-
wasm:(_,{builtin})=>[[16,builtin('__Porffor_allocate')],[184],[65,7],[15]],
|
1558
|
+
wasm:(_,{allocPage,builtin})=>[...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],[34,15],[65,46],[15]],
|
1503
1559
|
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1504
|
-
locals:[],localNames:["#newtarget","#newtarget#type","#this","#this#type","message","message#type"],
|
1505
|
-
usedTypes:[7],
|
1560
|
+
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"],
|
1561
|
+
usedTypes:[195,7,46],
|
1562
|
+
data:{"bytestring: URIError/_name":[8,0,0,0,85,82,73,69,114,114,111,114]},
|
1506
1563
|
constr:1,
|
1507
1564
|
};
|
1565
|
+
this.__URIError_prototype_toString = {
|
1566
|
+
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]],
|
1567
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1568
|
+
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"],
|
1569
|
+
usedTypes:[46,7,195],
|
1570
|
+
data:{"bytestring: __URIError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1571
|
+
};
|
1572
|
+
this.__Porffor_TodoError = {
|
1573
|
+
wasm:(_,{allocPage,builtin})=>[...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,15],[65,7],[33,16],[32,15],[32,16],[15]],
|
1574
|
+
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1575
|
+
locals:[124,127,124,124,124,127,124,124,127,124,127],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","out#type"],
|
1576
|
+
usedTypes:[195,7],
|
1577
|
+
data:{"bytestring: __Porffor_TodoError/_name":[9,0,0,0,84,111,100,111,69,114,114,111,114]},
|
1578
|
+
constr:1,
|
1579
|
+
};
|
1580
|
+
this.____Porffor_TodoError_prototype_toString = {
|
1581
|
+
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,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: ____Porffor_TodoError_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]],
|
1582
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1583
|
+
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"],
|
1584
|
+
usedTypes:[7,195],
|
1585
|
+
data:{"bytestring: ____Porffor_TodoError_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1586
|
+
};
|
1587
|
+
this.Test262Error = {
|
1588
|
+
wasm:(_,{allocPage,builtin})=>[...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,15],[65,7],[33,16],[32,15],[32,16],[15]],
|
1589
|
+
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1590
|
+
locals:[124,127,124,124,124,127,124,124,127,124,127],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","out#type"],
|
1591
|
+
usedTypes:[195,7],
|
1592
|
+
data:{"bytestring: Test262Error/_name":[12,0,0,0,84,101,115,116,50,54,50,69,114,114,111,114]},
|
1593
|
+
constr:1,
|
1594
|
+
};
|
1595
|
+
this.__Test262Error_prototype_toString = {
|
1596
|
+
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,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: __Test262Error_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]],
|
1597
|
+
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1598
|
+
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"],
|
1599
|
+
usedTypes:[7,195],
|
1600
|
+
data:{"bytestring: __Test262Error_prototype_toString/bridge":[2,0,0,0,58,32]},
|
1601
|
+
};
|
1508
1602
|
this.escape = {
|
1509
1603
|
wasm:(_,{allocPage,builtin})=>[...number(allocPage(_,'bytestring: escape/lut','i8'),127),[33,2],[32,0],[40,1,0],[34,3],[33,4],[32,0],[33,5],[32,1],[65,195,1],[70],[4,64],[32,5],[32,3],[106],[33,6],[3,64],[32,5],[32,6],[72],[4,64],[32,5],[32,5],[65,1],[106],[33,5],[45,0,4],[34,7],[65,128,1],[72],[4,64],[32,2],[32,7],[106],[45,0,4],[4,64],[12,3],[11],[11],[32,4],[65,2],[106],[33,4],[12,1],[11],[11],[32,4],[32,3],[70],[4,64],[32,0],[32,1],[15],[11],[16,builtin('__Porffor_allocate')],[34,8],[34,10],[32,4],[34,9],[54,1,0],[32,0],[33,5],[32,8],[33,11],[3,64],[32,5],[32,6],[72],[4,64],[32,5],[32,5],[65,1],[106],[33,5],[45,0,4],[34,7],[65,128,1],[72],[4,64],[32,2],[32,7],[106],[45,0,4],[4,64],[32,11],[32,11],[65,1],[106],[33,11],[32,7],[58,0,4],[12,3],[11],[11],[32,11],[32,11],[65,1],[106],[33,11],[65,37],[58,0,4],[32,7],[65,15],[113],[65,48],[106],[34,12],[65,57],[74],[4,64],[32,12],[65,7],[106],[33,12],[11],[32,7],[65,4],[117],[65,48],[106],[34,13],[65,57],[74],[4,64],[32,13],[65,7],[106],[33,13],[11],[32,11],[32,11],[65,1],[106],[33,11],[32,13],[58,0,4],[32,11],[32,11],[65,1],[106],[33,11],[32,12],[58,0,4],[12,1],[11],[11],[32,8],[65,195,1],[15],[11],[32,5],[32,3],[65,2],[108],[106],[33,6],[3,64],[32,5],[32,6],[72],[4,64],[32,5],[47,0,4],[33,7],[32,5],[65,2],[106],[33,5],[32,7],[65,128,1],[72],[4,64],[32,2],[32,7],[106],[45,0,4],[4,64],[12,3],[11],[11],[32,7],[65,128,2],[72],[4,64],[32,4],[65,2],[106],[33,4],[5],[32,4],[65,5],[106],[33,4],[11],[12,1],[11],[11],[32,4],[32,3],[70],[4,64],[32,0],[32,1],[15],[11],[16,builtin('__Porffor_allocate')],[34,8],[34,10],[32,4],[34,9],[54,1,0],[32,0],[33,5],[32,8],[33,11],[3,64],[32,5],[32,6],[72],[4,64],[32,5],[47,0,4],[33,7],[32,5],[65,2],[106],[33,5],[32,7],[65,128,1],[72],[4,64],[32,2],[32,7],[106],[45,0,4],[4,64],[32,11],[32,11],[65,1],[106],[33,11],[32,7],[58,0,4],[12,3],[11],[11],[32,7],[65,128,2],[72],[4,64],[32,11],[32,11],[65,1],[106],[33,11],[65,37],[58,0,4],[32,7],[65,15],[113],[65,48],[106],[34,12],[65,57],[74],[4,64],[32,12],[65,7],[106],[33,12],[11],[32,7],[65,4],[117],[65,48],[106],[34,13],[65,57],[74],[4,64],[32,13],[65,7],[106],[33,13],[11],[32,11],[32,11],[65,1],[106],[33,11],[32,13],[58,0,4],[32,11],[32,11],[65,1],[106],[33,11],[32,12],[58,0,4],[5],[32,11],[65,165,234,1],[59,0,4],[32,11],[65,2],[106],[33,11],[32,7],[65,12],[117],[65,15],[113],[65,48],[106],[34,14],[65,57],[74],[4,64],[32,14],[65,7],[106],[33,14],[11],[32,11],[32,11],[65,1],[106],[33,11],[32,14],[58,0,4],[32,7],[65,8],[117],[65,15],[113],[65,48],[106],[34,14],[65,57],[74],[4,64],[32,14],[65,7],[106],[33,14],[11],[32,11],[32,11],[65,1],[106],[33,11],[32,14],[58,0,4],[32,7],[65,4],[117],[65,15],[113],[65,48],[106],[34,14],[65,57],[74],[4,64],[32,14],[65,7],[106],[33,14],[11],[32,11],[32,11],[65,1],[106],[33,11],[32,14],[58,0,4],[32,7],[65,15],[113],[65,48],[106],[34,14],[65,57],[74],[4,64],[32,14],[65,7],[106],[33,14],[11],[32,11],[32,11],[65,1],[106],[33,11],[32,14],[58,0,4],[11],[12,1],[11],[11],[32,8],[65,195,1],[15]],
|
1510
1604
|
params:[127,127],typedParams:1,returns:[127,127],typedReturns:1,
|
@@ -1736,16 +1830,16 @@ params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
|
1736
1830
|
locals:[127],localNames:["obj","obj#type","prop","prop#type","#last_type"],
|
1737
1831
|
};
|
1738
1832
|
this.__Porffor_object_in = {
|
1739
|
-
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([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]],
|
1833
|
+
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___Error_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([40],()=>[[32,6],[65,40],[70],[4,64],[16,builtin('#get___AggregateError_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([41],()=>[[32,6],[65,41],[70],[4,64],[16,builtin('#get___TypeError_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([42],()=>[[32,6],[65,42],[70],[4,64],[16,builtin('#get___ReferenceError_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([43],()=>[[32,6],[65,43],[70],[4,64],[16,builtin('#get___SyntaxError_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([44],()=>[[32,6],[65,44],[70],[4,64],[16,builtin('#get___RangeError_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([45],()=>[[32,6],[65,45],[70],[4,64],[16,builtin('#get___EvalError_prototype')],[184],[65,7],[33,4],[12,1],[11]]),...t([46],()=>[[32,6],[65,46],[70],[4,64],[16,builtin('#get___URIError_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]],
|
1740
1834
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1741
1835
|
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"],
|
1742
1836
|
usedTypes:[7,195],
|
1743
1837
|
};
|
1744
1838
|
this.__Porffor_object_instanceof = {
|
1745
|
-
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,2],[33,6],...number(allocPage(_,'bytestring: __Porffor_object_instanceof/#member_prop','i8'),124),[34,
|
1746
|
-
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1747
|
-
locals:[
|
1748
|
-
usedTypes:[195
|
1839
|
+
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___Error_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([40],()=>[[32,8],[65,40],[70],[4,64],[16,builtin('#get___AggregateError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([41],()=>[[32,8],[65,41],[70],[4,64],[16,builtin('#get___TypeError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([42],()=>[[32,8],[65,42],[70],[4,64],[16,builtin('#get___ReferenceError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([43],()=>[[32,8],[65,43],[70],[4,64],[16,builtin('#get___SyntaxError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([44],()=>[[32,8],[65,44],[70],[4,64],[16,builtin('#get___RangeError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([45],()=>[[32,8],[65,45],[70],[4,64],[16,builtin('#get___EvalError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([46],()=>[[32,8],[65,46],[70],[4,64],[16,builtin('#get___URIError_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]],
|
1840
|
+
params:[124,127,124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1841
|
+
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"],
|
1842
|
+
usedTypes:[7,195],
|
1749
1843
|
};
|
1750
1844
|
this.__Object_assign = {
|
1751
1845
|
wasm:(_,{t,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',`Argument is nullish, expected object`),[11],[32,2],[252,3],[33,6],[65,208,0],[33,9],[65,0],[33,8],[32,9],[65,208,0],[70],[32,9],[65,19],[70],[114],[32,9],[65,195,0],[70],[114],[32,9],[65,195,1],[70],[114],[32,9],[65,216,0],[78],[32,9],[65,224,0],[76],[113],[114],[69],[4,64],...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[32,6],[40,1,0],[34,7],[4,64],[32,9],[33,5],[2,64],...t([19],()=>[[32,5],[65,19],[70],[4,64],[3,64],[32,6],[43,0,4],[33,10],[32,6],[45,0,12],[33,11],[32,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,12],[32,13],[16,builtin('__Object_keys')],[33,15],[33,14],[32,12],[32,13],[16,builtin('__Object_values')],[33,15],[33,16],[32,14],[252,3],[40,1,0],[184],[33,17],[68,0],[33,18],[3,64],[32,18],[32,17],[99],[4,64],[2,64],[32,0],[33,21],[32,14],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[33,22],[32,1],[33,5],[2,124],...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,20],[32,15],[58,0,12],[32,19],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[182],[56,0,4],[32,19],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,19],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,21],[252,2],[32,1],[32,22],[32,15],[16,builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[34,15],[16,builtin('__Porffor_object_set')],[26],[11],[26],[11],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11]]),...t([67],()=>[[32,5],[65,195,0],[70],[4,64],[65,195,0],[33,11],[16,builtin('__Porffor_allocate')],[34,26],[65,1],[54,0,0],[3,64],[32,26],[32,6],[47,0,4],[59,0,4],[32,26],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,12],[32,13],[16,builtin('__Object_keys')],[33,15],[33,14],[32,12],[32,13],[16,builtin('__Object_values')],[33,15],[33,16],[32,14],[252,3],[40,1,0],[184],[33,17],[68,0],[33,18],[3,64],[32,18],[32,17],[99],[4,64],[2,64],[32,0],[33,21],[32,14],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[33,22],[32,1],[33,5],[2,124],...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,20],[32,15],[58,0,12],[32,19],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[182],[56,0,4],[32,19],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,19],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,21],[252,2],[32,1],[32,22],[32,15],[16,builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[34,15],[16,builtin('__Porffor_object_set')],[26],[11],[26],[11],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[11],[32,6],[65,2],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11]]),...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[3,64],[32,6],[43,0,4],[33,10],[32,6],[45,0,12],[33,11],[32,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,12],[32,13],[16,builtin('__Object_keys')],[33,15],[33,14],[32,12],[32,13],[16,builtin('__Object_values')],[33,15],[33,16],[32,14],[252,3],[40,1,0],[184],[33,17],[68,0],[33,18],[3,64],[32,18],[32,17],[99],[4,64],[2,64],[32,0],[33,21],[32,14],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[33,22],[32,1],[33,5],[2,124],...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,20],[32,15],[58,0,12],[32,19],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[182],[56,0,4],[32,19],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,19],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,21],[252,2],[32,1],[32,22],[32,15],[16,builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[34,15],[16,builtin('__Porffor_object_set')],[26],[11],[26],[11],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[11],[32,6],[65,9],[106],[33,6],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[65,1],[33,11],[3,64],[32,6],[40,0,4],[32,8],[106],[45,0,4],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,12],[32,13],[16,builtin('__Object_keys')],[33,15],[33,14],[32,12],[32,13],[16,builtin('__Object_values')],[33,15],[33,16],[32,14],[252,3],[40,1,0],[184],[33,17],[68,0],[33,18],[3,64],[32,18],[32,17],[99],[4,64],[2,64],[32,0],[33,21],[32,14],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[33,22],[32,1],[33,5],[2,124],...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,20],[32,15],[58,0,12],[32,19],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[182],[56,0,4],[32,19],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,19],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,21],[252,2],[32,1],[32,22],[32,15],[16,builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[34,15],[16,builtin('__Porffor_object_set')],[26],[11],[26],[11],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[65,1],[33,11],[3,64],[32,6],[40,0,4],[32,8],[106],[44,0,4],[183],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,12],[32,13],[16,builtin('__Object_keys')],[33,15],[33,14],[32,12],[32,13],[16,builtin('__Object_values')],[33,15],[33,16],[32,14],[252,3],[40,1,0],[184],[33,17],[68,0],[33,18],[3,64],[32,18],[32,17],[99],[4,64],[2,64],[32,0],[33,21],[32,14],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[33,22],[32,1],[33,5],[2,124],...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,20],[32,15],[58,0,12],[32,19],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[182],[56,0,4],[32,19],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,19],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,21],[252,2],[32,1],[32,22],[32,15],[16,builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[34,15],[16,builtin('__Porffor_object_set')],[26],[11],[26],[11],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[65,1],[33,11],[3,64],[32,6],[40,0,4],[32,8],[106],[45,0,4],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,12],[32,13],[16,builtin('__Object_keys')],[33,15],[33,14],[32,12],[32,13],[16,builtin('__Object_values')],[33,15],[33,16],[32,14],[252,3],[40,1,0],[184],[33,17],[68,0],[33,18],[3,64],[32,18],[32,17],[99],[4,64],[2,64],[32,0],[33,21],[32,14],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[33,22],[32,1],[33,5],[2,124],...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,20],[32,15],[58,0,12],[32,19],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[182],[56,0,4],[32,19],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,19],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,21],[252,2],[32,1],[32,22],[32,15],[16,builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[34,15],[16,builtin('__Porffor_object_set')],[26],[11],[26],[11],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[65,1],[33,11],[3,64],[32,6],[40,0,4],[32,8],[65,2],[108],[106],[47,0,4],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,12],[32,13],[16,builtin('__Object_keys')],[33,15],[33,14],[32,12],[32,13],[16,builtin('__Object_values')],[33,15],[33,16],[32,14],[252,3],[40,1,0],[184],[33,17],[68,0],[33,18],[3,64],[32,18],[32,17],[99],[4,64],[2,64],[32,0],[33,21],[32,14],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[33,22],[32,1],[33,5],[2,124],...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,20],[32,15],[58,0,12],[32,19],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[182],[56,0,4],[32,19],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,19],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,21],[252,2],[32,1],[32,22],[32,15],[16,builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[34,15],[16,builtin('__Porffor_object_set')],[26],[11],[26],[11],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[65,1],[33,11],[3,64],[32,6],[40,0,4],[32,8],[65,2],[108],[106],[46,0,4],[183],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,12],[32,13],[16,builtin('__Object_keys')],[33,15],[33,14],[32,12],[32,13],[16,builtin('__Object_values')],[33,15],[33,16],[32,14],[252,3],[40,1,0],[184],[33,17],[68,0],[33,18],[3,64],[32,18],[32,17],[99],[4,64],[2,64],[32,0],[33,21],[32,14],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[33,22],[32,1],[33,5],[2,124],...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,20],[32,15],[58,0,12],[32,19],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[182],[56,0,4],[32,19],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,19],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,21],[252,2],[32,1],[32,22],[32,15],[16,builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[34,15],[16,builtin('__Porffor_object_set')],[26],[11],[26],[11],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[65,1],[33,11],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[40,0,4],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,12],[32,13],[16,builtin('__Object_keys')],[33,15],[33,14],[32,12],[32,13],[16,builtin('__Object_values')],[33,15],[33,16],[32,14],[252,3],[40,1,0],[184],[33,17],[68,0],[33,18],[3,64],[32,18],[32,17],[99],[4,64],[2,64],[32,0],[33,21],[32,14],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[33,22],[32,1],[33,5],[2,124],...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,20],[32,15],[58,0,12],[32,19],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[182],[56,0,4],[32,19],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,19],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,21],[252,2],[32,1],[32,22],[32,15],[16,builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[34,15],[16,builtin('__Porffor_object_set')],[26],[11],[26],[11],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[65,1],[33,11],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[40,0,4],[183],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,12],[32,13],[16,builtin('__Object_keys')],[33,15],[33,14],[32,12],[32,13],[16,builtin('__Object_values')],[33,15],[33,16],[32,14],[252,3],[40,1,0],[184],[33,17],[68,0],[33,18],[3,64],[32,18],[32,17],[99],[4,64],[2,64],[32,0],[33,21],[32,14],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[33,22],[32,1],[33,5],[2,124],...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,20],[32,15],[58,0,12],[32,19],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[182],[56,0,4],[32,19],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,19],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,21],[252,2],[32,1],[32,22],[32,15],[16,builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[34,15],[16,builtin('__Porffor_object_set')],[26],[11],[26],[11],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[65,1],[33,11],[3,64],[32,6],[40,0,4],[32,8],[65,4],[108],[106],[42,0,4],[187],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,12],[32,13],[16,builtin('__Object_keys')],[33,15],[33,14],[32,12],[32,13],[16,builtin('__Object_values')],[33,15],[33,16],[32,14],[252,3],[40,1,0],[184],[33,17],[68,0],[33,18],[3,64],[32,18],[32,17],[99],[4,64],[2,64],[32,0],[33,21],[32,14],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[33,22],[32,1],[33,5],[2,124],...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,20],[32,15],[58,0,12],[32,19],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[182],[56,0,4],[32,19],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,19],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,21],[252,2],[32,1],[32,22],[32,15],[16,builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[34,15],[16,builtin('__Porffor_object_set')],[26],[11],[26],[11],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[65,1],[33,11],[3,64],[32,6],[40,0,4],[32,8],[65,8],[108],[106],[43,0,4],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,12],[32,13],[16,builtin('__Object_keys')],[33,15],[33,14],[32,12],[32,13],[16,builtin('__Object_values')],[33,15],[33,16],[32,14],[252,3],[40,1,0],[184],[33,17],[68,0],[33,18],[3,64],[32,18],[32,17],[99],[4,64],[2,64],[32,0],[33,21],[32,14],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[33,22],[32,1],[33,5],[2,124],...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,20],[32,15],[58,0,12],[32,19],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[182],[56,0,4],[32,19],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,19],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,21],[252,2],[32,1],[32,22],[32,15],[16,builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[34,15],[16,builtin('__Porffor_object_set')],[26],[11],[26],[11],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11]]),...t([195],()=>[[32,5],[65,195,1],[70],[4,64],[65,195,1],[33,11],[16,builtin('__Porffor_allocate')],[34,26],[65,1],[54,0,0],[3,64],[32,26],[32,6],[32,8],[106],[45,0,4],[58,0,4],[32,26],[184],[34,10],[33,12],[32,11],[33,13],[2,64],[2,64],[32,12],[32,13],[16,builtin('__Object_keys')],[33,15],[33,14],[32,12],[32,13],[16,builtin('__Object_values')],[33,15],[33,16],[32,14],[252,3],[40,1,0],[184],[33,17],[68,0],[33,18],[3,64],[32,18],[32,17],[99],[4,64],[2,64],[32,0],[33,21],[32,14],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[33,22],[32,1],[33,5],[2,124],...t([80],()=>[[32,5],[65,208,0],[70],[4,64],[32,21],[252,3],[32,22],[252,3],[65,9],[108],[106],[34,20],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,20],[32,15],[58,0,12],[32,19],[12,1],[11]]),...t([88],()=>[[32,5],[65,216,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([89],()=>[[32,5],[65,217,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[58,0,4],[32,19],[12,1],[11]]),...t([90],()=>[[32,5],[65,218,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[68,0],[165],[68,255],[164],[252,3],[58,0,4],[32,19],[12,1],[11]]),...t([91],()=>[[32,5],[65,219,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[59,0,4],[32,19],[12,1],[11]]),...t([92],()=>[[32,5],[65,220,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,2],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[59,0,4],[32,19],[12,1],[11]]),...t([93],()=>[[32,5],[65,221,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,3],[54,0,4],[32,19],[12,1],[11]]),...t([94],()=>[[32,5],[65,222,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[252,2],[54,0,4],[32,19],[12,1],[11]]),...t([95],()=>[[32,5],[65,223,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,4],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[182],[56,0,4],[32,19],[12,1],[11]]),...t([96],()=>[[32,5],[65,224,0],[70],[4,64],[32,21],[252,3],[40,0,4],[32,22],[252,3],[65,8],[108],[106],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[33,15],[34,19],[57,0,4],[32,19],[12,1],[11]]),...t([128],()=>[[32,5],[65,128,1],[70],[4,64],...internalThrow(_,'TypeError',`Cannot set property of undefined`),[68,0],[12,1],[11]]),[32,21],[252,2],[32,1],[32,22],[32,15],[16,builtin('__ecma262_ToPropertyKey')],[33,25],[252,3],[32,25],[32,16],[33,21],[32,18],[34,23],[252,3],[65,9],[108],[32,21],[252,3],[106],[34,24],[43,0,4],[32,24],[45,0,12],[34,15],[16,builtin('__Porffor_object_set')],[26],[11],[26],[11],[32,18],[68,1],[160],[33,18],[12,1],[11],[11],[11],[32,8],[65,1],[106],[34,8],[32,7],[71],[13,1],[11],[11],[12,1],[11]]),...internalThrow(_,'TypeError',`Tried for..of on non-iterable type`),[11],[11],[32,0],[32,1],[15]],
|
@@ -1852,7 +1946,7 @@ usedTypes:[7,80,67,195],
|
|
1852
1946
|
table:1,
|
1853
1947
|
};
|
1854
1948
|
this.__Object_getPrototypeOf = {
|
1855
|
-
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([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]],
|
1949
|
+
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___Error_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([40],()=>[[32,3],[65,40],[70],[4,64],[16,builtin('#get___AggregateError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([41],()=>[[32,3],[65,41],[70],[4,64],[16,builtin('#get___TypeError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([42],()=>[[32,3],[65,42],[70],[4,64],[16,builtin('#get___ReferenceError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([43],()=>[[32,3],[65,43],[70],[4,64],[16,builtin('#get___SyntaxError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([44],()=>[[32,3],[65,44],[70],[4,64],[16,builtin('#get___RangeError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([45],()=>[[32,3],[65,45],[70],[4,64],[16,builtin('#get___EvalError_prototype')],[184],[65,7],[33,6],[12,1],[11]]),...t([46],()=>[[32,3],[65,46],[70],[4,64],[16,builtin('#get___URIError_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]],
|
1856
1950
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1857
1951
|
locals:[124,127,124,124,127,127],localNames:["obj","obj#type","#logicinner_tmp","#typeswitch_tmp1","#member_obj","#member_prop","#last_type","#makearray_pointer_tmp"],
|
1858
1952
|
usedTypes:[7,195],
|
@@ -1864,13 +1958,13 @@ locals:[124,127,127,124,127,124,124,127],localNames:["obj","obj#type","proto","p
|
|
1864
1958
|
usedTypes:[195],
|
1865
1959
|
};
|
1866
1960
|
this.__Object_prototype_isPrototypeOf = {
|
1867
|
-
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([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]],
|
1961
|
+
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___Error_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([40],()=>[[32,5],[65,40],[70],[4,64],[16,builtin('#get___AggregateError_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([41],()=>[[32,5],[65,41],[70],[4,64],[16,builtin('#get___TypeError_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([42],()=>[[32,5],[65,42],[70],[4,64],[16,builtin('#get___ReferenceError_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([43],()=>[[32,5],[65,43],[70],[4,64],[16,builtin('#get___SyntaxError_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([44],()=>[[32,5],[65,44],[70],[4,64],[16,builtin('#get___RangeError_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([45],()=>[[32,5],[65,45],[70],[4,64],[16,builtin('#get___EvalError_prototype')],[184],[65,7],[33,8],[12,1],[11]]),...t([46],()=>[[32,5],[65,46],[70],[4,64],[16,builtin('#get___URIError_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]],
|
1868
1962
|
params:[124,127,124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1869
1963
|
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"],
|
1870
1964
|
usedTypes:[7,195],
|
1871
1965
|
};
|
1872
1966
|
this.__Object_prototype_toString = {
|
1873
|
-
wasm:(_,{t,allocPage,builtin,funcRef,internalThrow})=>[[32,1],[184],[68,7],[97],[4,64],[32,0],[34,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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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],[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]],
|
1967
|
+
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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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]],
|
1874
1968
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1875
1969
|
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"],
|
1876
1970
|
usedTypes:[7,195],
|
@@ -1883,7 +1977,7 @@ params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
|
1883
1977
|
locals:[127],localNames:["_this","_this#type","#last_type"],
|
1884
1978
|
};
|
1885
1979
|
this.__Object_prototype_valueOf = {
|
1886
|
-
wasm:(_,{t,allocPage,builtin,funcRef,internalThrow})=>[[32,1],[184],[68,7],[97],[4,64],[32,0],[34,2],[33,5],...number(allocPage(_,'bytestring: __Object_prototype_valueOf/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,7],[54,1,0],[32,8],[65,246,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,236,0],[58,0,6],[32,8],[65,245,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,207,0],[58,0,9],[32,8],[65,230,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],[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_valueOf'),[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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],[32,0],[32,1],[15]],
|
1980
|
+
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_valueOf/#member_prop','i8'),124),[34,6],[252,3],[34,8],[65,7],[54,1,0],[32,8],[65,246,0],[58,0,4],[32,8],[65,225,0],[58,0,5],[32,8],[65,236,0],[58,0,6],[32,8],[65,245,0],[58,0,7],[32,8],[65,229,0],[58,0,8],[32,8],[65,207,0],[58,0,9],[32,8],[65,230,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],[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_valueOf'),[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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,7],[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],[32,0],[32,1],[15]],
|
1887
1981
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
1888
1982
|
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],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"],
|
1889
1983
|
usedTypes:[7,195],
|
@@ -4674,12 +4768,12 @@ locals:[127],localNames:["_this","_this#type","#last_type"],
|
|
4674
4768
|
usedTypes:[33],
|
4675
4769
|
};
|
4676
4770
|
this.__ecma262_ToPrimitive_Number = {
|
4677
|
-
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([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]],
|
4771
|
+
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('__Error_prototype_toString')],[33,7],[12,1],[11]]),...t([40],()=>[[32,6],[65,40],[70],[4,64],[32,4],[32,5],[16,builtin('__AggregateError_prototype_toString')],[33,7],[12,1],[11]]),...t([41],()=>[[32,6],[65,41],[70],[4,64],[32,4],[32,5],[16,builtin('__TypeError_prototype_toString')],[33,7],[12,1],[11]]),...t([42],()=>[[32,6],[65,42],[70],[4,64],[32,4],[32,5],[16,builtin('__ReferenceError_prototype_toString')],[33,7],[12,1],[11]]),...t([43],()=>[[32,6],[65,43],[70],[4,64],[32,4],[32,5],[16,builtin('__SyntaxError_prototype_toString')],[33,7],[12,1],[11]]),...t([44],()=>[[32,6],[65,44],[70],[4,64],[32,4],[32,5],[16,builtin('__RangeError_prototype_toString')],[33,7],[12,1],[11]]),...t([45],()=>[[32,6],[65,45],[70],[4,64],[32,4],[32,5],[16,builtin('__EvalError_prototype_toString')],[33,7],[12,1],[11]]),...t([46],()=>[[32,6],[65,46],[70],[4,64],[32,4],[32,5],[16,builtin('__URIError_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]],
|
4678
4772
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
4679
4773
|
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"],
|
4680
4774
|
};
|
4681
4775
|
this.__ecma262_ToPrimitive_String = {
|
4682
|
-
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([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([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]],
|
4776
|
+
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('__Error_prototype_toString')],[33,7],[12,1],[11]]),...t([40],()=>[[32,6],[65,40],[70],[4,64],[32,4],[32,5],[16,builtin('__AggregateError_prototype_toString')],[33,7],[12,1],[11]]),...t([41],()=>[[32,6],[65,41],[70],[4,64],[32,4],[32,5],[16,builtin('__TypeError_prototype_toString')],[33,7],[12,1],[11]]),...t([42],()=>[[32,6],[65,42],[70],[4,64],[32,4],[32,5],[16,builtin('__ReferenceError_prototype_toString')],[33,7],[12,1],[11]]),...t([43],()=>[[32,6],[65,43],[70],[4,64],[32,4],[32,5],[16,builtin('__SyntaxError_prototype_toString')],[33,7],[12,1],[11]]),...t([44],()=>[[32,6],[65,44],[70],[4,64],[32,4],[32,5],[16,builtin('__RangeError_prototype_toString')],[33,7],[12,1],[11]]),...t([45],()=>[[32,6],[65,45],[70],[4,64],[32,4],[32,5],[16,builtin('__EvalError_prototype_toString')],[33,7],[12,1],[11]]),...t([46],()=>[[32,6],[65,46],[70],[4,64],[32,4],[32,5],[16,builtin('__URIError_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([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]],
|
4683
4777
|
params:[124,127],typedParams:1,returns:[124,127],typedReturns:1,
|
4684
4778
|
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"],
|
4685
4779
|
};
|
package/compiler/codegen.js
CHANGED
@@ -32,7 +32,7 @@ const todo = (scope, msg, expectsValue = undefined) => {
|
|
32
32
|
throw new TodoError(msg);
|
33
33
|
|
34
34
|
case 'runtime':
|
35
|
-
return internalThrow(scope, '
|
35
|
+
return internalThrow(scope, '__Porffor_TodoError', msg, expectsValue);
|
36
36
|
}
|
37
37
|
};
|
38
38
|
|
@@ -890,7 +890,7 @@ const generateBinaryExp = (scope, decl, _global, _name) => {
|
|
890
890
|
const rightName = decl.right.name;
|
891
891
|
if (rightName) {
|
892
892
|
const checkType = TYPES[rightName.toLowerCase()];
|
893
|
-
if (checkType != null && rightName === TYPE_NAMES[checkType]) {
|
893
|
+
if (checkType != null && rightName === TYPE_NAMES[checkType] && !rightName.endsWith('Error')) {
|
894
894
|
const out = generate(scope, decl.left);
|
895
895
|
disposeLeftover(out);
|
896
896
|
|
@@ -917,7 +917,8 @@ const generateBinaryExp = (scope, decl, _global, _name) => {
|
|
917
917
|
},
|
918
918
|
arguments: [
|
919
919
|
decl.left,
|
920
|
-
decl.right
|
920
|
+
decl.right,
|
921
|
+
getObjProp(decl.right, 'prototype')
|
921
922
|
]
|
922
923
|
});
|
923
924
|
}
|
@@ -4721,6 +4722,8 @@ const generateThrow = (scope, decl) => {
|
|
4721
4722
|
idx: tags.length
|
4722
4723
|
});
|
4723
4724
|
|
4725
|
+
if (constructor && constructor.startsWith('__')) constructor = constructor.split('_').pop();
|
4726
|
+
|
4724
4727
|
let exceptId = exceptions.findIndex(x => x.constructor === constructor && x.message === message);
|
4725
4728
|
if (exceptId === -1) exceptId = exceptions.push({ constructor, message }) - 1;
|
4726
4729
|
|
@@ -4746,61 +4749,6 @@ const generateThrow = (scope, decl) => {
|
|
4746
4749
|
[ Opcodes.throw, tags[0].idx ]
|
4747
4750
|
];
|
4748
4751
|
}
|
4749
|
-
|
4750
|
-
if (exceptionMode === 'stackest') {
|
4751
|
-
let message = decl.argument, constructor = null;
|
4752
|
-
|
4753
|
-
// support `throw (new)? Error(...)`
|
4754
|
-
if (message.type === 'NewExpression' || message.type === 'CallExpression') {
|
4755
|
-
constructor = decl.argument.callee;
|
4756
|
-
message = decl.argument.arguments[0];
|
4757
|
-
}
|
4758
|
-
|
4759
|
-
message ??= DEFAULT_VALUE();
|
4760
|
-
|
4761
|
-
if (tags.length === 0) tags.push({
|
4762
|
-
params: [ valtypeBinary, valtypeBinary, Valtype.i32 ],
|
4763
|
-
results: [],
|
4764
|
-
idx: tags.length
|
4765
|
-
});
|
4766
|
-
|
4767
|
-
return [
|
4768
|
-
...(constructor == null ? number(-1) : generate(scope, constructor)),
|
4769
|
-
...generate(scope, message),
|
4770
|
-
...getNodeType(scope, message),
|
4771
|
-
[ Opcodes.throw, tags[0].idx ]
|
4772
|
-
];
|
4773
|
-
}
|
4774
|
-
|
4775
|
-
if (exceptionMode === 'partial') {
|
4776
|
-
let message = decl.argument, constructor = null;
|
4777
|
-
|
4778
|
-
// support `throw (new)? Error(...)`
|
4779
|
-
if (message.type === 'NewExpression' || message.type === 'CallExpression') {
|
4780
|
-
constructor = decl.argument.callee.name;
|
4781
|
-
message = decl.argument.arguments[0];
|
4782
|
-
}
|
4783
|
-
|
4784
|
-
message ??= DEFAULT_VALUE();
|
4785
|
-
|
4786
|
-
if (tags.length === 0) tags.push({
|
4787
|
-
params: [ Valtype.i32, valtypeBinary, Valtype.i32 ],
|
4788
|
-
results: [],
|
4789
|
-
idx: tags.length
|
4790
|
-
});
|
4791
|
-
|
4792
|
-
let exceptId = exceptions.push({ constructor }) - 1;
|
4793
|
-
|
4794
|
-
scope.exceptions ??= [];
|
4795
|
-
scope.exceptions.push(exceptId);
|
4796
|
-
|
4797
|
-
return [
|
4798
|
-
...number(exceptId, Valtype.i32),
|
4799
|
-
...generate(scope, message),
|
4800
|
-
...getNodeType(scope, message),
|
4801
|
-
[ Opcodes.throw, tags[0].idx ]
|
4802
|
-
];
|
4803
|
-
}
|
4804
4752
|
};
|
4805
4753
|
|
4806
4754
|
const generateTry = (scope, decl) => {
|
@@ -5974,6 +5922,18 @@ const generateFunc = (scope, decl) => {
|
|
5974
5922
|
generate() {
|
5975
5923
|
if (func.wasm) return func.wasm;
|
5976
5924
|
|
5925
|
+
let errorWasm = null;
|
5926
|
+
if (decl.generator) {
|
5927
|
+
errorWasm = todo(func, 'generator functions are not supported');
|
5928
|
+
}
|
5929
|
+
|
5930
|
+
if (errorWasm) {
|
5931
|
+
return func.wasm = errorWasm.concat([
|
5932
|
+
...number(UNDEFINED),
|
5933
|
+
...number(TYPES.undefined, Valtype.i32)
|
5934
|
+
]);
|
5935
|
+
}
|
5936
|
+
|
5977
5937
|
// generating, stub _wasm
|
5978
5938
|
func.wasm = [];
|
5979
5939
|
|
@@ -6065,7 +6025,7 @@ const generateFunc = (scope, decl) => {
|
|
6065
6025
|
// inject promise job runner func at the end of main if promises are made
|
6066
6026
|
if (Object.hasOwn(funcIndex, 'Promise') || Object.hasOwn(funcIndex, '__Promise_resolve') || Object.hasOwn(funcIndex, '__Promise_reject')) {
|
6067
6027
|
wasm.push(
|
6068
|
-
[ Opcodes.call, includeBuiltin(
|
6028
|
+
[ Opcodes.call, includeBuiltin(func, '__Porffor_promise_runJobs').index ],
|
6069
6029
|
[ Opcodes.drop ],
|
6070
6030
|
[ Opcodes.drop ]
|
6071
6031
|
);
|
@@ -6084,17 +6044,6 @@ const generateFunc = (scope, decl) => {
|
|
6084
6044
|
funcIndex[name] = func.index;
|
6085
6045
|
funcs.push(func);
|
6086
6046
|
|
6087
|
-
let errorWasm = null;
|
6088
|
-
if (decl.generator) errorWasm = todo(scope, 'generator functions are not supported');
|
6089
|
-
|
6090
|
-
if (errorWasm) {
|
6091
|
-
// func.params = [];
|
6092
|
-
func.wasm = errorWasm.concat([
|
6093
|
-
...number(UNDEFINED),
|
6094
|
-
...number(TYPES.undefined, Valtype.i32)
|
6095
|
-
]);
|
6096
|
-
}
|
6097
|
-
|
6098
6047
|
if (typedInput && decl.returnType) {
|
6099
6048
|
const { type } = extractTypeAnnotation(decl.returnType);
|
6100
6049
|
if (type != null && !Prefs.indirectCalls) {
|
package/compiler/precompile.js
CHANGED
@@ -25,7 +25,7 @@ const compile = async (file, _funcs) => {
|
|
25
25
|
first = source.slice(0, source.indexOf('\n'));
|
26
26
|
}
|
27
27
|
|
28
|
-
let args = ['--todo-time=compile', '--truthy=no_nan_negative', '--no-rm-unused-types', '--scoped-page-names', '--funsafe-no-unlikely-proto-checks', '--fast-length', '--parse-types', '--opt-types', '--no-passive-data', '--active-data'];
|
28
|
+
let args = ['--todo-time=compile', '--truthy=no_nan_negative', '--no-rm-unused-types', '--scoped-page-names', '--funsafe-no-unlikely-proto-checks', '--fast-length', '--parse-types', '--opt-types', '--no-passive-data', '--active-data', '--exception-mode=lut'];
|
29
29
|
if (first.startsWith('// @porf')) {
|
30
30
|
args = first.slice('// @porf '.length).split(' ').concat(args);
|
31
31
|
}
|
package/compiler/types.js
CHANGED
@@ -77,6 +77,15 @@ registerInternalType('Promise');
|
|
77
77
|
registerInternalType('BooleanObject');
|
78
78
|
registerInternalType('NumberObject');
|
79
79
|
|
80
|
+
registerInternalType('Error');
|
81
|
+
registerInternalType('AggregateError');
|
82
|
+
registerInternalType('TypeError');
|
83
|
+
registerInternalType('ReferenceError');
|
84
|
+
registerInternalType('SyntaxError');
|
85
|
+
registerInternalType('RangeError');
|
86
|
+
registerInternalType('EvalError');
|
87
|
+
registerInternalType('URIError');
|
88
|
+
|
80
89
|
if (Prefs.largestTypes) {
|
81
90
|
const typeKeys = Object.keys(TYPES);
|
82
91
|
const typeVals = Object.values(TYPES);
|
package/compiler/wrap.js
CHANGED
@@ -305,6 +305,22 @@ ${flags & 0b0001 ? ` get func idx: ${get}
|
|
305
305
|
return out;
|
306
306
|
}
|
307
307
|
|
308
|
+
case TYPES.error:
|
309
|
+
case TYPES.aggregateerror:
|
310
|
+
case TYPES.typeerror:
|
311
|
+
case TYPES.referenceerror:
|
312
|
+
case TYPES.syntaxerror:
|
313
|
+
case TYPES.rangeerror:
|
314
|
+
case TYPES.evalerror:
|
315
|
+
case TYPES.urierror: {
|
316
|
+
const obj = porfToJSValue({ memory, funcs, pages }, value, TYPES.object);
|
317
|
+
const constr = globalThis[TYPE_NAMES[type]];
|
318
|
+
const err = new constr(obj.message);
|
319
|
+
err.name = obj.name;
|
320
|
+
err.stack = `${TYPE_NAMES[type]}: ${obj.message}`;
|
321
|
+
return err;
|
322
|
+
}
|
323
|
+
|
308
324
|
default: return value;
|
309
325
|
}
|
310
326
|
};
|
@@ -508,38 +524,6 @@ export default (source, flags = [ 'module' ], customImports = {}, print = str =>
|
|
508
524
|
|
509
525
|
throw porfToJSValue({ memory, funcs, pages }, value, type);
|
510
526
|
}
|
511
|
-
|
512
|
-
if (exceptionMode === 'stackest') {
|
513
|
-
const constructorIdx = e.getArg(exceptTag, 0);
|
514
|
-
const constructorName = constructorIdx == -1 ? null : funcs.find(x => (x.index - importedFuncs.length) === constructorIdx)?.name;
|
515
|
-
|
516
|
-
const value = e.getArg(exceptTag, 1);
|
517
|
-
const type = e.getArg(exceptTag, 2);
|
518
|
-
const message = porfToJSValue({ memory, funcs, pages }, value, type);
|
519
|
-
|
520
|
-
// no constructor, just throw message
|
521
|
-
if (!constructorName) throw message;
|
522
|
-
|
523
|
-
const constructor = globalThis[constructorName] ?? eval(`class ${constructorName} extends Error { constructor(message) { super(message); this.name = "${constructorName}"; } }; ${constructorName}`);
|
524
|
-
throw new constructor(message);
|
525
|
-
}
|
526
|
-
|
527
|
-
if (exceptionMode === 'partial') {
|
528
|
-
const exceptId = e.getArg(exceptTag, 0);
|
529
|
-
const exception = exceptions[exceptId];
|
530
|
-
|
531
|
-
const constructorName = exception.constructor;
|
532
|
-
|
533
|
-
const value = e.getArg(exceptTag, 1);
|
534
|
-
const type = e.getArg(exceptTag, 2);
|
535
|
-
const message = porfToJSValue({ memory, funcs, pages }, value, type);
|
536
|
-
|
537
|
-
// no constructor, just throw message
|
538
|
-
if (!constructorName) throw message;
|
539
|
-
|
540
|
-
const constructor = globalThis[constructorName] ?? eval(`class ${constructorName} extends Error { constructor(message) { super(message); this.name = "${constructorName}"; } }; ${constructorName}`);
|
541
|
-
throw new constructor(message);
|
542
|
-
}
|
543
527
|
}
|
544
528
|
|
545
529
|
if (e instanceof WebAssembly.RuntimeError) {
|
package/package.json
CHANGED
package/runner/index.js
CHANGED
package/runner/repl.js
CHANGED
@@ -88,36 +88,31 @@ const run = (source, _context, _filename, callback, run = true) => {
|
|
88
88
|
let toRun = (prev ? (prev + `;\nprint(-0x1337);\n`) : '') + source;
|
89
89
|
|
90
90
|
let shouldPrint = !prev;
|
91
|
-
let exports, pages;
|
92
91
|
try {
|
93
|
-
|
92
|
+
const { exports, pages } = compile(toRun, process.argv.includes('--module') ? [ 'module' ] : [], {}, str => {
|
94
93
|
if (shouldPrint) process.stdout.write(str);
|
95
94
|
if (str === '-4919') shouldPrint = true;
|
96
95
|
});
|
97
|
-
} catch (e) {
|
98
|
-
console.log(e);
|
99
|
-
callback();
|
100
|
-
return;
|
101
|
-
}
|
102
96
|
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
let ret = run ? exports.main() : undefined;
|
109
|
-
let value, type;
|
110
|
-
if (ret?.type != null) {
|
111
|
-
value = ret.value;
|
112
|
-
type = ret.type;
|
113
|
-
ret = ret.js;
|
114
|
-
}
|
97
|
+
if (run && exports.$) {
|
98
|
+
lastMemory = exports.$;
|
99
|
+
lastPages = [...pages.keys()];
|
100
|
+
}
|
115
101
|
|
116
|
-
|
102
|
+
let ret = run ? exports.main() : undefined;
|
103
|
+
let value, type;
|
104
|
+
if (ret?.type != null) {
|
105
|
+
value = ret.value;
|
106
|
+
type = ret.type;
|
107
|
+
ret = ret.js;
|
108
|
+
}
|
117
109
|
|
118
|
-
|
110
|
+
console.log(util.inspect(ret, false, 2, true), (value != null ? `\x1B[34m\x1B[3m(value: ${value}, type: ${TYPE_NAMES[type]})\x1B[0m` : ''));
|
119
111
|
|
120
|
-
|
112
|
+
prev = prev + ';\n' + source.trim();
|
113
|
+
} catch (e) {
|
114
|
+
console.log('Uncaught', e.stack);
|
115
|
+
}
|
121
116
|
|
122
117
|
callback();
|
123
118
|
};
|