File: groovy.jsf

package info (click to toggle)
joe 4.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,308 kB
  • sloc: ansic: 51,623; sh: 4,358; makefile: 149; csh: 26
file content (502 lines) | stat: -rw-r--r-- 8,568 bytes parent folder | download | duplicates (3)
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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
# JOE syntax highlight file for Groovy

=Idle
=Ident
=Comment
=Shebang	+Preproc
=Constant
=Number		+Constant
=Boolean	+Constant
=String		+Constant
=Regex		+String
=Escape
=StringEscape	+Escape +String
=RegexEscape	+StringEscape
=Keyword
=Operator	+Keyword
=Statement	+Keyword
=Conditional	+Statement
=Loop		+Statement
=Structure	+Type +Keyword
=Label		+DefinedIdent
=StorageClass	+Type +Keyword
=Bad
=Brace
=Builtin	+DefinedFunction

: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 Regex string
	*		regex		noeat
	"*"		comment			recolor=-2
	"/"		line_comment	recolor=-2

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

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

:regex_subst RegexEscape string
	*		regex_subst
	"}"		regex

:regex_subst1 RegexEscape string
	*		regex		noeat
	".\c"		regex_subst1

:regex_quote RegexEscape string
	*		regex

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

:brace Brace
	*		idle		noeat

:comment Comment comment
	*		comment
	"BFHNTX"	comment		noeat call=comment_todo.comment_todo()
	"*"		maybe_end_comment

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

:line_comment Comment comment
	*		line_comment
	"BFHNTX"	line_comment	noeat call=comment_todo.comment_todo()
	"\n"		idle

:end_of_file_comment Comment comment
	*		end_of_file_comment

:first_digit Number
	*		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 Number
	*		after_term	noeat
	"0-7_"		octal
	"89"		bad_number	recolor=-1

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

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

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

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

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

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

# Distinguish between " and """

:double_quote String string
	*		string		noeat
	"\""		double_quote_1

:double_quote_1 String string
	*		after_term	noeat
	"\""		tstring

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

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

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

:string_subst StringEscape string
	*		string_subst
	"}"		string

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

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

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

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

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

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

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

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

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

:tstring_maybe_done	String string
	*		tstring		noeat
	"\""		tstring_maybe_done_2

:tstring_maybe_done_2	String string
	*		tstring		noeat
	"\""		after_term

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

:tstring_subst StringEscape string
	*		tstring_subst
	"}"		tstring

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

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

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

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

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

:tstring_octal2 StringEscape string
	*		tstring		noeat
	"0-7"		tstring_octal1

:tstring_octal1 StringEscape string
	*		tstring		noeat
	"0-7"		tstring

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

:dstring_maybe_done	String string
	*		dstring		noeat
	"$"		after_term

:dstring_esc	StringEscape string
	*		dstring
	"/"		dstring_esc_slash

:dstring_esc_slash	StringEscape string
	*		dstring		noeat recolor=-1
	"$"		dstring

:single_quote	String string
	*		char		noeat recolor=-1
	"\'"		single_quote_1

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

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

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

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

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

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

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

:char_octal2 StringEscape string
	*		char		noeat
	"0-7"		char_octal1

:char_octal1 StringEscape string
	*		char		noeat
	"0-7"		char

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

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

:tchar_maybe_done String string
	*		tchar		noeat
	"\'"		tchar_maybe_done_2

:tchar_maybe_done_2 String string
	*		tchar		noeat
	"\'"		after_term

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

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

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

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

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

:tchar_octal2 StringEscape string
	*		tchar		noeat
	"0-7"		tchar_octal1

:tchar_octal1 StringEscape string
	*		tchar		noeat
	"0-7"		tchar

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

:ident_no_kw1 Ident
	*		after_term	noeat
	"\c"		ident_no_kw1

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

:kw Keyword
	*		idle		noeat

:stmt Statement
	*		idle		noeat

:loop Loop
	*		idle		noeat

:cond Conditional
	*		idle		noeat

:struct Structure
	*		idle		noeat

:storage StorageClass
	*		idle		noeat

:label Label
	*		idle		noeat

:lit Constant
	*		idle		noeat

:bool Boolean
	*		idle		noeat

:operator Operator
	*		idle		noeat

:builtin Builtin
	*		idle		noeat
	"\c"		builtin

.end