summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2017-05-04 16:31:46 -0700
committerGitHub <noreply@github.com>2017-05-04 16:31:46 -0700
commit0cc349dae28571450a4b7a70606a68fd54403233 (patch)
treeef49f60d0e3839e8158a3603d52e750e69da5ebe /README.md
parent08cc271f600bafb7dbf42b519ba48c539cd3130e (diff)
downloadwabt-0cc349dae28571450a4b7a70606a68fd54403233.tar.gz
wabt-0cc349dae28571450a4b7a70606a68fd54403233.tar.bz2
wabt-0cc349dae28571450a4b7a70606a68fd54403233.zip
Rename all occurences of AST (#413)
* ast.{cc,h} => ir.{cc,h} * binary-reader-ast.{cc,h} => binary-reader-ir.{cc,h} * ast-writer.{cc,h} => wat-writer.{cc,h} Everything else changes ast => wast. When deciding between wast vs. wat, the wat format should only allow for a single module, without assertions.
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 64f75209..127b33fc 100644
--- a/README.md
+++ b/README.md
@@ -73,11 +73,11 @@ $ cmake ..
...
```
-If you make changes to `src/ast-parser.y`, you'll need to install Bison.
+If you make changes to `src/wast-parser.y`, you'll need to install Bison.
Before you upload your PR, please run `make update-bison` to update the
prebuilt C sources in `src/prebuilt/`.
-If you make changes to `src/ast-lexer.c`, you'll need to install
+If you make changes to `src/wast-lexer.c`, you'll need to install
[re2c](http://re2c.org). Before you upload your PR, please run `make
update-re2c` to update the prebuilt C sources in `src/prebuilt/`.