Skip to content

Commit dbff5bc

Browse files
committed
wasi: drop --experimental-wasm-bigint requirement
After the V8 8.5 update, the WASI APIs no longer require the use of --experimental-wasm-bigint. This commit removes its use.
1 parent eba2ae4 commit dbff5bc

6 files changed

Lines changed: 4 additions & 7 deletions

File tree

doc/api/wasi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ Use [wabt](https://github.com/WebAssembly/wabt) to compile `.wat` to `.wasm`
7070
$ wat2wasm demo.wat
7171
```
7272

73-
The `--experimental-wasi-unstable-preview1` and `--experimental-wasm-bigint`
74-
CLI arguments are needed for this example to run.
73+
The `--experimental-wasi-unstable-preview1` CLI argument is needed for this
74+
example to run.
7575

7676
## Class: `WASI`
7777
<!-- YAML

test/wasi/test-return-on-exit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Flags: --experimental-wasi-unstable-preview1 --experimental-wasm-bigint
1+
// Flags: --experimental-wasi-unstable-preview1
22
'use strict';
33
const common = require('../common');
44
const assert = require('assert');

test/wasi/test-wasi-not-started.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ if (process.argv[2] === 'wasi-child') {
2929

3030
const child = cp.spawnSync(process.execPath, [
3131
'--experimental-wasi-unstable-preview1',
32-
'--experimental-wasm-bigint',
3332
__filename,
3433
'wasi-child'
3534
], {

test/wasi/test-wasi-stdio.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Flags: --experimental-wasi-unstable-preview1 --experimental-wasm-bigint
1+
// Flags: --experimental-wasi-unstable-preview1
22
'use strict';
33
const common = require('../common');
44
const tmpdir = require('../common/tmpdir');

test/wasi/test-wasi-symlinks.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ if (process.argv[2] === 'wasi-child') {
6262
const opts = { env: { ...process.env, NODE_DEBUG_NATIVE: 'wasi' } };
6363
const child = cp.spawnSync(process.execPath, [
6464
'--experimental-wasi-unstable-preview1',
65-
'--experimental-wasm-bigint',
6665
__filename,
6766
'wasi-child',
6867
options.test,

test/wasi/test-wasi.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ if (process.argv[2] === 'wasi-child') {
5151

5252
const child = cp.spawnSync(process.execPath, [
5353
'--experimental-wasi-unstable-preview1',
54-
'--experimental-wasm-bigint',
5554
__filename,
5655
'wasi-child',
5756
options.test

0 commit comments

Comments
 (0)