diff options
author | jgravelle-google <jgravelle@google.com> | 2017-03-10 13:10:17 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-10 13:10:17 -0800 |
commit | 62e9f5d881e2d7e7f9f5da845ed2dbc176bc0bc5 (patch) | |
tree | 9ed29d721cafc8c3c70046ea4e072c7483cd66bd /src/parsing.h | |
parent | d54c03e99f9a43bde1b6cec94f05b0af412d0e4f (diff) | |
download | binaryen-62e9f5d881e2d7e7f9f5da845ed2dbc176bc0bc5.tar.gz binaryen-62e9f5d881e2d7e7f9f5da845ed2dbc176bc0bc5.tar.bz2 binaryen-62e9f5d881e2d7e7f9f5da845ed2dbc176bc0bc5.zip |
Wasm h to cpp (#926)
* Move WasmType function implementations to wasm.cpp
* Move Literal methods to wasm.cpp
* Reorder wasm.cpp shared constants back to top
* Move expression functions to wasm.cpp
* Finish moving things to wasm.cpp
* Split out Literal into its own .h/.cpp. Also factor out common wasm-type module
* Remove unneeded/transitive includes from wasm.h
* Add comment to try/check methods
* Rename tryX/checkX methods to getXOrNull
* Add missing include that should fix appveyor build breakage
* More appveyor
Diffstat (limited to 'src/parsing.h')
-rw-r--r-- | src/parsing.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parsing.h b/src/parsing.h index 1485dc6eb..d4df3c1c2 100644 --- a/src/parsing.h +++ b/src/parsing.h @@ -17,6 +17,7 @@ #ifndef wasm_parsing_h #define wasm_parsing_h +#include <cmath> #include <ostream> #include <sstream> #include <string> @@ -24,6 +25,7 @@ #include "shared-constants.h" #include "asmjs/shared-constants.h" #include "mixed_arena.h" +#include "support/colors.h" #include "support/utilities.h" #include "wasm.h" #include "wasm-printing.h" |