summaryrefslogtreecommitdiffhomepage
path: root/lexer.h
diff options
context:
space:
mode:
Diffstat (limited to 'lexer.h')
-rw-r--r--lexer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lexer.h b/lexer.h
index 7f1be2d..f9363ef 100644
--- a/lexer.h
+++ b/lexer.h
@@ -8,6 +8,9 @@ namespace Lex {
class Lexer
{
+ //states; // start, ...
+ //transitions; // state, state, character
+
public:
Lexer(const BNF& bnf, const std::string& Top);
std::vector<Token> Lex(const std::string& s);