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
@@ -4,6 +4,7 @@ This changelog summarizes major changes between GraalVM versions of the GraalVM
4
4
The main focus is on user-observable behavior of the engine.
5
5
6
6
## Version 21.3.0
7
+
* Implemented the [Private Fields in `in`](https://tc39.es/proposal-private-fields-in-in) proposal. It is available behind the experimental option `--js.private-fields-in`.
7
8
* Implemented the [JavaScript BigInt to WebAssembly i64 integration](https://github.com/WebAssembly/JS-BigInt-integration) proposal. It can be disabled using the `--js.wasm-bigint=false` option.
8
9
* Updated Node.js to version 14.17.6.
9
10
* Implemented the [Error Cause](https://github.com/tc39/proposal-error-cause) proposal. It is available behind the experimental option `--js.error-cause`.
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
@@ -180,6 +180,7 @@ public class Test262Runnable extends TestRunnable {
180
180
"caller",
181
181
"class",
182
182
"class-fields-private",
183
+
"class-fields-private-in",
183
184
"class-fields-public",
184
185
"class-methods-private",
185
186
"class-static-block",
@@ -242,7 +243,6 @@ public class Test262Runnable extends TestRunnable {
242
243
"Temporal",
243
244
"arbitrary-module-namespace-names",
244
245
"array-find-from-last",
245
-
"class-fields-private-in",
246
246
"resizable-arraybuffer",
247
247
"tail-call-optimization",
248
248
}));
@@ -252,6 +252,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
@@ -102,6 +102,7 @@ public class TestV8Runnable extends TestRunnable {
0 commit comments