binaryen
Advanced tools
Comparing version 1.37.14 to 1.37.16-nightly.20170715
@@ -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; |
{ | ||
"name": "binaryen", | ||
"description": "JavaScript version of Binaryen, a compiler infrastructure and toolchain library for WebAssembly.", | ||
"version": "1.37.14", | ||
"version": "1.37.16-nightly.20170715", | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2204374
8652
2