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
@@ -23,6 +23,7 @@ See [release calendar](https://www.graalvm.org/release-calendar/) for release da
23
23
* Implemented the `TextDecoder` and `TextEncoder` APIs of the [WHATWG Encoding Standard](https://encoding.spec.whatwg.org/). They are available behind the experimental option (`--js.text-encoding`).
24
24
* Implemented the [`RegExp.escape`](https://github.com/tc39/proposal-regex-escaping) proposal. It is available in ECMAScript staging mode (`--js.ecmascript-version=staging`).
25
25
* Implemented the [Regular Expression Pattern Modifiers](https://github.com/tc39/proposal-regexp-modifiers) proposal.
26
+
* Implemented the [Iterator Sequencing](https://github.com/tc39/proposal-iterator-sequencing) proposal. It is available in ECMAScript staging mode (`--js.ecmascript-version=staging`).
26
27
27
28
## Version 24.1.0
28
29
* ECMAScript 2024 mode/features enabled 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
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved.
2
+
* Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* The Universal Permissive License (UPL), Version 1.0
@@ -207,6 +207,7 @@ public class Test262Runnable extends TestRunnable {
207
207
"async-functions",
208
208
"async-iteration",
209
209
"caller",
210
+
"canonical-tz",
210
211
"change-array-by-copy",
211
212
"class",
212
213
"class-fields-private",
@@ -241,6 +242,7 @@ public class Test262Runnable extends TestRunnable {
241
242
"import.meta",
242
243
"intl-normative-optional",
243
244
"iterator-helpers",
245
+
"iterator-sequencing",
244
246
"json-modules",
245
247
"json-parse-with-source",
246
248
"json-superset",
@@ -296,6 +298,7 @@ public class Test262Runnable extends TestRunnable {
0 commit comments