aboutsummaryrefslogtreecommitdiffstats
path: root/token.cpp
blob: 560f89ea315af9702ef04ca8f45f5ce6e2a074b8 (plain)
1
2
3
4
5
6
7
#include "token.h"

Token::Token(std::string& lexeme, bool isString) :
    m_lexeme(lexeme), m_isString(isString) {

}