summaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2016-12-01 11:54:52 -0700
committerMike Buland <eichlan@xagasoft.com>2016-12-01 11:54:52 -0700
commit17a39c19e5bff97c3b3d2bc888a3bb5ded7c1b96 (patch)
tree77ed32bfbcfc84ae5ebf2da468d6cca47796dc55 /src/parser.h
parent32b48aeb75db4ad40fe0173614e585f9bee72257 (diff)
downloadclic-17a39c19e5bff97c3b3d2bc888a3bb5ded7c1b96.tar.gz
clic-17a39c19e5bff97c3b3d2bc888a3bb5ded7c1b96.tar.bz2
clic-17a39c19e5bff97c3b3d2bc888a3bb5ded7c1b96.tar.xz
clic-17a39c19e5bff97c3b3d2bc888a3bb5ded7c1b96.zip
Terrible parsing issues are behind us now.
At least...those issues are behind us. We'll see what happens next. Also, added some macros to make debugging easily optional.
Diffstat (limited to '')
-rw-r--r--src/parser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parser.h b/src/parser.h
index 60dd8e1..cc97222 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -69,7 +69,8 @@ private:
69private: 69private:
70 Lexer &lex; 70 Lexer &lex;
71 typedef Bu::List<Token> TokenStack; 71 typedef Bu::List<Token> TokenStack;
72 TokenStack tsParse; 72 TokenStack tsTerminal;
73 TokenStack tsNonTerminal;
73 Expression *pCurExp; 74 Expression *pCurExp;
74}; 75};
75 76