@webassemblyjs/ast
Advanced tools
Comparing version
@@ -42,2 +42,3 @@ "use strict"; | ||
exports.callIndirectInstruction = callIndirectInstruction; | ||
exports.callIndirectInstructionIndex = callIndirectInstructionIndex; | ||
exports.start = start; | ||
@@ -541,2 +542,9 @@ exports.elem = elem; | ||
function callIndirectInstructionIndex(index) { | ||
return { | ||
type: "CallIndirectInstruction", | ||
index: index | ||
}; | ||
} | ||
function start(index) { | ||
@@ -543,0 +551,0 @@ return { |
{ | ||
"name": "@webassemblyjs/ast", | ||
"version": "1.1.2-y.0", | ||
"version": "1.1.2-y.1", | ||
"description": "AST utils for webassemblyjs", | ||
@@ -14,5 +14,5 @@ "keywords": [ | ||
"dependencies": { | ||
"@webassemblyjs/wast-parser": "1.1.2-y.0", | ||
"@webassemblyjs/wast-parser": "1.1.2-y.1", | ||
"webassembly-floating-point-hex-parser": "0.1.2", | ||
"webassemblyjs": "1.1.2-y.0" | ||
"webassemblyjs": "1.1.2-y.1" | ||
}, | ||
@@ -19,0 +19,0 @@ "repository": { |
@@ -538,2 +538,11 @@ // @flow | ||
export function callIndirectInstructionIndex( | ||
index: Index | ||
): CallIndirectInstruction { | ||
return { | ||
type: "CallIndirectInstruction", | ||
index | ||
}; | ||
} | ||
export function start(index: Index): Start { | ||
@@ -540,0 +549,0 @@ return { |
59005
0.59%2048
0.74%+ Added
+ Added
+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed
- Removed
Updated