summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2015-11-23 16:34:53 -0800
committerAlon Zakai <alonzakai@gmail.com>2015-11-23 16:34:53 -0800
commite97c5c94c14e83ff7535bafb80a9ae0bae332030 (patch)
tree71a51b6f703237ac983288c64da463125b1773c8
parentf904394c1a9eff5aa8607e7409aebfd8e3ad1352 (diff)
downloadbinaryen-e97c5c94c14e83ff7535bafb80a9ae0bae332030.tar.gz
binaryen-e97c5c94c14e83ff7535bafb80a9ae0bae332030.tar.bz2
binaryen-e97c5c94c14e83ff7535bafb80a9ae0bae332030.zip
mention passes in binaryen-shell description
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index e4f33ba8f..9f2f04775 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ To provide those capabilities, Binaryen has a simple and flexible API for **repr
This repository contains code that builds the following tools in `bin/`:
- * **binaryen-shell**: A shell that can load and interpret WebAssembly code in S-Expression format, and can run the spec test suite.
+ * **binaryen-shell**: A shell that can load and interpret WebAssembly code in S-Expression format, as well as run transformation passes on it. It can also run the spec test suite.
* **asm2wasm**: An asm.js-to-WebAssembly compiler, built on Emscripten's asm optimizer infrastructure. That can directly compile asm.js to WebAssembly.
* **wasm.js**: A polyfill for WebAssembly support in browsers. It receives an asm.js module, parses it using an internal build of `asm2wasm`, and runs the resulting WebAssembly in a WebAssembly interpreter. It provides what looks like an asm.js module, while running WebAssembly inside.