diff options
Diffstat (limited to 'lexer.h')
-rw-r--r-- | lexer.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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); |