diff options
-rw-r--r-- | src/wast-lexer.cc | 2 | ||||
-rw-r--r-- | test/regress/bad-annotation.txt | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/src/wast-lexer.cc b/src/wast-lexer.cc index cc3d2751..dbdee9aa 100644 --- a/src/wast-lexer.cc +++ b/src/wast-lexer.cc @@ -70,7 +70,7 @@ Token WastLexer::GetToken() { } return BareToken(TokenType::Eof); } else if (MatchString("(@")) { - ReadReservedChars(); + GetIdToken(); // offset=2 to skip the "(@" prefix return TextToken(TokenType::LparAnn, 2); } else { diff --git a/test/regress/bad-annotation.txt b/test/regress/bad-annotation.txt new file mode 100644 index 00000000..c3a3b0bf --- /dev/null +++ b/test/regress/bad-annotation.txt @@ -0,0 +1,12 @@ +;;; TOOL: wat2wasm +;;; ERROR: 1 +(@"annotation + +(;; STDERR ;;; +out/test/regress/bad-annotation.txt:3:1: error: annotations not enabled: "annotation +(@"annotation +^^^^^^^^^^^^^ +out/test/regress/bad-annotation.txt:3:1: error: unexpected token "Invalid", expected a module field or a module. +(@"annotation +^^^^^^^^^^^^^ +;;; STDERR ;;) |