diff options
author | Derek Schuff <dschuff@chromium.org> | 2016-11-21 15:17:17 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-21 15:17:17 -0800 |
commit | 5a1add152460ef952dd94e2f5172fa440af6f3c6 (patch) | |
tree | b470cbae75af0b37f244cfe54ab9b717af65d9e9 /README.md | |
parent | 03b08e00e2fbb7f19f97401b52ccfa952d68a7b2 (diff) | |
download | wabt-5a1add152460ef952dd94e2f5172fa440af6f3c6.tar.gz wabt-5a1add152460ef952dd94e2f5172fa440af6f3c6.tar.bz2 wabt-5a1add152460ef952dd94e2f5172fa440af6f3c6.zip |
Update README.md (#223)
Add windows build status, and document wast-desugar tool.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -[](https://travis-ci.org/WebAssembly/wabt) +[](https://travis-ci.org/WebAssembly/wabt) [](https://ci.appveyor.com/project/WebAssembly/wabt/branch/master) # WABT: The WebAssembly Binary Toolkit @@ -7,6 +7,7 @@ WABT (we pronounce it "wabbit") is suite of tools for WebAssembly, including: - **wast2wasm**: translate from [s-expressions](https://github.com/WebAssembly/spec) to the WebAssembly [binary-encoding](https://github.com/WebAssembly/design/blob/master/BinaryEncoding.md) - **wasm2wast**: the inverse of wast2wasm, translate from the binary encoding back to an s-expression source file (also known as a .wast) - **wasm-interp**: decode and run a WebAssembly binary file using a stack-based interpreter + - **wast-desugar**: parse .wast text form as supported by the spec interpreter (s-expressions, flat syntax, or mixed) and print "canonical" flat format These tools are intended for use in (or for development of) toolchains or other systems that want to manipulate WebAssembly files. Unlike the WebAssembly spec |