summaryrefslogtreecommitdiff
path: root/include/lexer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/lexer.hpp')
-rw-r--r--include/lexer.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/lexer.hpp b/include/lexer.hpp
index 39d8411..9c12d03 100644
--- a/include/lexer.hpp
+++ b/include/lexer.hpp
@@ -29,12 +29,11 @@ struct Token{
class Lexer{
private:
- char var_name;
std::string text;
size_t current_char;
Token current_token;
- bool matchFunction(const std::string &function_name);
std::string createNumber();
+ bool matchFunction(const std::string &function_name);
public:
Lexer(std::string text = {});
void setText(std::string text);