Socket
Socket
Sign inDemoInstall

binaryen

Package Overview
Dependencies
Maintainers
2
Versions
1532
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

binaryen - npm Package Compare versions

Comparing version 1.37.14-nightly.20170628 to 1.37.14-nightly.20170706

1

index.d.ts

@@ -227,2 +227,3 @@ declare module binaryen {

call(name: string, operands: Expression[], type: Type): Expression;
callImport(name: string, operands: Expression[], type: Type): Expression;
callIndirect(target: I32Expression, operands: Expression[], type: Type): Expression;

@@ -229,0 +230,0 @@ getLocal(index: number, type: Type): Expression;

2

package.json
{
"name": "binaryen",
"description": "JavaScript version of Binaryen, a compiler infrastructure and toolchain library for WebAssembly.",
"version": "1.37.14-nightly.20170628",
"version": "1.37.14-nightly.20170706",
"license": "Apache-2.0",

@@ -6,0 +6,0 @@ "repository": {

@@ -6,3 +6,3 @@ binaryen.js

[![Build Status](https://travis-ci.org/dcodeIO/binaryen.js.svg?branch=master)](https://travis-ci.org/dcodeIO/binaryen.js)
[![npm](https://img.shields.io/npm/v/binaryen.svg)](https://www.npmjs.com/package/binaryen) [![npm (tag)](https://img.shields.io/npm/v/binaryen/nightly.svg)](https://www.npmjs.com/package/binaryen) [![Build Status](https://travis-ci.org/dcodeIO/binaryen.js.svg?branch=master)](https://travis-ci.org/dcodeIO/binaryen.js)

@@ -245,3 +245,3 @@ Usage

* `call(name, operands, type)`: Create a call, to a function name, with operands, and having a specific return type (note that we must specify the return type here as we may not have created the function being called yet, and we may want to optimize this function before we do so, so the API requires that each function be independent of the others, which means that we can't depend on the definition of another function).
* `call(name, operands, type)`: Similar to `call`, but calls an imported function.
* `callImport(name, operands, type)`: Similar to `call`, but calls an imported function.
* `callIndirect(target, operands, type)`: Similar to `call`, but calls indirectly, i.e., via a function pointer, so an expression replaces the name as the called value.

@@ -248,0 +248,0 @@ * `getLocal(index, type)`: Create a get_local, for the local at the specified index, and having a specific type (the type is required for the same reasons as in `call`).

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