summaryrefslogtreecommitdiffhomepage
path: root/lexer.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-01-23 21:53:57 +0100
committerRoland Reichwein <mail@reichwein.it>2020-01-23 21:53:57 +0100
commite172ed9f799501c234c8da18cef829244473f1d7 (patch)
tree2c36c8adef69bd7c1b61efc1fe91188ab61ca6d8 /lexer.h
parentf7cdbb6635d62a0347be579cb8dd6badec22956d (diff)
Added grammer
Diffstat (limited to 'lexer.h')
-rw-r--r--lexer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lexer.h b/lexer.h
index c6576d0..b46808b 100644
--- a/lexer.h
+++ b/lexer.h
@@ -53,6 +53,8 @@ public:
Lexer(const BNF& bnf, const std::string& Top);
std::vector<Token> Lex(const std::string& s);
+ static void PreprocessorTokensToTokens(std::vector<Token>& tokens);
+
};
} // namespace Lex