summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKeith Winstein <keithw@cs.stanford.edu>2022-10-03 10:40:39 -0700
committerGitHub <noreply@github.com>2022-10-03 10:40:39 -0700
commita2c0d17402252fb681555da1cba7ab1b6cfe5e10 (patch)
treec5324b7a93d1c7b8b15d4de5fc58e6483c7800a4 /include
parentcbc56844fe4e3452a4ba53c4b25247a9b62e0e3d (diff)
downloadwabt-a2c0d17402252fb681555da1cba7ab1b6cfe5e10.tar.gz
wabt-a2c0d17402252fb681555da1cba7ab1b6cfe5e10.tar.bz2
wabt-a2c0d17402252fb681555da1cba7ab1b6cfe5e10.zip
Add tokens test + adjust Wast lexing to match updated spec (#2001)
* Update testsuite (adding new tokens.txt test) * Adjust Wast lexing to match updated spec (WebAssembly/spec#1499)
Diffstat (limited to 'include')
-rw-r--r--include/wabt/wast-lexer.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/include/wabt/wast-lexer.h b/include/wabt/wast-lexer.h
index 385032ca..3c64fea9 100644
--- a/include/wabt/wast-lexer.h
+++ b/include/wabt/wast-lexer.h
@@ -54,7 +54,7 @@ class WastLexer {
private:
static const int kEof = -1;
- enum class CharClass { Reserved = 1, Keyword = 2, HexDigit = 4, Digit = 8 };
+ enum class CharClass { IdChar = 1, Keyword = 2, HexDigit = 4, Digit = 8 };
Location GetLocation();
std::string_view GetText(size_t offset = 0);
@@ -76,12 +76,16 @@ class WastLexer {
static bool IsDigit(int c) { return IsCharClass(c, CharClass::Digit); }
static bool IsHexDigit(int c) { return IsCharClass(c, CharClass::HexDigit); }
static bool IsKeyword(int c) { return IsCharClass(c, CharClass::Keyword); }
- static bool IsReserved(int c) { return IsCharClass(c, CharClass::Reserved); }
+ static bool IsIdChar(int c) { return IsCharClass(c, CharClass::IdChar); }
bool ReadNum();
bool ReadHexNum();
- int ReadReservedChars();
- bool NoTrailingReservedChars() { return ReadReservedChars() == 0; }
+
+ enum class ReservedChars { None, Some, Id };
+ ReservedChars ReadReservedChars();
+ bool NoTrailingReservedChars() {
+ return ReadReservedChars() == ReservedChars::None;
+ }
void ReadSign();
Token GetStringToken(WastParser*);
Token GetNumberToken(TokenType);