Skip to content

Commit 0450484

Browse files
committed
test: remove harmony flags
v8 6.8 supports all removed flags. For example for BigInt.
1 parent 1f32cca commit 0450484

File tree

6 files changed

+5
-17
lines changed

6 files changed

+5
-17
lines changed

β€Ždoc/api/util.mdβ€Ž

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1021,10 +1021,7 @@ added: v10.0.0
10211021
* `value` {any}
10221022
* Returns: {boolean}
10231023

1024-
Returns `true` if the value is a `BigInt64Array` instance. The
1025-
`--harmony-bigint` command line flag is required in order to use the
1026-
`BigInt64Array` type, but it is not required in order to use
1027-
`isBigInt64Array()`.
1024+
Returns `true` if the value is a `BigInt64Array` instance.
10281025

10291026
For example:
10301027

@@ -1041,10 +1038,7 @@ added: v10.0.0
10411038
* `value` {any}
10421039
* Returns: {boolean}
10431040

1044-
Returns `true` if the value is a `BigUint64Array` instance. The
1045-
`--harmony-bigint` command line flag is required in order to use the
1046-
`BigUint64Array` type, but it is not required in order to use
1047-
`isBigUint64Array()`.
1041+
Returns `true` if the value is a `BigUint64Array` instance.
10481042

10491043
For example:
10501044

β€Žsrc/node.ccβ€Ž

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2958,10 +2958,6 @@ static void ParseArgs(int* argc,
29582958
config_preserve_symlinks_main = true;
29592959
} else if (strcmp(arg, "--experimental-modules") == 0) {
29602960
config_experimental_modules = true;
2961-
new_v8_argv[new_v8_argc] = "--harmony-dynamic-import";
2962-
new_v8_argc += 1;
2963-
new_v8_argv[new_v8_argc] = "--harmony-import-meta";
2964-
new_v8_argc += 1;
29652961
} else if (strcmp(arg, "--experimental-vm-modules") == 0) {
29662962
config_experimental_vm_modules = true;
29672963
} else if (strcmp(arg, "--experimental-worker") == 0) {

β€Žtest/parallel/test-util-inspect-bigint.jsβ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
'use strict';
22

3-
// Flags: --harmony-bigint
4-
53
require('../common');
64
const assert = require('assert');
75

β€Žtest/parallel/test-util-types.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Flags: --harmony-bigint --experimental-vm-modules
1+
// Flags: --experimental-vm-modules
22
'use strict';
33
require('../common');
44
const fixtures = require('../common/fixtures');

β€Žtest/parallel/test-vm-module-dynamic-import.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
// Flags: --experimental-vm-modules --experimental-modules --harmony-dynamic-import
3+
// Flags: --experimental-vm-modules --experimental-modules
44

55
const common = require('../common');
66

β€Žtest/parallel/test-vm-module-import-meta.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict';
22

3-
// Flags: --experimental-vm-modules --harmony-import-meta
3+
// Flags: --experimental-vm-modules
44

55
const common = require('../common');
66
const assert = require('assert');

0 commit comments

Comments
Β (0)