walt-compiler
Advanced tools
Comparing version 0.9.3 to 0.9.4
{ | ||
"name": "walt-compiler", | ||
"version": "0.9.3", | ||
"version": "0.9.4", | ||
"description": "Alternative syntax for WebAssembly text format", | ||
@@ -43,4 +43,4 @@ "main": "dist/walt.js", | ||
"invariant": "2.2.2", | ||
"walt-parser-tools": "^0.1.1", | ||
"walt-syntax": "^0.1.1", | ||
"walt-parser-tools": "^0.1.2", | ||
"walt-syntax": "^0.1.2", | ||
"wasm-types": "1.0.3" | ||
@@ -47,0 +47,0 @@ }, |
// @flow | ||
import { u8, f32, f64 } from 'wasm-types'; | ||
import { I32, F64, F32, getTypeString } from '../value_type'; | ||
import { varuint32, varint32 } from '../numbers'; | ||
import { I32, I64, F64, F32, getTypeString } from '../value_type'; | ||
import { varuint32, varint32, varint64 } from '../numbers'; | ||
import opcode from '../opcode'; | ||
@@ -25,2 +25,5 @@ import OutputStream from '../../utils/output-stream'; | ||
break; | ||
case I64: | ||
payload.push(u8, opcode.i64Const.code, opcode.i64Const.text); | ||
payload.push(varint64, init, `value (${init})`); | ||
} | ||
@@ -27,0 +30,0 @@ |
@@ -33,3 +33,3 @@ // @flow | ||
}; | ||
export const VERSION = '0.9.3'; | ||
export const VERSION = '0.9.4'; | ||
@@ -36,0 +36,0 @@ // Used for deugging purposes |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
905754
13926
Updatedwalt-parser-tools@^0.1.2
Updatedwalt-syntax@^0.1.2