-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathToken.cs
81 lines (74 loc) · 2.31 KB
/
Token.cs
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
using System.Collections.Generic;
public class Token
{
public static string TT_NUMBER = "NUMBER";
public static string TT_IDENT = "IDENT";
public static string TT_KEYWORD = "KEYWORD";
public static string TT_DOT = "DOT";
public static string TT_EE = "EE";
public static string TT_NE = "NE";
public static string TT_GT = "GT";
public static string TT_GTE = "GTE";
public static string TT_LT = "LT";
public static string TT_LTE = "LTE";
public static string TT_STRING = "STRING";
public static string TT_PLUS = "PLUS";
public static string TT_MINUS = "MINUS";
public static string TT_MUL = "MUL";
public static string TT_DIV = "DIV";
public static string TT_AND = "AND";
public static string TT_OR = "OR";
public static string TT_NOT = "NOT";
public static string TT_RPAREN = "RPAREN";
public static string TT_LPAREN = "LPAREN";
public static string TT_RSQUARE = "RSQUARE";
public static string TT_LSQUARE = "LSQUARE";
public static string TT_RCURLY = "RCURLY";
public static string TT_LCURLY = "LCURLY";
public static string TT_COMMA = "COMMA";
public static string TT_COLON = "COLON";
public static string TT_PIPE = "PIPE";
public static string TT_CURRY_PIPE = "CURRY_PIPE";
public static string TT_END = "END";
public string tokType;
public string value;
public Position posStart;
public Position posEnd;
public static HashSet <string> KEYWORDS = new HashSet <string> {
"for",
"in",
"endfor",
"if",
"elif",
"else",
"endif",
"true",
"false",
"block",
"endblock",
"extends",
};
public Token(string typ, string val, Position start, Position end)
{
tokType = typ;
value = val;
posStart = start;
posEnd = end;
}
public Token(string typ, Position start, Position end)
{
tokType = typ;
value = "";
posStart = start;
posEnd = end;
}
public bool Matches(string name, string value)
{
return this.tokType == name && this.value == value;
}
public override string ToString()
{
if (this.value == "") return this.tokType;
return string.Concat(new[]{"[", this.tokType, ":", this.value, "]"});
}
}