forked from AssemblyScript/assemblyscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeatures.json
More file actions
41 lines (41 loc) · 668 Bytes
/
features.json
File metadata and controls
41 lines (41 loc) · 668 Bytes
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
{
"mutable-globals": {
},
"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-anyref"
]
},
"bigint-integration": {
"v8_flags": [
"--experimental-wasm-bigint"
]
},
"exception-handling": {
"asc_flags": [
"--enable exception-handling"
],
"v8_flags": [
"--experimental-wasm-eh"
]
}
}