File: csharp.jsf

package info (click to toggle)
ne 3.3.3-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,192 kB
  • sloc: ansic: 28,739; perl: 571; makefile: 265; sh: 9
file content (459 lines) | stat: -rw-r--r-- 6,984 bytes parent folder | download | duplicates (4)
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
# JOE syntax highlight file for C#
# Based on Java highlighter

=Idle
=Preproc 	yellow
=Comment 	green
=DocComment	bold blue
=Constant 	cyan
=Escape 	bold cyan
=Type 		bold blue
=Keyword 	blue
=Operator	blue
=Bad		bold red
=Brace		magenta
=Control

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

.subr csharp

:reset Idle
	*		first		noeat
	" \t"		reset

:first Idle
	*		idle		noeat
	"#"		pre		recolor=-1

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

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

:prebody Preproc
	*		prebody
	"\n"		reset

:preregion Preproc
	*		preregion_text
	"\n"		reset

:preregion_text Constant
	*		preregion_text
	"\n"		reset

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

:predefine_text Constant
	*		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
	"a-zA-Z_"	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 Idle
	*		idle		noeat
	"a-zA-Z_"	ident		recolor=-2
	"\""		forcedstring	recolor=-2

:forcedstring Constant
	*		forcedstring
	"\""		forcedstringquot

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

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

:comment Comment
	*		comment
	"*"		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
	"\n"		reset

:doc_comment DocComment
	*		doc_comment
	"\n"		reset

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

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

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

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

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

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

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

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

:string_escape Escape
	*		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 Escape
	*		string		noeat
	"0-9a-fA-F"	string_hex_7

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

: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_octal3

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

:ident Idle		# http://msdn.microsoft.com/en-us/library/x53a06bb.aspx
	*		idle		noeat strings
	"abstract"	kw
	"as"		operator
	"base"		kw
	"break"		kw
	"case"		kw
	"catch"		kw
	"checked"	operator
	"class"		kw
	"const"		kw
	"continue"	kw
	"default"	kw
	"delegate"	kw
	"do"		kw
	"else"		kw
	"enum"		kw
	"event"		kw
	"explicit"	kw
	"extern"	kw
	"finally"	kw
	"fixed"		kw
	"for"		kw
	"foreach"	kw
	"goto"		kw
	"if"		kw
	"implicit"	kw
	"in"		operator
	"interface"	kw
	"internal"	kw
	"is"		kw
	"lock"		kw
	"namespace"	kw
	"new"		operator
	"operator"	kw
	"out"		kw
	"override"	kw
	"params"	kw
	"private"	kw
	"protected"	kw
	"public"	kw
	"readonly"	kw
	"ref"		kw
	"return"	kw
	"sealed"	kw
	"sizeof"	operator
	"stackalloc"	kw
	"static"	kw
	"struct"	kw
	"switch"	kw
	"this"		kw
	"throw"		kw
	"try"		kw
	"typeof"	operator
	"unchecked"	operator
	"unsafe"	kw
	"using"		kw
	"virtual"	kw
	"volatile"	kw
	"while"		kw
	
	# 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
	"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"		lit
	"false"		lit
	"null"		lit
done
	"a-zA-Z0-9_"	ident

:type Type
	*	idle	noeat

:kw Keyword
	*	idle	noeat

:lit Constant
	*	idle	noeat

:operator Operator
	*	idle	noeat

.end