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
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ See [release calendar](https://www.graalvm.org/release-calendar/) for release da
9
9
* Implemented the [Make eval-introduced global vars redeclarable](https://github.com/tc39/proposal-redeclarable-global-eval-vars) proposal.
10
10
* Implemented the [Float16Array](https://github.com/tc39/proposal-float16array) proposal. It is available in ECMAScript staging mode (`--js.ecmascript-version=staging`).
11
11
* Implemented the [Array.fromAsync](https://github.com/tc39/proposal-array-from-async) proposal. It is available in ECMAScript staging mode (`--js.ecmascript-version=staging`).
12
+
* Implemented the [Resizable and Growable ArrayBuffers](https://github.com/tc39/proposal-resizablearraybuffer) proposal. It is available in ECMAScript staging mode (`--js.ecmascript-version=staging`).
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-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -250,6 +250,7 @@ public class Test262Runnable extends TestRunnable {
250
250
"regexp-named-groups",
251
251
"regexp-unicode-property-escapes",
252
252
"regexp-v-flag",
253
+
"resizable-arraybuffer",
253
254
"rest-parameters",
254
255
"set-methods",
255
256
"string-trimming",
@@ -265,7 +266,6 @@ 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-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,6 @@ public class TestV8Runnable extends TestRunnable {
93
93
"--experimental-wasm-stringref",
94
94
"--experimental-wasm-type-reflection",
95
95
"--expose-fast-api",
96
-
"--harmony-rab-gsab",
97
96
"--harmony-struct",
98
97
"--wasm-test-streaming"
99
98
});
@@ -103,6 +102,7 @@ public class TestV8Runnable extends TestRunnable {
0 commit comments