-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathToken.cpp
110 lines (104 loc) · 2.29 KB
/
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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
//
// Created by Daniel Slade on 11/23/2022.
//
#include "TokenType.h"
#include "Token.h"
#include <string>
#include <utility>
using namespace std;
Token::Token(TokenType t, string val, int line)
{
type = t;
value = std::move(val);
this->line = line;
}
Token::Token(Token *t)
{
type = t->getTokenType();
value = *(t->getVal());
this->line = -1;
}
string Token::toString()
{
return (to_string(line) + (string)": Token Type: " + getTokenName(type) + ", Value: " + value + "\n");
}
TokenType Token::getTokenType() {
return type;
}
string* Token::getVal() {
return &value;
}
int Token::getLine() const {
return line;
}
string Token::getTokenName(TokenType type)
{
switch(type) {
case INVALID:
return "INVALID";
case EQUAL:
return "EQUAL";
case EQUALEQUAL:
return "EQUALEQUAL";
case NOTEQUAL:
return "NOTEQUAL";
case LESSTHAN:
return "LESSTHAN";
case MORETHAN:
return "MORETHAN";
case LESSEQUALS:
return "LESSEQUALS";
case MOREEQUALS:
return "MOREEQUALS";
case AND:
return "AND";
case OR:
return "OR";
case PLUS:
return "PLUS";
case MINUS:
return "MINUS";
case TIMES:
return "TIMES";
case DIVIDE:
return "DIVIDE";
case MOD:
return "MOD";
case NOT:
return "NOT";
case PRINT:
return "PRINT";
case INPUT:
return "INPUT";
case LBRACE:
return "LBRACE";
case RBRACE:
return "RBRACE";
case LPAREN:
return "LPAREN";
case RPAREN:
return "RPAREN";
case SEMICOLON:
return "SEMICOLON";
case INT:
return "INT";
case STR:
return "STR";
case NAME:
return "NAME";
case INTVAR:
return "INTVAR";
case STRVAR:
return "STRVAR";
case IF:
return "IF";
case ELSE:
return "ELSE";
case WHILE:
return "WHILE";
case FOR:
return "FOR";
default:
return "UNKNOWN";
}
}