New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

walt-compiler

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

walt-compiler - npm Package Compare versions

Comparing version 0.9.3 to 0.9.4

6

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc