-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoken_type_functions.cpp
94 lines (93 loc) · 2.03 KB
/
token_type_functions.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
* token_type_functions.cpp
* This file implements the TokenType2String function declared in token_type_functions.h.
* The TokenType2String function converts a TokenType enum value to a string.
* This function is used for debugging and error reporting purposes.
*/
#include "token_type_functions.h"
std::string TokenType2String(TokenType tokenType)
{
switch (tokenType)
{
case LEFT_PAREN:
return "LEFT_PAREN";
case RIGHT_PAREN:
return "RIGHT_PAREN";
case LEFT_BRACE:
return "LEFT_BRACE";
case RIGHT_BRACE:
return "RIGHT_BRACE";
case COMMA:
return "COMMA";
case DOT:
return "DOT";
case MINUS:
return "MINUS";
case PLUS:
return "PLUS";
case SEMICOLON:
return "SEMICOLON";
case SLASH:
return "SLASH";
case STAR:
return "STAR";
case BANG:
return "BANG";
case BANG_EQUAL:
return "BANG_EQUAL";
case EQUAL:
return "EQUAL";
case EQUAL_EQUAL:
return "EQUAL_EQUAL";
case GREATER:
return "GREATER";
case GREATER_EQUAL:
return "GREATER_EQUAL";
case LESS:
return "LESS";
case LESS_EQUAL:
return "LESS_EQUAL";
case IDENTIFIER:
return "IDENTIFIER";
case STRING:
return "STRING";
case NUMBER:
return "NUMBER";
case AND:
return "AND";
case CLASS:
return "CLASS";
case ELSE:
return "ELSE";
case FALSE:
return "FALSE";
case FUN:
return "FUN";
case FOR:
return "FOR";
case IF:
return "IF";
case NIL:
return "NIL";
case OR:
return "OR";
case PRINT:
return "PRINT";
case RETURN:
return "RETURN";
case SUPER:
return "SUPER";
case THIS:
return "THIS";
case TRUE:
return "TRUE";
case VAR:
return "VAR";
case WHILE:
return "WHILE";
case END_OF_FILE:
return "END_OF_FILE";
default:
return "UNKNOWN";
}
}