-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoken.cpp
26 lines (17 loc) · 806 Bytes
/
token.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "token.hpp"
Token::Token(TokenType type, std::size_t line) : m_type(type), m_line(line) {}
Token::Token(TokenType type, std::size_t line, const std::string &value)
: m_type(type), m_line(line), m_value(value) {}
TokenType Token::type() const { return m_type; }
std::size_t Token::line() const { return m_line; }
std::string Token::value() const { return m_value; }
bool operator==(const Token &t1, const Token &t2) {
return (t1.type() == t2.type()) && (t1.line() == t2.line()) &&
(t1.value() == t2.value());
}
bool operator!=(const Token &t1, const Token &t2) { return !(t1 == t2); }
std::ostream &operator<<(std::ostream &oss, const Token &t) {
oss << "Token: type(" << t.type() << ") value (" << t.value()
<< ") source line (" << t.line() << ")";
return oss;
}