-
Notifications
You must be signed in to change notification settings - Fork 30.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: remove harmony flags #22285
test: remove harmony flags #22285
Conversation
@@ -1,7 +1,5 @@ | |||
'use strict'; | |||
|
|||
// Flags: --harmony-bigint |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this entire file should be put into test-util-inspect.js
Trivial enough to fast-track, I think... with or without moving into Please 👍 to approve fast-track. |
The flag |
v8 6.8 supports all removed flags. For example for BigInt.
@@ -1,6 +1,6 @@ | |||
'use strict'; | |||
|
|||
// Flags: --experimental-vm-modules --harmony-import-meta |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unrelated changes?
@@ -1,6 +1,6 @@ | |||
'use strict'; | |||
|
|||
// Flags: --experimental-vm-modules --experimental-modules --harmony-dynamic-import |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unrelated changes?
3672def
to
0450484
Compare
I went ahead and removed all harmony flags that v8 supports out of the box and updated the commit message accordingly. |
Resume build: https://ci.nodejs.org/job/node-test-pull-request/16441/ ✔️ |
v8 6.8 supports all removed flags. For example for BigInt. PR-URL: nodejs#22285 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Landed in 525544b 🎉 |
Edit: the conflict was related to a semver-major change and trivial to fix. |
v8 6.8 supports all removed flags. For example for BigInt. PR-URL: #22285 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
v8 6.8 supports all removed flags. For example for BigInt. PR-URL: #22285 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
v8 supports BigInt and this can now be removed.
Update: I went ahead and removed all harmony flags where v8 supports it out of the box.
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes