diff options
author | Thomas Lively <tlively@google.com> | 2024-02-22 09:09:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-22 09:09:19 -0800 |
commit | f9a49faa33f3a61bd27da8227eeac20b74f649c3 (patch) | |
tree | 83d6c9ae4748200cebfe7c12d5c8fea725aa8f27 /src/parser/context-decls.cpp | |
parent | e4d2e7c08e758c513eb2a8b193a5bf4df589c947 (diff) | |
download | binaryen-f9a49faa33f3a61bd27da8227eeac20b74f649c3.tar.gz binaryen-f9a49faa33f3a61bd27da8227eeac20b74f649c3.tar.bz2 binaryen-f9a49faa33f3a61bd27da8227eeac20b74f649c3.zip |
[Parser][NFC] Remove parser/input.h (#6332)
Remove the layer of abstraction sitting between the parser and the lexer now
that the lexer has an interface the parser can use directly.
Diffstat (limited to 'src/parser/context-decls.cpp')
-rw-r--r-- | src/parser/context-decls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/context-decls.cpp b/src/parser/context-decls.cpp index 7d2d8a0a9..d9279a0b6 100644 --- a/src/parser/context-decls.cpp +++ b/src/parser/context-decls.cpp @@ -27,7 +27,7 @@ void applyImportNames(Importable& item, ImportNames* names) { } } -Result<> addExports(ParseInput& in, +Result<> addExports(Lexer& in, Module& wasm, const Named* item, const std::vector<Name>& exports, |