summaryrefslogtreecommitdiffhomepage
path: root/test-lexer.cpp
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-02-09 21:53:36 +0100
committerRoland Reichwein <mail@reichwein.it>2020-02-09 21:53:36 +0100
commit42b15c6bfad96151912501a7253521f86e4781cb (patch)
tree7e102f5b8200bccedf3d6d412e222af04d0712f5 /test-lexer.cpp
parentff0c8036659ea31f60b6b3523b8e4e044a70ecf4 (diff)
Fix compile error (WIP)
Diffstat (limited to 'test-lexer.cpp')
-rw-r--r--test-lexer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-lexer.cpp b/test-lexer.cpp
index 3a4ed2a..6733081 100644
--- a/test-lexer.cpp
+++ b/test-lexer.cpp
@@ -95,7 +95,7 @@ TEST_F(Test, BNF) {
Gram::Compiler compiler(bnf, Top);
auto Tree = compiler.compile(tokens);
- Tree.Dump();
+ compiler.DumpTree();
}
int main(int argc, char* argv[]) {