forked from mulesoft-labs/data-weave-tmLanguage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPygments.py
347 lines (342 loc) · 24.6 KB
/
Pygments.py
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
from pygments.lexer import RegexLexer, bygroups
from pygments.token import *
import re
__all__=['LysLexer']
class LysLexer(RegexLexer):
name = 'Lys'
aliases = ['lys']
filenames = ['*.lys']
flags = re.MULTILINE | re.UNICODE
tokens = {
'root' : [
(u'(/\\*)', bygroups(Comment.Multiline), 'multi_line_comment__1'),
(u'(//.*)', bygroups(Comment)),
(u'(\\\"\\\")', bygroups(String)),
(u'(\\\")', bygroups(String), 'literals__1'),
(u'(-)?(\\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\.?[0-9]*)|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)([LlFf])?\\b)', bygroups(Number)),
(u'(\\b(true|false)\\b)', bygroups(Keyword.Constant)),
(u'\\b(fun)(\\s+)(\\w+|\\|\\||&&|&|\\||\\+\\+|\\-\\-|\\+|\\-|==|!=|==|!==|<=|>=|<<|>>>|>>|<|>|/|\\*|\\*\\*|%|~|\\^|\\[\\])(?:\\s*(\\()?)', bygroups(Keyword.Declaration, Generic, Name.Function, Punctuation), 'main__1'),
(u'\\b(val|var)(\\s+)([A-Z][A-Z0-9_]*)', bygroups(Keyword.Declaration, Generic, Name.Constant), 'main__2'),
(u'\\b(val|var)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Variable), 'main__3'),
(u'\\b(import)(\\s+)((?:[A-Za-z$_][A-Za-z0-9$_]*::)+)', bygroups(Keyword.Declaration, Generic, Name.Namespace)),
(u'\\b(import)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Namespace)),
(u'\\b(impl)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Class)),
(u'\\b(type)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Class)),
(u'\\b(enum)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(?:\\s+(\\{)?)', bygroups(Keyword.Declaration, Generic, Name.Class, Punctuation), 'main__4'),
(u'(%wasm)(\\s*)(\\{)', bygroups(Keyword, Generic, Punctuation), 'main__6'),
(u'(%injected)\\b', bygroups(Keyword.Declaration)),
(u'(%stack)(\\s*)(\\{)', bygroups(Keyword, Generic, Punctuation), 'main__7'),
(u'\\b(struct)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(?:\\s*(\\()?)', bygroups(Keyword.Declaration, Generic, Name.Class, Punctuation), 'main__8'),
(u'\\b(if|match|case|fun|else|loop|continue|break)\\b', bygroups(Keyword)),
(u'(?:%inline|%struct|\\b(private))\\b', bygroups(Keyword)),
(u'((?:[A-Za-z$_][A-Za-z0-9$_]*::)+)', bygroups(Name.Namespace)),
(u'(\\->)', bygroups(Punctuation)),
(u'(\\.\\^)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Constant)),
(u'(\\.\\^|\\.)', bygroups(Punctuation)),
(u'(?:(\\|\\||&&|&|\\||\\+|\\-|==|!=|==|!==|<=|>=|<<|>>>|>>|<|>|/|\\*|\\*\\*|%|~|\\^|!)+)', bygroups(Operator)),
(u'([:|&]\\s*)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Variable.Class)),
(u'(\\b(?:is|as)\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword, Name.Variable.Class)),
(u'([:|&]\\s*\\()', bygroups(Punctuation), 'types__1'),
(u'\\b([A-Z][A-Z0-9_]*)\\b', bygroups(Name.Constant)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(\\()', bygroups(Name.Function, Punctuation), 'main__9'),
(u'\\b([A-Z][A-Za-z0-9$_]*)\\b', bygroups(Name.Variable.Class)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Variable)),
(u'(=)', bygroups(Punctuation)),
(u'(\\{)', bygroups(Punctuation), 'main__10'),
(u'(\\[)', bygroups(Punctuation), 'main__11'),
(u'(\\()', bygroups(Punctuation), 'main__12'),
(u'(#(!)?\\[)', bygroups(Name.Decorator), 'decorators__1'),
(u'([^\\s\\n\\r])', bygroups(Generic.Error)),
('(\n|\r|\r\n)', String),
('.', String),
],
'decorators__1' : [
(u'(\\\"\\\")', bygroups(String)),
(u'(\\\")', bygroups(String), 'literals__1'),
(u'(-)?(\\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\.?[0-9]*)|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)([LlFf])?\\b)', bygroups(Number)),
(u'(\\b(true|false)\\b)', bygroups(Keyword.Constant)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Decorator)),
('(\n|\r|\r\n)', String),
('.', String),
],
'literals__1' : [
('(\n|\r|\r\n)', String),
('.', String),
],
'main__1' : [
(u'(,)', bygroups(Punctuation)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Variable)),
(u'([:|&]\\s*)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Variable.Class)),
(u'(\\b(?:is|as)\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword, Name.Variable.Class)),
(u'([:|&]\\s*\\()', bygroups(Punctuation), 'types__1'),
(u'(/\\*)', bygroups(Comment.Multiline), 'multi_line_comment__1'),
(u'(//.*)', bygroups(Comment)),
('(\n|\r|\r\n)', String),
('.', String),
],
'main__10' : [
(u'(/\\*)', bygroups(Comment.Multiline), 'multi_line_comment__1'),
(u'(//.*)', bygroups(Comment)),
(u'(\\\"\\\")', bygroups(String)),
(u'(\\\")', bygroups(String), 'literals__1'),
(u'(-)?(\\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\.?[0-9]*)|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)([LlFf])?\\b)', bygroups(Number)),
(u'(\\b(true|false)\\b)', bygroups(Keyword.Constant)),
(u'\\b(fun)(\\s+)(\\w+|\\|\\||&&|&|\\||\\+\\+|\\-\\-|\\+|\\-|==|!=|==|!==|<=|>=|<<|>>>|>>|<|>|/|\\*|\\*\\*|%|~|\\^|\\[\\])(?:\\s*(\\()?)', bygroups(Keyword.Declaration, Generic, Name.Function, Punctuation), 'main__1'),
(u'\\b(val|var)(\\s+)([A-Z][A-Z0-9_]*)', bygroups(Keyword.Declaration, Generic, Name.Constant), 'main__2'),
(u'\\b(val|var)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Variable), 'main__3'),
(u'\\b(import)(\\s+)((?:[A-Za-z$_][A-Za-z0-9$_]*::)+)', bygroups(Keyword.Declaration, Generic, Name.Namespace)),
(u'\\b(import)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Namespace)),
(u'\\b(impl)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Class)),
(u'\\b(type)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Class)),
(u'\\b(enum)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(?:\\s+(\\{)?)', bygroups(Keyword.Declaration, Generic, Name.Class, Punctuation), 'main__4'),
(u'(%wasm)(\\s*)(\\{)', bygroups(Keyword, Generic, Punctuation), 'main__6'),
(u'(%injected)\\b', bygroups(Keyword.Declaration)),
(u'(%stack)(\\s*)(\\{)', bygroups(Keyword, Generic, Punctuation), 'main__7'),
(u'\\b(struct)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(?:\\s*(\\()?)', bygroups(Keyword.Declaration, Generic, Name.Class, Punctuation), 'main__8'),
(u'\\b(if|match|case|fun|else|loop|continue|break)\\b', bygroups(Keyword)),
(u'(?:%inline|%struct|\\b(private))\\b', bygroups(Keyword)),
(u'((?:[A-Za-z$_][A-Za-z0-9$_]*::)+)', bygroups(Name.Namespace)),
(u'(\\->)', bygroups(Punctuation)),
(u'(\\.\\^)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Constant)),
(u'(\\.\\^|\\.)', bygroups(Punctuation)),
(u'(?:(\\|\\||&&|&|\\||\\+|\\-|==|!=|==|!==|<=|>=|<<|>>>|>>|<|>|/|\\*|\\*\\*|%|~|\\^|!)+)', bygroups(Operator)),
(u'([:|&]\\s*)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Variable.Class)),
(u'(\\b(?:is|as)\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword, Name.Variable.Class)),
(u'([:|&]\\s*\\()', bygroups(Punctuation), 'types__1'),
(u'\\b([A-Z][A-Z0-9_]*)\\b', bygroups(Name.Constant)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(\\()', bygroups(Name.Function, Punctuation), 'main__9'),
(u'\\b([A-Z][A-Za-z0-9$_]*)\\b', bygroups(Name.Variable.Class)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Variable)),
(u'(=)', bygroups(Punctuation)),
(u'(\\{)', bygroups(Punctuation), 'main__10'),
(u'(\\[)', bygroups(Punctuation), 'main__11'),
(u'(\\()', bygroups(Punctuation), 'main__12'),
(u'(#(!)?\\[)', bygroups(Name.Decorator), 'decorators__1'),
(u'([^\\s\\n\\r])', bygroups(Generic.Error)),
('(\n|\r|\r\n)', String),
('.', String),
],
'main__11' : [
(u'(/\\*)', bygroups(Comment.Multiline), 'multi_line_comment__1'),
(u'(//.*)', bygroups(Comment)),
(u'(\\\"\\\")', bygroups(String)),
(u'(\\\")', bygroups(String), 'literals__1'),
(u'(-)?(\\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\.?[0-9]*)|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)([LlFf])?\\b)', bygroups(Number)),
(u'(\\b(true|false)\\b)', bygroups(Keyword.Constant)),
(u'\\b(fun)(\\s+)(\\w+|\\|\\||&&|&|\\||\\+\\+|\\-\\-|\\+|\\-|==|!=|==|!==|<=|>=|<<|>>>|>>|<|>|/|\\*|\\*\\*|%|~|\\^|\\[\\])(?:\\s*(\\()?)', bygroups(Keyword.Declaration, Generic, Name.Function, Punctuation), 'main__1'),
(u'\\b(val|var)(\\s+)([A-Z][A-Z0-9_]*)', bygroups(Keyword.Declaration, Generic, Name.Constant), 'main__2'),
(u'\\b(val|var)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Variable), 'main__3'),
(u'\\b(import)(\\s+)((?:[A-Za-z$_][A-Za-z0-9$_]*::)+)', bygroups(Keyword.Declaration, Generic, Name.Namespace)),
(u'\\b(import)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Namespace)),
(u'\\b(impl)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Class)),
(u'\\b(type)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Class)),
(u'\\b(enum)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(?:\\s+(\\{)?)', bygroups(Keyword.Declaration, Generic, Name.Class, Punctuation), 'main__4'),
(u'(%wasm)(\\s*)(\\{)', bygroups(Keyword, Generic, Punctuation), 'main__6'),
(u'(%injected)\\b', bygroups(Keyword.Declaration)),
(u'(%stack)(\\s*)(\\{)', bygroups(Keyword, Generic, Punctuation), 'main__7'),
(u'\\b(struct)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(?:\\s*(\\()?)', bygroups(Keyword.Declaration, Generic, Name.Class, Punctuation), 'main__8'),
(u'\\b(if|match|case|fun|else|loop|continue|break)\\b', bygroups(Keyword)),
(u'(?:%inline|%struct|\\b(private))\\b', bygroups(Keyword)),
(u'((?:[A-Za-z$_][A-Za-z0-9$_]*::)+)', bygroups(Name.Namespace)),
(u'(\\->)', bygroups(Punctuation)),
(u'(\\.\\^)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Constant)),
(u'(\\.\\^|\\.)', bygroups(Punctuation)),
(u'(?:(\\|\\||&&|&|\\||\\+|\\-|==|!=|==|!==|<=|>=|<<|>>>|>>|<|>|/|\\*|\\*\\*|%|~|\\^|!)+)', bygroups(Operator)),
(u'([:|&]\\s*)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Variable.Class)),
(u'(\\b(?:is|as)\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword, Name.Variable.Class)),
(u'([:|&]\\s*\\()', bygroups(Punctuation), 'types__1'),
(u'\\b([A-Z][A-Z0-9_]*)\\b', bygroups(Name.Constant)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(\\()', bygroups(Name.Function, Punctuation), 'main__9'),
(u'\\b([A-Z][A-Za-z0-9$_]*)\\b', bygroups(Name.Variable.Class)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Variable)),
(u'(=)', bygroups(Punctuation)),
(u'(\\{)', bygroups(Punctuation), 'main__10'),
(u'(\\[)', bygroups(Punctuation), 'main__11'),
(u'(\\()', bygroups(Punctuation), 'main__12'),
(u'(#(!)?\\[)', bygroups(Name.Decorator), 'decorators__1'),
(u'([^\\s\\n\\r])', bygroups(Generic.Error)),
('(\n|\r|\r\n)', String),
('.', String),
],
'main__12' : [
(u'(,)', bygroups(Punctuation)),
(u'(/\\*)', bygroups(Comment.Multiline), 'multi_line_comment__1'),
(u'(//.*)', bygroups(Comment)),
(u'(\\\"\\\")', bygroups(String)),
(u'(\\\")', bygroups(String), 'literals__1'),
(u'(-)?(\\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\.?[0-9]*)|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)([LlFf])?\\b)', bygroups(Number)),
(u'(\\b(true|false)\\b)', bygroups(Keyword.Constant)),
(u'\\b(fun)(\\s+)(\\w+|\\|\\||&&|&|\\||\\+\\+|\\-\\-|\\+|\\-|==|!=|==|!==|<=|>=|<<|>>>|>>|<|>|/|\\*|\\*\\*|%|~|\\^|\\[\\])(?:\\s*(\\()?)', bygroups(Keyword.Declaration, Generic, Name.Function, Punctuation), 'main__1'),
(u'\\b(val|var)(\\s+)([A-Z][A-Z0-9_]*)', bygroups(Keyword.Declaration, Generic, Name.Constant), 'main__2'),
(u'\\b(val|var)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Variable), 'main__3'),
(u'\\b(import)(\\s+)((?:[A-Za-z$_][A-Za-z0-9$_]*::)+)', bygroups(Keyword.Declaration, Generic, Name.Namespace)),
(u'\\b(import)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Namespace)),
(u'\\b(impl)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Class)),
(u'\\b(type)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Class)),
(u'\\b(enum)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(?:\\s+(\\{)?)', bygroups(Keyword.Declaration, Generic, Name.Class, Punctuation), 'main__4'),
(u'(%wasm)(\\s*)(\\{)', bygroups(Keyword, Generic, Punctuation), 'main__6'),
(u'(%injected)\\b', bygroups(Keyword.Declaration)),
(u'(%stack)(\\s*)(\\{)', bygroups(Keyword, Generic, Punctuation), 'main__7'),
(u'\\b(struct)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(?:\\s*(\\()?)', bygroups(Keyword.Declaration, Generic, Name.Class, Punctuation), 'main__8'),
(u'\\b(if|match|case|fun|else|loop|continue|break)\\b', bygroups(Keyword)),
(u'(?:%inline|%struct|\\b(private))\\b', bygroups(Keyword)),
(u'((?:[A-Za-z$_][A-Za-z0-9$_]*::)+)', bygroups(Name.Namespace)),
(u'(\\->)', bygroups(Punctuation)),
(u'(\\.\\^)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Constant)),
(u'(\\.\\^|\\.)', bygroups(Punctuation)),
(u'(?:(\\|\\||&&|&|\\||\\+|\\-|==|!=|==|!==|<=|>=|<<|>>>|>>|<|>|/|\\*|\\*\\*|%|~|\\^|!)+)', bygroups(Operator)),
(u'([:|&]\\s*)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Variable.Class)),
(u'(\\b(?:is|as)\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword, Name.Variable.Class)),
(u'([:|&]\\s*\\()', bygroups(Punctuation), 'types__1'),
(u'\\b([A-Z][A-Z0-9_]*)\\b', bygroups(Name.Constant)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(\\()', bygroups(Name.Function, Punctuation), 'main__9'),
(u'\\b([A-Z][A-Za-z0-9$_]*)\\b', bygroups(Name.Variable.Class)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Variable)),
(u'(=)', bygroups(Punctuation)),
(u'(\\{)', bygroups(Punctuation), 'main__10'),
(u'(\\[)', bygroups(Punctuation), 'main__11'),
(u'(\\()', bygroups(Punctuation), 'main__12'),
(u'(#(!)?\\[)', bygroups(Name.Decorator), 'decorators__1'),
(u'([^\\s\\n\\r])', bygroups(Generic.Error)),
('(\n|\r|\r\n)', String),
('.', String),
],
'main__2' : [
(u'(/\\*)', bygroups(Comment.Multiline), 'multi_line_comment__1'),
(u'(//.*)', bygroups(Comment)),
(u'([:|&]\\s*)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Variable.Class)),
(u'(\\b(?:is|as)\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword, Name.Variable.Class)),
(u'([:|&]\\s*\\()', bygroups(Punctuation), 'types__1'),
(u'([^\\s\\n\\r])', bygroups(Generic.Error)),
('(\n|\r|\r\n)', String),
('.', String),
],
'main__3' : [
(u'(/\\*)', bygroups(Comment.Multiline), 'multi_line_comment__1'),
(u'(//.*)', bygroups(Comment)),
(u'([:|&]\\s*)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Variable.Class)),
(u'(\\b(?:is|as)\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword, Name.Variable.Class)),
(u'([:|&]\\s*\\()', bygroups(Punctuation), 'types__1'),
(u'([^\\s\\n\\r])', bygroups(Generic.Error)),
('(\n|\r|\r\n)', String),
('.', String),
],
'main__4' : [
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(\\s*\\()', bygroups(Name.Class, Punctuation), 'main__5'),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Class)),
('(\n|\r|\r\n)', String),
('.', String),
],
'main__5' : [
(u'(,)', bygroups(Punctuation)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Variable)),
(u'(/\\*)', bygroups(Comment.Multiline), 'multi_line_comment__1'),
(u'(//.*)', bygroups(Comment)),
(u'([:|&]\\s*)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Variable.Class)),
(u'(\\b(?:is|as)\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword, Name.Variable.Class)),
(u'([:|&]\\s*\\()', bygroups(Punctuation), 'types__1'),
('(\n|\r|\r\n)', String),
('.', String),
],
'main__6' : [
(u'(/\\*)', bygroups(Comment.Multiline), 'multi_line_comment__1'),
(u'(//.*)', bygroups(Comment)),
(u'(-)?(\\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\.?[0-9]*)|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)([LlFf])?\\b)', bygroups(Number)),
(u'\\b(i32|i64|f32|f64)\\b', bygroups(Name.Variable.Class)),
(u'(\\$)((?:[A-Za-z$_][A-Za-z0-9$_]*::)+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Namespace, Name.Namespace, Name.Variable)),
(u'(\\$)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Variable)),
(u'(([\\w\\./]+)\\b)', bygroups(String)),
(u'(\\()(?:([\\w\\./$]+)?\\b)', bygroups(Punctuation, Keyword), 'wasm__1'),
('(\n|\r|\r\n)', String),
('.', String),
],
'main__7' : [
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Constant)),
(u'(=)', bygroups(Punctuation)),
(u'(\\\"\\\")', bygroups(String)),
(u'(\\\")', bygroups(String), 'literals__1'),
(u'(-)?(\\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\.?[0-9]*)|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)([LlFf])?\\b)', bygroups(Number)),
(u'(\\b(true|false)\\b)', bygroups(Keyword.Constant)),
('(\n|\r|\r\n)', String),
('.', String),
],
'main__8' : [
(u'(,)', bygroups(Punctuation)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Variable)),
(u'(/\\*)', bygroups(Comment.Multiline), 'multi_line_comment__1'),
(u'(//.*)', bygroups(Comment)),
(u'([:|&]\\s*)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Variable.Class)),
(u'(\\b(?:is|as)\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword, Name.Variable.Class)),
(u'([:|&]\\s*\\()', bygroups(Punctuation), 'types__1'),
('(\n|\r|\r\n)', String),
('.', String),
],
'main__9' : [
(u'(,)', bygroups(Punctuation)),
(u'(/\\*)', bygroups(Comment.Multiline), 'multi_line_comment__1'),
(u'(//.*)', bygroups(Comment)),
(u'(\\\"\\\")', bygroups(String)),
(u'(\\\")', bygroups(String), 'literals__1'),
(u'(-)?(\\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\.?[0-9]*)|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)([LlFf])?\\b)', bygroups(Number)),
(u'(\\b(true|false)\\b)', bygroups(Keyword.Constant)),
(u'\\b(fun)(\\s+)(\\w+|\\|\\||&&|&|\\||\\+\\+|\\-\\-|\\+|\\-|==|!=|==|!==|<=|>=|<<|>>>|>>|<|>|/|\\*|\\*\\*|%|~|\\^|\\[\\])(?:\\s*(\\()?)', bygroups(Keyword.Declaration, Generic, Name.Function, Punctuation), 'main__1'),
(u'\\b(val|var)(\\s+)([A-Z][A-Z0-9_]*)', bygroups(Keyword.Declaration, Generic, Name.Constant), 'main__2'),
(u'\\b(val|var)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Variable), 'main__3'),
(u'\\b(import)(\\s+)((?:[A-Za-z$_][A-Za-z0-9$_]*::)+)', bygroups(Keyword.Declaration, Generic, Name.Namespace)),
(u'\\b(import)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Namespace)),
(u'\\b(impl)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Class)),
(u'\\b(type)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword.Declaration, Generic, Name.Class)),
(u'\\b(enum)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(?:\\s+(\\{)?)', bygroups(Keyword.Declaration, Generic, Name.Class, Punctuation), 'main__4'),
(u'(%wasm)(\\s*)(\\{)', bygroups(Keyword, Generic, Punctuation), 'main__6'),
(u'(%injected)\\b', bygroups(Keyword.Declaration)),
(u'(%stack)(\\s*)(\\{)', bygroups(Keyword, Generic, Punctuation), 'main__7'),
(u'\\b(struct)(\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(?:\\s*(\\()?)', bygroups(Keyword.Declaration, Generic, Name.Class, Punctuation), 'main__8'),
(u'\\b(if|match|case|fun|else|loop|continue|break)\\b', bygroups(Keyword)),
(u'(?:%inline|%struct|\\b(private))\\b', bygroups(Keyword)),
(u'((?:[A-Za-z$_][A-Za-z0-9$_]*::)+)', bygroups(Name.Namespace)),
(u'(\\->)', bygroups(Punctuation)),
(u'(\\.\\^)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Constant)),
(u'(\\.\\^|\\.)', bygroups(Punctuation)),
(u'(?:(\\|\\||&&|&|\\||\\+|\\-|==|!=|==|!==|<=|>=|<<|>>>|>>|<|>|/|\\*|\\*\\*|%|~|\\^|!)+)', bygroups(Operator)),
(u'([:|&]\\s*)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Variable.Class)),
(u'(\\b(?:is|as)\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword, Name.Variable.Class)),
(u'([:|&]\\s*\\()', bygroups(Punctuation), 'types__1'),
(u'\\b([A-Z][A-Z0-9_]*)\\b', bygroups(Name.Constant)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)(\\()', bygroups(Name.Function, Punctuation), 'main__9'),
(u'\\b([A-Z][A-Za-z0-9$_]*)\\b', bygroups(Name.Variable.Class)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Variable)),
(u'(=)', bygroups(Punctuation)),
(u'(\\{)', bygroups(Punctuation), 'main__10'),
(u'(\\[)', bygroups(Punctuation), 'main__11'),
(u'(\\()', bygroups(Punctuation), 'main__12'),
(u'(#(!)?\\[)', bygroups(Name.Decorator), 'decorators__1'),
(u'([^\\s\\n\\r])', bygroups(Generic.Error)),
('(\n|\r|\r\n)', String),
('.', String),
],
'multi_line_comment__1' : [
('(\n|\r|\r\n)', String),
('.', Comment.Multiline),
],
'types__1' : [
(u'(,)', bygroups(Punctuation)),
(u'([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Variable.Class)),
(u'([:|&]\\s*)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Punctuation, Name.Variable.Class)),
(u'(\\b(?:is|as)\\s+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Keyword, Name.Variable.Class)),
(u'([:|&]\\s*\\()', bygroups(Punctuation), 'types__1'),
('(\n|\r|\r\n)', String),
('.', String),
],
'wasm__1' : [
(u'(/\\*)', bygroups(Comment.Multiline), 'multi_line_comment__1'),
(u'(//.*)', bygroups(Comment)),
(u'(-)?(\\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\.?[0-9]*)|(\\.[0-9]+))((e|E)(\\+|-)?[0-9]+)?)([LlFf])?\\b)', bygroups(Number)),
(u'\\b(i32|i64|f32|f64)\\b', bygroups(Name.Variable.Class)),
(u'(\\$)((?:[A-Za-z$_][A-Za-z0-9$_]*::)+)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Namespace, Name.Namespace, Name.Variable)),
(u'(\\$)([A-Za-z$_][A-Za-z0-9$_]*|\\?\\?\\?)', bygroups(Name.Variable)),
(u'(([\\w\\./]+)\\b)', bygroups(String)),
(u'(\\()(?:([\\w\\./$]+)?\\b)', bygroups(Punctuation, Keyword), 'wasm__1'),
('(\n|\r|\r\n)', String),
('.', String),
]
}