Skip to content

Commit ca8f3ef

Browse files
cjihrigtargos
authored andcommitted
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. PR-URL: #35415 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
1 parent 94dd7b9 commit ca8f3ef

6 files changed

+4
-7
lines changed

doc/api/wasi.md

+2-2
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

+1-1
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

-1
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

+1-1
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

-1
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

-1
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)