diff options
author | Alon Zakai <azakai@google.com> | 2021-03-01 20:48:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 12:48:30 -0800 |
commit | d137e7f8fb5ae943b115885f256ad57bfae67f6b (patch) | |
tree | f41ea4ba34bbc7aad585a96388ac322fc27f4c95 /src/wasm/CMakeLists.txt | |
parent | 575aec37f3fe4793b1d16275426c6369864e1540 (diff) | |
download | binaryen-d137e7f8fb5ae943b115885f256ad57bfae67f6b.tar.gz binaryen-d137e7f8fb5ae943b115885f256ad57bfae67f6b.tar.bz2 binaryen-d137e7f8fb5ae943b115885f256ad57bfae67f6b.zip |
Refactor code out of parsing.h NFC. (#3635)
Most of it goes in a new parsing.cpp. One method was only used in
the s-expression's parser, and has been moved there.
Diffstat (limited to 'src/wasm/CMakeLists.txt')
-rw-r--r-- | src/wasm/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wasm/CMakeLists.txt b/src/wasm/CMakeLists.txt index d24618c63..5547e0741 100644 --- a/src/wasm/CMakeLists.txt +++ b/src/wasm/CMakeLists.txt @@ -1,6 +1,7 @@ file(GLOB wasm_HEADERS ../*.h) set(wasm_SOURCES literal.cpp + parsing.cpp wasm.cpp wasm-binary.cpp wasm-debug.cpp |