You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ The main focus is on user-observable behavior of the engine.
12
12
* Added support for `dayPeriod` and `fractionalSecondDigits` options of `Intl.DateTimeFormat`.
13
13
* Changed foreign hash map access using `map[key]` syntax to convert the key to a string or symbol.
14
14
* Implemented `Object.hasOwn` ([Accessible Object.hasOwnProperty](https://github.com/tc39/proposal-accessible-object-hasownproperty) proposal). It is available in ECMAScript 2022 (`--js.ecmascript-version=2022`).
15
+
* Implemented [class static initialization blocks](https://github.com/tc39/proposal-class-static-block) proposal. It is available in ECMAScript 2022 (`--js.ecmascript-version=2022`).
15
16
* Added experimental Polyglot `Context` option `--js.esm-eval-returns-exports`. When enabled, `eval()` of an ES module will return a Polyglot `Value` containing the ES module exported namespace object. The option is disabled by default.
Copy file name to clipboardExpand all lines: graal-js/src/com.oracle.truffle.js.test.external/src/com/oracle/truffle/js/test/external/test262/Test262Runnable.java
+2-1
Original file line number
Diff line number
Diff line change
@@ -182,6 +182,7 @@ public class Test262Runnable extends TestRunnable {
182
182
"class-fields-private",
183
183
"class-fields-public",
184
184
"class-methods-private",
185
+
"class-static-block",
185
186
"class-static-fields-private",
186
187
"class-static-fields-public",
187
188
"class-static-methods-private",
@@ -242,7 +243,6 @@ public class Test262Runnable extends TestRunnable {
242
243
"arbitrary-module-namespace-names",
243
244
"array-find-from-last",
244
245
"class-fields-private-in",
245
-
"class-static-block",
246
246
"resizable-arraybuffer",
247
247
"tail-call-optimization",
248
248
}));
@@ -255,6 +255,7 @@ public class Test262Runnable extends TestRunnable {
Copy file name to clipboardExpand all lines: graal-js/src/com.oracle.truffle.js.test.external/src/com/oracle/truffle/js/test/external/testv8/TestV8Runnable.java
+1
Original file line number
Diff line number
Diff line change
@@ -100,6 +100,7 @@ public class TestV8Runnable extends TestRunnable {
0 commit comments