GSC Interpreter
A Turing-complete interpreter developed for a compiler course
Loading...
Searching...
No Matches
tokenType.cpp
Go to the documentation of this file.
1#include "gsc/tokenType.hpp"
2
3std::string toString(TokenType tokenType) {
4 return tokenStrings[static_cast<int>(tokenType)];
5}
std::string toString(TokenType tokenType)
Definition tokenType.cpp:3