diff options
author | Heejin Ahn <aheejin@gmail.com> | 2019-11-13 17:11:01 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-13 17:11:01 -0800 |
commit | 89530ffd9a1b2d0b07bd9f0b91a96665afca3262 (patch) | |
tree | 8d016add52ec7a2b47ac863df7a8b5efb72a5635 | |
parent | 1bb8862042eface18bdd876096c7ee67296061c2 (diff) | |
download | binaryen-89530ffd9a1b2d0b07bd9f0b91a96665afca3262.tar.gz binaryen-89530ffd9a1b2d0b07bd9f0b91a96665afca3262.tar.bz2 binaryen-89530ffd9a1b2d0b07bd9f0b91a96665afca3262.zip |
Add a few more things to the instruction checklist (#2437)
-rw-r--r-- | Contributing.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Contributing.md b/Contributing.md index 74039e858..626efc3ad 100644 --- a/Contributing.md +++ b/Contributing.md @@ -19,13 +19,14 @@ Use this handy checklist to make sure your new instructions are fully supported: - [ ] Effects handled in src/ir/effects.h - [ ] Precomputing handled in src/passes/Precompute.cpp - [ ] Hashing and comparing in src/ir/ExpressionAnalyzer.cpp - - [ ] Parsing added in scripts/gen-s-parser.py and src/wasm/wasm-s-parser.cpp + - [ ] Parsing added in scripts/gen-s-parser.py, src/wasm-s-parser.h and src/wasm/wasm-s-parser.cpp - [ ] Printing added in src/passes/Print.cpp - [ ] Decoding added in src/wasm-binary.h and src/wasm/wasm-binary.cpp - [ ] Binary writing added in src/wasm-stack.h and src/wasm/wasm-stack.cpp + - [ ] Support added in various classes inheriting OverriddenVisitor (and possibly other non-OverriddenVisitor classes as necessary) - [ ] Support added to src/tools/fuzzing.h - [ ] C API support added in src/binaryen-c.h and src/binaryen-c.cpp - - [ ] JS API support added in build-js.sh and src/js/binaryen.js-post.js + - [ ] JS API support added in src/js/binaryen.js-post.js - [ ] C API tested in test/example/c-api-kitchen-sink.c - [ ] JS API tested in test/binaryen.js/kitchen-sink.js - [ ] Tests added in test/spec |