1 2 3 4 5 6 7
#include "token.h" Token::Token(std::string& lexeme, bool isString) : m_lexeme(lexeme), m_isString(isString) { }