GSC Interpreter
A Turing-complete interpreter developed for a compiler course
Loading...
Searching...
No Matches
tokenType.cpp File Reference
#include "gsc/tokenType.hpp"
Include dependency graph for tokenType.cpp:

Go to the source code of this file.

Functions

std::string toString (TokenType tokenType)
 

Function Documentation

◆ toString()

std::string toString ( TokenType  tokenType)

Definition at line 3 of file tokenType.cpp.

3 {
4 return tokenStrings[static_cast<int>(tokenType)];
5}
static const std::string tokenStrings[]
Definition tokenType.hpp:53