diff options
Diffstat (limited to 'token.cpp')
| -rw-r--r-- | token.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/token.cpp b/token.cpp new file mode 100644 index 0000000..560f89e --- /dev/null +++ b/token.cpp @@ -0,0 +1,7 @@ +#include "token.h" + +Token::Token(std::string& lexeme, bool isString) : + m_lexeme(lexeme), m_isString(isString) { + +} + |
