binaryen 97.0.0 → 98.0.0-nightly.20201015
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/wasm-opt +1 -1
- package/index.d.ts +6 -4
- package/index.js +216 -208
- package/package-lock.json +1 -1
- package/package.json +1 -1
- package/wasm.js +364 -348
package/index.d.ts
CHANGED
|
@@ -137,18 +137,20 @@ declare module binaryen {
|
|
|
137
137
|
const ExternalGlobal: ExternalKinds;
|
|
138
138
|
const ExternalEvent: ExternalKinds;
|
|
139
139
|
|
|
140
|
-
|
|
140
|
+
enum Features {
|
|
141
141
|
MVP,
|
|
142
142
|
Atomics,
|
|
143
|
-
BulkMemory,
|
|
144
143
|
MutableGlobals,
|
|
145
|
-
|
|
144
|
+
TruncSat,
|
|
145
|
+
SIMD,
|
|
146
|
+
BulkMemory,
|
|
146
147
|
SignExt,
|
|
147
|
-
SIMD128,
|
|
148
148
|
ExceptionHandling,
|
|
149
149
|
TailCall,
|
|
150
150
|
ReferenceTypes,
|
|
151
151
|
Multivalue,
|
|
152
|
+
GC,
|
|
153
|
+
Memory64,
|
|
152
154
|
All
|
|
153
155
|
}
|
|
154
156
|
|