forked from AssemblyScript/assemblyscript
-
Notifications
You must be signed in to change notification settings - Fork 2
/
features.json
56 lines (56 loc) · 944 Bytes
/
features.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"mutable-globals": {
},
"nontrapping-f2i": {
"asc_flags": [
"--enable nontrapping-f2i"
]
},
"simd": {
"asc_flags": [
"--enable simd"
],
"v8_flags": [
"--experimental-wasm-simd"
]
},
"threads": {
"asc_flags": [
"--enable threads"
],
"v8_flags": [
"--experimental-wasm-threads"
]
},
"reference-types": {
"asc_flags": [
"--enable reference-types"
],
"v8_flags": [
"--experimental-wasm-reftypes"
]
},
"gc": {
"asc_flags": [
"--enable reference-types",
"--enable gc"
],
"v8_flags": [
"--experimental-wasm-reftypes",
"--experimental-wasm-gc"
]
},
"bigint-integration": {
"v8_flags": [
"--experimental-wasm-bigint"
]
},
"exception-handling": {
"asc_flags": [
"--enable exception-handling"
],
"v8_flags": [
"--experimental-wasm-eh"
]
}
}