File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -21,16 +21,18 @@ constexpr const char8 global_variables_ecmascript[] =
21
21
u8" parseInt\0 "
22
22
23
23
// ECMA-262 18.3 Constructor Properties of the Global Object
24
- u8" Array \0 "
24
+ u8" AggregateError \0 "
25
25
u8" ArrayBuffer\0 "
26
- u8" BigInt \0 "
26
+ u8" Array \0 "
27
27
u8" BigInt64Array\0 "
28
+ u8" BigInt\0 "
28
29
u8" BigUint64Array\0 "
29
30
u8" Boolean\0 "
30
31
u8" DataView\0 "
31
32
u8" Date\0 "
32
33
u8" Error\0 "
33
34
u8" EvalError\0 "
35
+ u8" FinalizationRegistry\0 "
34
36
u8" Float32Array\0 "
35
37
u8" Float64Array\0 "
36
38
u8" Function\0 "
@@ -57,6 +59,7 @@ constexpr const char8 global_variables_ecmascript[] =
57
59
u8" Uint8Array\0 "
58
60
u8" Uint8ClampedArray\0 "
59
61
u8" WeakMap\0 "
62
+ u8" WeakRef\0 "
60
63
u8" WeakSet\0 "
61
64
62
65
// ECMA-262 18.4 Other Properties of the Global Object
@@ -179,7 +182,7 @@ const global_group global_groups[] = {
179
182
.globals = global_variables_ecmascript,
180
183
.non_writable_globals = global_variables_ecmascript_non_writable,
181
184
.non_shadowable_globals = nullptr ,
182
- .globals_count = 51 ,
185
+ .globals_count = 54 ,
183
186
.non_writable_globals_count = 3 ,
184
187
.non_shadowable_globals_count = 0 ,
185
188
},
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ constexpr const char8 *writable_global_variables[] = {
43
43
u8" parseInt" ,
44
44
45
45
// ECMA-262 18.3 Constructor Properties of the Global Object
46
+ u8" AggregateError" ,
46
47
u8" Array" ,
47
48
u8" ArrayBuffer" ,
48
49
u8" BigInt" ,
@@ -53,6 +54,7 @@ constexpr const char8 *writable_global_variables[] = {
53
54
u8" Date" ,
54
55
u8" Error" ,
55
56
u8" EvalError" ,
57
+ u8" FinalizationRegistry" ,
56
58
u8" Float32Array" ,
57
59
u8" Float64Array" ,
58
60
u8" Function" ,
@@ -79,6 +81,7 @@ constexpr const char8 *writable_global_variables[] = {
79
81
u8" Uint8Array" ,
80
82
u8" Uint8ClampedArray" ,
81
83
u8" WeakMap" ,
84
+ u8" WeakRef" ,
82
85
u8" WeakSet" ,
83
86
84
87
// ECMA-262 18.4 Other Properties of the Global Object
You can’t perform that action at this time.
0 commit comments