summaryrefslogtreecommitdiffhomepage
path: root/test-lexer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test-lexer.cpp')
-rw-r--r--test-lexer.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/test-lexer.cpp b/test-lexer.cpp
index 79b9930..735f670 100644
--- a/test-lexer.cpp
+++ b/test-lexer.cpp
@@ -64,7 +64,7 @@ TEST_F(Test, BNF) {
// implicit?
//std::set<std::string> Terminals{"identifier", "=", ";"};
- std::string Code{"a = bc ; c = 123 ; esd = Ff ; 1 = XYZ ; "};
+ std::string Code{"a = bc ; c = 123 ; esd = Ff ; "};//1 = XYZ ; "};
std::vector<Token> tokens_reference{
{"identifier", "a", { 1, 1} },
{"preprocessing-op-or-punc", "=", { 1, 3}},
@@ -78,10 +78,12 @@ TEST_F(Test, BNF) {
{"preprocessing-op-or-punc", "=", { 1, 24}},
{"identifier", "Ff", { 1, 26}},
{"preprocessing-op-or-punc", ";", { 1, 29}},
+#if 0
{"pp-number", "1", { 1, 31}},
{"preprocessing-op-or-punc", "=", { 1, 33}},
{"identifier", "XYZ", { 1, 35}},
{"preprocessing-op-or-punc", ";", { 1, 39}},
+#endif
};
Lex::Lexer lexer(LexBNF, LexTop);