aboutsummaryrefslogtreecommitdiff
path: root/src/parse/TokenType.cpp
blob: 39af4187d05d1f3e67cba31f4909d6b9fdfb94d6 (plain)
1
2
3
4
5
6
7
8
#include "cru/parse/TokenType.h"

namespace cru::parse {
TokenType::TokenType(std::string name) : name_(std::move(name)) {}

TokenType::~TokenType() {}

}  // namespace cru::parse