aboutsummaryrefslogtreecommitdiff
path: root/include/lexer/token.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/lexer/token.hpp')
-rw-r--r--include/lexer/token.hpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/include/lexer/token.hpp b/include/lexer/token.hpp
deleted file mode 100644
index 86a41f6..0000000
--- a/include/lexer/token.hpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef TOKEN_H
-#define TOKEN_H
-
-#include "token_type.hpp"
-
-#include <string>
-
-struct Token {
- TokenType type;
- std::string value;
- int line;
- int column;
-
- Token(TokenType t, const std::string& val, int line, int col) : type{t}, value{val}, line{line}, column{col} {};
-};
-
-#endif