-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathToken.swift
195 lines (171 loc) · 5.21 KB
/
Token.swift
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
//
// Token.swift
// Author: Alexey Komnin
//
// I start with implementing lexer in the same order, as I were overviewing it.
// First of all we define Token enum which. Put some predefined valus in it: EOF and NUM_TOKENS. I'll put new cases due to moving further with Lexer implementation.
public enum Token: Equatable {
case Unknown
case AtSign
case Lbrace
case Rbrace
case Lsquare
case Rsquare
case Lparen
case Rparen
case Comma
case Semi
case Colon
case StringLiteral(String)
case IntegerLiteral(String)
case FloatingLiteral(String)
case DollarIdent(String)
case Identifier(String)
/// Operators
case OpPrefix(String)
case OpPostfix(String)
case OpBinaryUnspaced(String)
case OpBinarySpaced(String)
case OpEqual
case OpAmpPrefix
case OpPeriod
case OpPeriodPrefix
case OpQuestionPostfix
case OpQuestionInfix
case OpArrow
/// Keywords
/// Decl keywords
case KW_associatedtype
case KW_class
case KW_deinit
case KW_enum
case KW_extension
case KW_func
case KW_import
case KW_init
case KW_inout
case KW_let
case KW_operator
case KW_precedencegroup
case KW_protocol
case KW_struct
case KW_subscript
case KW_typealias
case KW_var
case KW_fileprivate
case KW_internal
case KW_private
case KW_public
case KW_static
/// Statement keywords.
case KW_defer
case KW_if
case KW_guard
case KW_do
case KW_repeat
case KW_else
case KW_for
case KW_in
case KW_while
case KW_return
case KW_break
case KW_continue
case KW_fallthrough
case KW_switch
case KW_case
case KW_default
case KW_where
case KW_catch
/// Expression keywords.
case KW_as
case KW_Any
case KW_false
case KW_is
case KW_nil
case KW_rethrows
case KW_super
case KW_self
case KW_Self
case KW_throw
case KW_true
case KW_try
case KW_throws
/// Pattern keywords.
case KW__
case EOF
case NUM_TOKENS
}
/// Parse identifiers
public extension Token {
public init(identifier: String) {
switch identifier {
/// Decl keywords
case "associatedtype": self = .KW_associatedtype
case "class": self = .KW_class
case "deinit": self = .KW_deinit
case "enum": self = .KW_enum
case "extension": self = .KW_extension
case "func": self = .KW_func
case "import": self = .KW_import
case "init": self = .KW_init
case "inout": self = .KW_inout
case "let": self = .KW_let
case "operator": self = .KW_operator
case "precedencegroup": self = .KW_precedencegroup
case "protocol": self = .KW_protocol
case "struct": self = .KW_struct
case "subscript": self = .KW_subscript
case "typealias": self = .KW_typealias
case "var": self = .KW_var
case "fileprivate": self = .KW_fileprivate
case "internal": self = .KW_internal
case "private": self = .KW_private
case "public": self = .KW_public
case "static": self = .KW_static
/// Statement keywords.
case "defer": self = .KW_defer
case "if": self = .KW_if
case "guard": self = .KW_guard
case "do": self = .KW_do
case "repeat": self = .KW_repeat
case "else": self = .KW_else
case "for": self = .KW_for
case "in": self = .KW_in
case "while": self = .KW_while
case "return": self = .KW_return
case "break": self = .KW_break
case "continue": self = .KW_continue
case "fallthrough": self = .KW_fallthrough
case "switch": self = .KW_switch
case "case": self = .KW_case
case "default": self = .KW_default
case "where": self = .KW_where
case "catch": self = .KW_catch
/// Expression keywords.
case "as": self = .KW_as
case "Any": self = .KW_Any
case "false": self = .KW_false
case "is": self = .KW_is
case "nil": self = .KW_nil
case "rethrows": self = .KW_rethrows
case "super": self = .KW_super
case "self": self = .KW_self
case "Self": self = .KW_Self
case "throw": self = .KW_throw
case "true": self = .KW_true
case "try": self = .KW_try
case "throws": self = .KW_throws
/// Pattern keywords.
case "_": self = .KW__
default: self = .Identifier(identifier)
}
}
}
public func ==(lhs: Token, rhs: Token) -> Bool {
switch (lhs, rhs) {
case (.NUM_TOKENS, .NUM_TOKENS): return true
case (.EOF, .EOF): return true
case (.OpPeriod, .OpPeriod): return true
default: return false
}
}