File: groovy.jsf

package info (click to toggle)
joe 4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,800 kB
  • ctags: 3,201
  • sloc: ansic: 49,924; sh: 4,279; makefile: 171; csh: 26
file content (471 lines) | stat: -rw-r--r-- 7,400 bytes parent folder | download | duplicates (2)
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
# JOE syntax highlight file for Groovy

=Idle
=Comment	green
=Shebang	yellow
=Constant	cyan
=Escape		bold cyan
=Operator	bold
=Keyword	bold
=Bad		bold red
=Var		yellow
=Brace		magenta

=ProcArg	#yellow
=ClassMember	yellow #fg_310 # brown
=GlobalVar	#yellow
=ClassDecl	bold blue

:pre_idle Idle
	*		NULL		noeat call=.groovy()

.subr groovy

# #! allowed on first line

:reset Idle
	*		idle		noeat
	"#"		maybe_shebang

:maybe_shebang Idle
	*		idle		noeat
	"!"		shebang		recolor=-2

:shebang Shebang
	*		shebang
	"\n"		idle

:idle Idle
	*		idle
	"{}"		brace		recolor=-1
	"0"		first_digit	recolor=-1
	"1-9"		decimal		recolor=-1
	"."		ident_no_kw
	"\""		double_quote	recolor=-1
	"'"		single_quote	recolor=-1
	"/"		maybe_regex	recolor=-1
	"$"		not_string	buffer
	"\i"		ident		buffer

# / / regex not allowed after terms

:after_term Idle
	*		idle		noeat
	" \t)"		after_term
	"/"		slash_after_term

:slash_after_term Idle
	*		idle		noeat
	"/"		line_comment	recolor=-2
	"*"		comment		recolor=-2

:maybe_regex Constant
	*		regex		noeat
	"*"		comment			recolor=-2
	"/"		line_comment	recolor=-2

:regex Constant
	*		regex
	"\\"		regex_quote	recolor=-1
	"/"		after_term
	"$"		maybe_regex_subst	recolor=-1

:maybe_regex_subst Constant
	*		regex		noeat
	"\i"		regex_subst1	recolor=-2
	"{"		regex_subst	recolor=-2

:regex_subst Escape
	*		regex_subst
	"}"		regex

:regex_subst1 Escape
	*		regex		noeat
	".\c"		regex_subst1

:regex_quote Escape
	*		regex

:not_string Idle
	*		idle		noeat
	"\c"		global_var	recolor=-2
	"/"		dstring		recolor=-2

:brace Brace
	*		idle		noeat

:comment Comment
	*		comment
	"*"		maybe_end_comment

:maybe_end_comment Comment
	*		comment
	"/"		idle
	"*"		maybe_end_comment

:line_comment Comment
	*		line_comment
	"\n"		idle

:end_of_file_comment Comment
	*		end_of_file_comment

:first_digit Constant
	*		after_term	noeat
	"x"		hex
	"b"		binary
	"."		float
	"eE"		epart
	"0-7"		octal
	"89"		bad_number	recolor=-1
	"gGlLiIdDfF"	after_term

:bad_number Bad
	*		after_term	noeat
	"0-9"		bad_number

:octal Constant
	*		after_term	noeat
	"0-7_"		octal
	"89"		bad_number	recolor=-1

:binary Constant
	*		after_term	noeat
	"01_"		binary
	"2-9"		bad_number	recolor=-1

:hex Constant
	*		after_term	noeat
	"0-9A-Fa-f_"	hex

:decimal Constant
	*		after_term	noeat
	"0-9_"		decimal
	"eE"		epart
	"."		float
	"gGlLiIdDfF"	after_term

:float Constant
	*		after_term	noeat
	"eE"		epart
	"0-9_"		float
	"gGlLiIdDfF"	after_term

:epart Constant
	*		after_term	noeat
	"0-9+\-"	enum

:enum Constant
	*		after_term	noeat
	"0-9_"		enum
	"gGlLiIdDfF"	after_term

# Distinguish between " and """

:double_quote Constant
	*		string		noeat
	"\""		double_quote_1

:double_quote_1 Constant
	*		after_term	noeat
	"\""		tstring

# strings like "hello"
# interpolation allowed
# line crossing not allowed

:string	Constant
	*		string
	"\""		after_term
	"\n"		after_term 
	"\\"		string_escape	recolor=-1
	"$"		maybe_string_subst	recolor=-1

:maybe_string_subst Constant
	*		string		noeat
	"\i"		string_subst1	recolor=-2
	"{"		string_subst	recolor=-2

:string_subst Escape
	*		string_subst
	"}"		string

:string_subst1 Escape
	*		string		noeat
	".\c"		string_subst1
	
:string_escape Escape
	*		string
	"x"		string_hex2
	"u"		string_hex4
	"0-7"		string_octal2
	"\n"		string		recolor=-2

:string_hex4 Escape
	*		string		noeat
	"0-9a-fA-F"	string_hex3

:string_hex3 Escape
	*		string		noeat
	"0-9a-fA-F"	string_hex2

:string_hex2 Escape
	*		string		noeat
	"0-9a-fA-F"	string_hex1

:string_hex1 Escape
	*		string		noeat
	"0-9a-fA-F"	string

:string_octal2 Escape
	*		string		noeat
	"0-7"		string_octal1

:string_octal1 Escape
	*		string		noeat
	"0-7"		string

# tstrings like "hello"
# interpolation allowed
# line crossing not allowed

:tstring	Constant
	*		tstring
	"\""		tstring_maybe_done
	"\\"		tstring_escape	recolor=-1
	"$"		maybe_tstring_subst	recolor=-1

:tstring_maybe_done	Constant
	*		tstring		noeat
	"\""		tstring_maybe_done_2

:tstring_maybe_done_2	Constant
	*		tstring		noeat
	"\""		after_term

:maybe_tstring_subst Constant
	*		tstring		noeat
	"\i"		tstring_subst1	recolor=-2
	"{"		tstring_subst	recolor=-2

:tstring_subst Escape
	*		tstring_subst
	"}"		tstring

:tstring_subst1 Escape
	*		tstring		noeat
	".\c"		tstring_subst1
	
:tstring_escape Escape
	*		tstring
	"x"		tstring_hex2
	"u"		tstring_hex4
	"0-7"		tstring_octal2
	"\n"		tstring		recolor=-2

:tstring_hex4 Escape
	*		tstring		noeat
	"0-9a-fA-F"	tstring_hex3

:tstring_hex3 Escape
	*		tstring		noeat
	"0-9a-fA-F"	tstring_hex2

:tstring_hex2 Escape
	*		tstring		noeat
	"0-9a-fA-F"	tstring_hex1

:tstring_hex1 Escape
	*		tstring		noeat
	"0-9a-fA-F"	tstring

:tstring_octal2 Escape
	*		tstring		noeat
	"0-7"		tstring_octal1

:tstring_octal1 Escape
	*		tstring		noeat
	"0-7"		tstring

# strings like: $/sdfsdf/$
# interpolation allowed
	
:dstring	Constant
	*		dstring
	"$"		dstring_esc	recolor=-1
	"/"		dstring_maybe_done

:dstring_maybe_done	Constant
	*		dstring		noeat
	"$"		after_term

:dstring_esc	Escape
	*		dstring
	"/"		dstring_esc_slash

:dstring_esc_slash	Escape
	*		dstring		noeat recolor=-1
	"$"		dstring

:single_quote	Constant
	*		char		noeat
	"\'"		single_quote_1

:single_quote_1	Constant
	*		after_term	noeat
	"\'"		tchar
	
# strings like 'hello'
# no interpolation
# no line crossing

:char	Constant
	*		char
	"\n"		after_term
	"\'"		after_term
	"\\"		char_escape	recolor=-1

:char_escape Escape
	*		char
	"x"		char_hex2
	"u"		char_hex4
	"0-7"		char_octal2
	"\n"		char		recolor=-2

:char_hex4 Escape
	*		char		noeat
	"0-9a-fA-F"	char_hex3

:char_hex3 Escape
	*		char		noeat
	"0-9a-fA-F"	char_hex2

:char_hex2 Escape
	*		char		noeat
	"0-9a-fA-F"	char_hex1

:char_hex1 Escape
	*		char		noeat
	"0-9a-fA-F"	char

:char_octal2 Escape
	*		char		noeat
	"0-7"		char_octal1

:char_octal1 Escape
	*		char		noeat
	"0-7"		char

# strings like 'hello'
# no interpolation
# no line crossing

:tchar	Constant
	*		tchar
	"\'"		after_term
	"\\"		tchar_escape	recolor=-1

:tchar_maybe_done Constant
	*		tchar		noeat
	"\'"		tchar_maybe_done_2

:tchar_maybe_done_2 Constant
	*		tchar		noeat
	"\'"		after_term

:tchar_escape Escape
	*		tchar
	"x"		tchar_hex2
	"u"		tchar_hex4
	"0-7"		tchar_octal2
	"\n"		tchar		recolor=-2

:tchar_hex4 Escape
	*		tchar		noeat
	"0-9a-fA-F"	tchar_hex3

:tchar_hex3 Escape
	*		tchar		noeat
	"0-9a-fA-F"	tchar_hex2

:tchar_hex2 Escape
	*		tchar		noeat
	"0-9a-fA-F"	tchar_hex1

:tchar_hex1 Escape
	*		tchar		noeat
	"0-9a-fA-F"	tchar

:tchar_octal2 Escape
	*		tchar		noeat
	"0-7"		tchar_octal1

:tchar_octal1 Escape
	*		tchar		noeat
	"0-7"		tchar

:ident_no_kw Idle
	*		after_term	noeat
	"0"		first_digit	recolor=-1
	"1-9"		decimal		recolor=-1
	"\i"		ident_no_kw1

:ident_no_kw1 Idle
	*		after_term	noeat
	"\c"		ident_no_kw1

:ident Idle
	*		after_term	noeat strings
	"as"		operator
	"assert"	kw
	"break"		kw
	"case"		kw
	"catch"		kw
	"class"		kw
	"const"		kw
	"continue"	kw
	"def"		kw
	"default"	kw
	"do"		kw
	"else"		kw
	"enum"		kw
	"extends"	kw
	"finally"	kw
	"for"		kw
	"goto"		kw
	"if"		kw
	"implements"	kw
	"import"	kw
	"in"		operator
	"instanceof"	kw
	"interface"	kw
	"new"		operator
	"package"	kw
	"return"	kw
	"super"		kw
	"switch"	kw
	"throw"		kw
	"throws"	kw
	"trait"		kw
	"try"		kw
	"while"		kw
	"true"		lit
	"false"		lit
	"null"		lit
done
	"\c"	ident

:kw Keyword
	*		idle		noeat

:lit Constant
	*		idle		noeat

:operator Operator
	*		idle		noeat

:global_var GlobalVar
	*		idle		noeat
	"\c"		global_var

.end