diff options
author | Thomas Lively <tlively@google.com> | 2024-04-25 20:48:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-25 20:48:08 -0700 |
commit | 35560732b6a2c6960a6e72ea478bc0238a967c30 (patch) | |
tree | 14f91fbd240f7b7d7e6b942af63b2ee3bcff2034 /src/wasm/wasm-io.cpp | |
parent | c33f126046d6504064d587b8bd7c310a7fdf2087 (diff) | |
download | binaryen-35560732b6a2c6960a6e72ea478bc0238a967c30.tar.gz binaryen-35560732b6a2c6960a6e72ea478bc0238a967c30.tar.bz2 binaryen-35560732b6a2c6960a6e72ea478bc0238a967c30.zip |
[Parser] Do not eagerly lex parens (#6540)
The lexer currently lexes tokens eagerly and stores them in a `Token` variant
ahead of when they are actually requested by the parser. It is wasteful,
however, to classify tokens before they are requested by the parser because it
is likely that the next token will be precisely the kind the parser requests.
The work of checking and rejecting other possible classifications ahead of time
is not useful.
To make incremental progress toward removing `Token` completely, lex parentheses
on demand instead of eagerly.
Diffstat (limited to 'src/wasm/wasm-io.cpp')
-rw-r--r-- | src/wasm/wasm-io.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/wasm/wasm-io.cpp b/src/wasm/wasm-io.cpp index 324637103..a24122bd8 100644 --- a/src/wasm/wasm-io.cpp +++ b/src/wasm/wasm-io.cpp @@ -129,7 +129,6 @@ void ModuleReader::readStdin(Module& wasm, std::string sourceMapFilename) { } else { std::ostringstream s; s.write(input.data(), input.size()); - s << '\0'; std::string input_str = s.str(); readTextData(input_str, wasm, profile); } |