File: d.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 (560 lines) | stat: -rw-r--r-- 8,818 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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
# JOE syntax highlight file for D

=Idle
=Ident
=Comment
=Constant
=String		+Constant
=Number		+Constant
=Boolean	+Constant
=Character	+String
=Escape
=StringEscape	+Escape
=CharacterEscape +StringEscape
=Type
=Keyword
=Operator	+Keyword
=Statement	+Keyword
=Conditional	+Statement
=Loop		+Statement
=Label		+DefinedIdent
=Bad
=Brace
=Control

=Methods

:begin Idle
	*	begin	noeat call=.d()

.subr d

:idle Idle
	*		idle
	"("		idle		call=.d(paren)
	"["		idle		call=.d(brack)
	"{"		do_brace	recolor=-1 noeat
#	"{"		brace		recolor=-1 call=.d(squiggly)
.ifdef paren
	")"		idle		return
.else
	")"		stray		recolor=-1
.endif
.ifdef brack
	"]"		idle		return
.else
	"]"		stray		recolor=-1
.endif
.ifdef squiggly
	"}"		brace		recolor=-1 return
.else
	"}"		stray		recolor=-1
.endif
	"\n"		idle
	"/"		slash
	"0"		first_digit	recolor=-1
	"1-9"		decimal		recolor=-1
	"."		maybe_float
	"\""		string		recolor=-1
	"'"		char		recolor=-1
	"\i"		ident		mark buffer
	",:;=><*&|!~+\-%^"	control	recolor=-1
	"r"		maybe_rstring	mark buffer
	"x"		maybe_xstring	mark buffer
	"q"		maybe_qstring	recolor=-1 mark buffer
	"`"		bstring		recolor=-1

:do_brace Brace
	*		idle		noeat
	"{"		brace		call=.d(squiggly)

:brace Brace
	*		idle		noeat

:stray Bad
	*		idle		noeat

:maybe_done Control
	*		idle		noeat
	"/"		idle		noeat return recolor=-2

:control Control
	*		idle		noeat

:slash Idle
	*		idle		noeat
	"*"		comment		recolor=-2
	"+"		idle		recolor=-2 call=.block_comment()
	"/"		line_comment	recolor=-2

:comment Comment comment
	*		comment
	# might be TODO label
	"BFHNTX"	comment		noeat call=comment_todo.comment_todo()
	"*"		maybe_end_comment

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

:line_comment Comment comment
	*		line_comment
	# might be TODO label
	"BFHNTX"	line_comment	noeat call=comment_todo.comment_todo()
	"\n"		idle

:int_postfix Number
	*		idle		noeat
	"uU"		int_postfix_1
	"L"		int_postfix_2

:int_postfix_1 Number
	*		idle		noeat
	"L"		idle

:int_postfix_2 Number
	*		idle		noeat
	"uU"		idle

:float_postfix Number
	*		idle		noeat
	"fF"		float_postfix_1
	"L"		float_postfix_1
	"i"		idle

:float_postfix_1 Number
	*		idle		noeat
	"i"		idle

:first_digit Number
	*		int_postfix	noeat
	"xX"		hex
	"bB"		bin
	"."		float
	"eE"		epart
	"0-9"		decimal

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

:octal Number
	*		int_postfix	noeat
	"0-7_"		octal
	"89"		bad_number	recolor=-1

:hex Number
	*		int_postfix	noeat
	"0-9A-Fa-f_"	hex
	"."		hexfloat
	"pP"		ppart

:hexfloat Number
	*		float_postfix	noeat
	"0-9A-Fa-f_"	hexfloat
	"pP"		ppart

:ppart Number
	*		float_postfix	noeat
	"0-9+\-"	pnum

:pnum Number
	*		float_postfix	noeat
	"0-9_"		pnum

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

:maybe_float Number
	*		idle		recolor=-2 noeat
	"\i"		not_ident	recolor=-2
	"0-9"		float		recolor=-2

:not_ident Idle
	*		idle		noeat
	"\c"		not_ident

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

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

:enum Number
	*		float_postfix	noeat
	"0-9_"		enum

:maybe_qstring Brace
	*		ident		recolor=-1 noeat
	"{"		brace		call=.d(squiggly)
	"\""		qdstring	recolor=-2

:qdstring String string
	*		qstring		save_c
	"\i"		qdelim		buffer

:qdelim String string
	*		qdelim_bad	noeat save_s
	"\c"		qdelim
	"\n"		skipline	noeat save_s

:qdelim_bad Bad
	*		qdelim_bad
	"\n"		skipline	noeat

:skipline String string
	*		skipline
	"\n"		next_line

:todelim String string
	*		todelim
	"\n"		next_line
	"\""		next_line	strings
	"&"		founddelim
done

:founddelim String string
	*		idle		noeat
	"\""		bad_line

:bad_line Bad
	*		bad_line
	"\n"		idle

# eat \n so it's not in string.
:next_line String string
	*		todelim		buffer
	"\n"		next_line

:qstring String string
	*		qstring
	&		qstring_1

:qstring_1 String string
	*		qstring		noeat
	"\""		string_postfix

:maybe_xstring Idle
	*		ident		noeat
	"\""		xstring		recolor=-2

:xstring String string
	*		bad_xstring	recolor=-1
	" \t\r\n\f0-9A-Fa-f"	xstring
	"\""		string_postfix

:bad_xstring Bad
	*		xstring		noeat

:maybe_rstring Idle
	*		ident		noeat
	"\""		rstring		recolor=-2

:rstring String string
	*		rstring
	"\""		string_postfix

:bstring String string
	*		bstring
	"`"		string_postfix

:string	String string
	*		string
	"\""		string_postfix
	"\\"		string_escape	recolor=-1
	"%"		string_control	recolor=-1

:string_postfix String string
	*		idle	noeat
	"cwd"		idle

:string_escape StringEscape string
	*		string
	"U"		string_hex8
	"u"		string_hex4
	"x"		string_hex2
	"0-7"		string_octal2
	"\n"		string		recolor=-2

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

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

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

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

: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

:string_control StringEscape string
	*		string_control
	"\n"		idle
	"\""		string		noeat
 	"diouxXeEfFgGaAcspn%SCM"	string

:char Character string
	*		char_done
	"'"		idle
	"\\"		char_escape	recolor=-1

:char_done Character string
	*		idle		noeat recolor=-3
	"\'"		idle

:char_escape CharacterEscape string
	*		char_done
	"U"		char_hex8
	"u"		char_hex4
	"x"		char_hex2
	"0-7"		char_octal2

:char_hex8 CharacterEscape string
	*		char_done	noeat
	"0-9a-fA-F"	char_hex7

:char_hex7 CharacterEscape string
	*		char_done	noeat
	"0-9a-fA-F"	char_hex6

:char_hex6 CharacterEscape string
	*		char_done	noeat
	"0-9a-fA-F"	char_hex5

:char_hex5 CharacterEscape string
	*		char_done	noeat
	"0-9a-fA-F"	char_hex4

:char_hex4 CharacterEscape string
	*		char_done	noeat
	"0-9a-fA-F"	char_hex3

:char_hex3 CharacterEscape string
	*		char_done	noeat
	"0-9a-fA-F"	char_hex2

:char_hex2 CharacterEscape string
	*		char_done	noeat
	"0-9a-fA-F"	char_hex1

:char_hex1 CharacterEscape string
	*		char_done	noeat
	"0-9a-fA-F"	char_done

:char_octal2 CharacterEscape string
	*		char_done	noeat
	"0-7"		char_octal1

:char_octal1 CharacterEscape string
	*		char_done	noeat
	"0-7"		char_done

:ident Ident
	*		ident_end	noeat recolormark strings
	"abstract"	kw
	"alias"		kw
	"align"		kw
	"asm"		kw
	"assert"	kw
	"auto"		kw
	"body"		kw
	"bool"		kw
	"break"		kw
	"byte"		kw
	"case"		kw
	"cast"		kw
	"catch"		kw
	"cdouble"	kw
	"cent"		kw
	"cfloat"	kw
	"char"		kw
	"class"		kw
	"const"		kw
	"continue"	kw
	"creal"		kw
	"dchar"		kw
	"debug"		kw
	"default"	kw
	"delegate"	kw
	"delete"	kw
	"deprecated"	kw
	"do"		kw
	"double"	kw
	"else"		kw
	"enum"		kw
	"export"	kw
	"extern"	kw
	"false"		kw
	"final"		kw
	"finally"	kw
	"float"		kw
	"for"		kw
	"foreach"	kw
	"foreach_reverse"	kw
	"function"	kw
	"goto"		kw
	"idouble"	kw
	"if"		kw
	"ifloat"	kw
	"immutable"	kw
	"import"	kw
	"in"		kw
	"inout"		kw
	"int"		kw
	"interface"	kw
	"invariant"	kw
	"ireal"		kw
	"is"		kw
	"lazy"		kw
	"long"		kw
	"macro"		kw
	"mixin"		kw
	"module"	kw
	"new"		kw
	"nothrow"	kw
	"null"		kw
	"out"		kw
	"override"	kw
	"package"	kw
	"pragma"	kw
	"private"	kw
	"protected"	kw
	"public"	kw
	"pure"		kw
	"real"		kw
	"ref"		kw
	"return"	kw
	"scope"		kw
	"shared"	kw
	"short"		kw
	"static"	kw
	"struct"	kw
	"super"		kw
	"switch"	kw
	"synchronized"	kw
	"template"	kw
	"this"		kw
	"throw"		kw
	"true"		kw
	"try"		kw
	"typedef"	kw
	"typeid"	kw
	"typeof"	kw
	"ubyte"		kw
	"ucent"		kw
	"uint"		kw
	"ulong"		kw
	"union"		kw
	"unittest"	kw
	"ushort"	kw
	"version"	kw
	"void"		kw
	"volatile"	kw
	"wchar"		kw
	"while"		kw
	"with"		kw
	"__FILE__"	kw
	"__MODULE__"	kw
	"__LINE__"	kw
	"__FUNCTION__"	kw
	"__PRETTY_FUNCTION__"	kw
	"__gshared"	kw
	"__traits"	kw
	"__vector"	kw
	"__parameters"	kw
done
	"\c"		ident

:type Type
	*		idle		noeat

:kw Keyword
	*		idle		noeat

:bad_kw Bad
	*		idle		noeat

:bool Boolean
	*		idle		noeat

:lit Constant
	*		idle		noeat

:loop Loop
	*		idle		noeat

:cond Conditional
	*		idle		noeat

:stmt Statement
	*		idle		noeat

:operator Operator
	*		idle		noeat

:ident_end Idle
	*		idle		noeat
	" "		ident_end
	"("		method_end	noeat recolormark

:method_end Methods
	*		idle		noeat

.end

# Recursive block comments

.subr block_comment

:idle Comment comment
	*		idle
	# might be TODO label
	"BFHNTX"	idle		noeat call=comment_todo.comment_todo()
	"+"		maybe_done
	"/"		maybe_recur

:maybe_done Comment comment
	*		idle	noeat
	"/"		idle	return

:maybe_recur Comment comment
	*		idle	noeat
	"+"		idle	call=.block_comment()

.end