File: csharp.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 (506 lines) | stat: -rw-r--r-- 8,514 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
# JOE syntax highlight file for C#
# Based on Java highlighter

=Idle
=Ident
=Preproc
=Precondit	+Preproc
=Define		+Preproc
=DefinedIdent	+Ident
=Comment
=DocComment	+Comment
=Constant
=String		+Constant
=Character	+Constant +String
=Number		+Constant
=Boolean	+Constant
=Escape
=StringEscape	+Escape
=CharacterEscape +Escape
=Type
=Structure	+Keyword
=StorageClass	+Type +Keyword
=Modifier	+StorageClass
=Keyword
=Operator	+Keyword
=Statement	+Keyword
=Loop		+Statement
=Conditional	+Statement
=Label		+DefinedIdent
=Bad
=Brace
=Control

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

.subr csharp

:reset Idle
	*		first		noeat
	" \t"		reset

:first Idle
	*		idle		noeat
	"#"		pre		mark

:pre Preproc
	*		pre		noeat
	"a-zA-Z"	preident	recolor=-1 buffer
	" \t"		pre
	"\n"		reset

:preident Preproc
	*		preunknown	markend recolormark strings
	"if"		precondit	markend recolormark
	"else"		precondit	markend recolormark
	"elif"		precondit	markend recolormark
	"endif"		precondit	markend recolormark
	"region"	preregion	markend recolormark
	"endregion"	preregion	markend recolormark
	"define"	predefine	markend recolormark
	"undef"		predefine	markend recolormark
	"warning"	preregion	markend recolormark
	"error"		preregion	markend recolormark
	"line"		prebody		markend recolormark
done
	"a-z"		preident

:prebody Preproc
	*		prebody
	"\n"		reset

:precondit Precondit
	*		precondit
	"\n"		reset

:preregion Preproc
	*		preregion_text
	"\n"		reset

:preregion_text Comment
	*		preregion_text
	"\n"		reset

:predefine Define
	*		predefine_text	noeat
	" \t"		predefine
	"\n"		reset

:predefine_text DefinedIdent
	*		predefine_text
	" \t"		predefine_value
	"\n"		reset

:predefine_value Idle
	*		predefine_value
	"\n"		reset

:preunknown Preproc
	*		preunknown
	"\n"		reset

:idle Idle
	*		idle
	"\n"		reset
	"/"		slash
	"0"		first_digit	recolor=-1
	"1-9"		decimal		recolor=-1
	"."		maybe_float
	"\""		string		recolor=-1
	"@"		forcedliteral	recolor=-1
	"'"		char		recolor=-1
	"\i"		ident		buffer
	"{}"		brace		recolor=-1
	",:;=()><[]*&|!~+\-%^"	control	recolor=-1

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

:brace Brace
	*	idle	noeat

:control Control
	*	idle	noeat

:forcedliteral Ident
	*		idle		noeat
	"\i"		ident		recolor=-2
	"\""		forcedstring	recolor=-2

:forcedstring String string
	*		forcedstring
	"\""		forcedstringquot

:forcedstringquot String string
	*		idle			noeat
	"\""		forcedstring			# @"This -> "" <- is a literal quote"

:slash Idle
	*		idle			noeat
	"*"		comment			recolor=-2
	"/"		maybe_line_comment	recolor=-2

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

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

:maybe_line_comment Comment
	*		line_comment		noeat recolor=-1
	"/"		doc_comment		recolor=-3

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

:doc_comment DocComment
	*		doc_comment
	"BFHNTX"	doc_comment		noeat call=comment_todo.comment_todo()
	"\n"		reset

:first_digit Number
	*		idle	noeat
	"xX"		hex
	"."		float
	"eE"		epart
	"0-7"		octal
	"89"		bad_number	recolor=-1

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

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

:hex Number
	*		idle	noeat
	"0-9A-Fa-f"	hex

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

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

:float Number
	*		idle	noeat
	"eE"		epart
	"0-9"		float

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

:enum Number
	*		idle	noeat
	"0-9"		enum

:string	String string
	*		string
	"\""		idle
	"\\"		string_escape		recolor=-1
	"{"		maybe_string_control	recolor=-1
	"}"		maybe_control_end	recolor=-1

:string_escape StringEscape string
	*		string
	"xu"		string_hex_4  # Yes, \x has up to 4 numbers in C#
	"U"		string_hex_8
	"0-7"		string_octal2
	"\n"		string		recolor=-2

# Eight all-purpose (hex/unicode short/unicode long) states for hexadecimal
# escape sequences

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

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

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

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

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

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

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

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

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

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

:maybe_string_control StringEscape string
	*		string 		noeat recolor=-2
	"0-9"		string_control
	"{"		string

:string_control StringEscape string
	*		string_control
	"\""		string		noeat
	"}"		string

:maybe_control_end StringEscape string
	*		string		noeat recolor=-2
	"}"		string

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

:char_escape CharacterEscape string
	*		char
	"xu"		char_hex4
	"U"		char_hex8
	"0-7"		char_octal2
	"\n"		char		recolor=-2

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

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

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

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

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

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

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

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

:char_octal2 CharacterEscape string
	*		char		noeat
	"0-7"		char_octal3

:char_octal3 CharacterEscape string
	*		char		noeat
	"0-7"		char

:ident Ident		# http://msdn.microsoft.com/en-us/library/x53a06bb.aspx
	*		idle		noeat strings
	"abstract"	modifier
	"as"		operator
	"base"		kw
	"break"		loop
	"case"		label
	"catch"		stmt
	"checked"	operator
	"class"		struct
	"const"		storage
	"continue"	loop
	"default"	label
	"delegate"	kw
	"do"		loop
	"else"		cond
	"enum"		struct
	"event"		kw
	"explicit"	kw
	"extern"	modifier
	"finally"	stmt
	"fixed"		kw
	"for"		loop
	"foreach"	loop
	"goto"		loop
	"if"		cond
	"implicit"	kw
	"in"		operator
	"interface"	struct
	"internal"	modifier
	"is"		operator
	"lock"		stmt
	"nameof"	kw
	"namespace"	struct
	"new"		operator
	"operator"	kw
	"out"		storage
	"override"	storage
	"params"	kw
	"private"	modifier
	"protected"	modifier
	"public"	modifier
	"readonly"	modifier
	"ref"		storage
	"return"	stmt
	"sealed"	modifier
	"sizeof"	operator
	"stackalloc"	storage
	"static"	modifier
	"struct"	struct
	"switch"	cond
	"this"		kw
	"throw"		stmt
	"try"		stmt
	"typeof"	operator
	"unchecked"	operator
	"unsafe"	kw
	"using"		stmt
	"virtual"	modifier
	"volatile"	modifier
	"while"		loop
	
	# Types
	
	"bool"		type
	"Boolean"	type
	"byte"		type
	"Byte"		type
	"char"		type
	"Character"	type
	"decimal"	type
	"double"	type
	"Double"	type
	"float"		type
	"Float"		type
	"int"		type
	"Integer"	type
	"int16"		type
	"Int16"		type
	"int32"		type
	"Int32"		type
	"int64"		type
	"Int64"		type
	"IntPtr"	type
	"long"		type
	"object"	type
	"Object"	type
	"sbyte"		type
	"short"		type
	"string"	type
	"String"	type
	"uint"		type
	"uint16"	type
	"uint32"	type
	"uint64"	type
	"ulong"		type
	"ushort"	type
	"void"		type
	
	
	# These are "contextual" keywords.  Should try to do a better and
	# and find the context (most are LINQ), but it may not be possible
	# in all cases:
	
	"add"		kw
	"alias"		kw
	"ascending"	kw
	"async"		kw
	"await"		kw
	"descending"	kw
	"dynamic"	type
	"from"		kw
	"get"		kw
	"global"	kw
	"group"		kw
	"into"		kw
	"join"		kw
	"let"		kw
	"orderby"	kw
	"partial"	kw
	"remove"	kw
	"select"	kw
	"set"		kw
	"value"		kw
	"var"		type
	"where"		kw
	"yield"		kw
	
	# Literals
	
	"true"		bool
	"false"		bool
	"null"		lit
done
	"\c"		ident

:type Type
	*	idle	noeat

:kw Keyword
	*	idle	noeat

:stmt Statement
	*	idle	noeat

:cond Conditional
	*	idle	noeat

:loop Loop
	*	idle	noeat

:struct Structure
	*	idle	noeat

:storage StorageClass
	*	idle	noeat

:modifier Modifier
	*	idle	noeat

:bool Boolean
	*	idle	noeat

:lit Constant
	*	idle	noeat

:operator Operator
	*	idle	noeat

.end