diff options
author | Thomas Lively <tlively@google.com> | 2024-05-29 11:32:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 11:32:26 -0700 |
commit | d844d2e77b402d562ade8cf8fd96759b587bf09d (patch) | |
tree | 0bb0dedf7efb8b90e43340292a2c8f4f7fb063a0 /Contributing.md | |
parent | f622b8e47c69dcbdf2666c795fb3658dc4da52af (diff) | |
download | binaryen-d844d2e77b402d562ade8cf8fd96759b587bf09d.tar.gz binaryen-d844d2e77b402d562ade8cf8fd96759b587bf09d.tar.bz2 binaryen-d844d2e77b402d562ade8cf8fd96759b587bf09d.zip |
Remove obsolete parser code (#6607)
Remove `SExpressionParser`, `SExpressionWasmBuilder`, and `cashew::Parser`.
Simplify gen-s-parser.py. Remove the --new-wat-parser and
--deprecated-wat-parser flags.
Diffstat (limited to 'Contributing.md')
-rw-r--r-- | Contributing.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Contributing.md b/Contributing.md index 6a738f9a3..98f9c7bed 100644 --- a/Contributing.md +++ b/Contributing.md @@ -18,8 +18,7 @@ Use this handy checklist to make sure your new instructions are fully supported: - [ ] Interpretation added to src/wasm-interpreter.h - [ ] 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, src/wasm-s-parser.h and src/wasm/wasm-s-parser.cpp + - [ ] Parsing added in scripts/gen-s-parser.py, src/parser/parsers.h, src/parser/contexts.h, src/wasm-ir-builder.h, and src/wasm/wasm-ir-builder.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 @@ -30,4 +29,4 @@ Use this handy checklist to make sure your new instructions are fully supported: - [ ] 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 - - [ ] Tests added in top-level test/ + - [ ] Tests added in test/lit |