File: CSharpLexerBase.g

package info (click to toggle)
antlr 2.7.7%2Bdfsg-9.2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 9,964 kB
  • sloc: java: 54,649; cs: 12,537; makefile: 8,847; cpp: 7,359; pascal: 5,273; sh: 4,333; python: 4,299; lisp: 1,969; xml: 220; lex: 192; ansic: 127
file content (200 lines) | stat: -rw-r--r-- 4,701 bytes parent folder | download | duplicates (10)
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
header
{
	using System.Globalization;
}

options
{
	language 	= "CSharp";	
}

/*
[The "BSD licence"]
Copyright (c) 2002-2005 Kunle Odutola
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


/// <summary>
/// The basic building block of C# Preprocessors and Lexers.
/// </summary>
///
/// <remarks>
/// <para>
/// The Lexer defined below is effectively an abstract base class that collects together a
/// number of rules that are useful to all Preprocessors and Lexers for the C# language.
/// </para>
///
/// <para>
/// History
/// </para>
///
/// <para>
/// 26-Jan-2003 kunle      Derived this Lexer from the original combined grammar <br/>
/// </para>
///
/// </remarks>


*/
class CSharpLexerBase extends UnicodeLexerBase;

options
{
	importVocab							= UnicodeLexerBase;
	exportVocab							= CSharpLexerBase;
	charVocabulary						= '\u0000'..'\uFFFE';	// All UNICODE characters except \uFFFF [and \u0000 to \u0002 used by ANTLR]
	k									= 2;
	testLiterals						= false;   				// don't automatically test for literals
	defaultErrorHandler					= false;
}

tokens
{
	TRUE		= "true";
	FALSE		= "false";
	DEFAULT		= "default";

	PP_DEFINE;
	PP_UNDEFINE;
	PP_COND_IF;
	PP_COND_ELIF;
	PP_COND_ELSE;
	PP_COND_ENDIF;
	PP_LINE;
	PP_ERROR;
	PP_WARNING;
	PP_REGION;
	PP_ENDREGION;
	
	PP_FILENAME;
	PP_IDENT;
	PP_STRING;
	PP_NUMBER;
	
	WHITESPACE;
}

//======================================
// Start of Lexer Rules
//======================================

// The following group of rules are shared by C# Preprocessors and Lexers
QUOTE			:	'"'		;
OPEN_PAREN		: 	'('		;
CLOSE_PAREN		: 	')'		;
LOG_NOT			: 	'!'		;
LOG_AND			: 	"&&"	;
LOG_OR			: 	"||"	;
EQUAL			: 	"=="	;
NOT_EQUAL		: 	"!="	;


//======================================
// Section A.1.3 Comments
//
SL_COMMENT
	:	"//" ( NOT_NEWLINE )* (NEWLINE)?
	;

//======================================
// Section A.1.1 Line terminators
//
//protected 
NEWLINE
	:	( '\r' 									// MacOS-style newline
		  ( options { generateAmbigWarnings=false; } 
		    : '\n' 								// DOS/Windows style newline
		  )?
		| '\n'									// UNIX-style newline
		| '\u2028'								// UNICODE line separator
		| '\u2029'								// UNICODE paragraph separator
		)					
		{ newline(); }
	;

protected NOT_NEWLINE
	: ~( '\r' | '\n' | '\u2028' | '\u2029'	)
	;


//======================================
// Section A.1.2 White space
//

protected NON_NEWLINE_WHITESPACE
	:	'\t'			// horiz_tab
//	|	' '				// space -- commented out because UNICODE_CLASS_Zs contains space too
	| 	'\f'			// form_feed
	| 	'\u000B'		// '\u000B' == '\v' == vert_tab
	| 	UNICODE_CLASS_Zs	
	;


//======================================
// Section A.1.5 Unicode character escape sequences
//
protected UNICODE_ESCAPE_SEQUENCE
	: 	'\\'
	   ( 'u' HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT
	   | 'U' HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT HEX_DIGIT
	   )
	;


protected DECIMAL_DIGIT
	:	('0'..'9')
	;
		
protected HEX_DIGIT
	:	('0'..'9'|'A'..'F'|'a'..'f')
	;


protected LETTER_CHARACTER   
	:  UNICODE_CLASS_Lu 
	|  UNICODE_CLASS_Ll 
	|  UNICODE_CLASS_Lt 
	|  UNICODE_CLASS_Lm 
	|  UNICODE_CLASS_Lo 
	|  UNICODE_CLASS_Nl
	;

protected DECIMAL_DIGIT_CHARACTER
	:	UNICODE_CLASS_Nd
	;
	
protected CONNECTING_CHARACTER
	:	UNICODE_CLASS_Pc
	;
	
protected COMBINING_CHARACTER
	:	UNICODE_CLASS_Mn 
	|	UNICODE_CLASS_Mc
	;
	
protected FORMATTING_CHARACTER
	:	UNICODE_CLASS_Cf
	;