Skip to main content
summaryrefslogtreecommitdiffstats
blob: 244b5fd10c58a55995b7fea00d6c9055480c3340 (plain) (blame)
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
-- @authors		Frédéric Jouault
-- @date		2007/09/19
-- @description	This TCS model defines the syntax of the ANTLRv2 language.

-- REMARK: this model can only be used for serialization so far.
-- NOT TO BE USED as a typical example of TCS model.
syntax ANTLR {

	primitiveTemplate identifier for String default using NAME:
		value = "%token%";

	primitiveTemplate stringSymbol for String using STRING:
		value = "%token%",
		serializer="'\'' + %value%.toCString() + '\''";

	primitiveTemplate integerSymbol for Integer default using INT:
		value = "Integer.valueOf(%token%)";

	primitiveTemplate floatSymbol for Double default using FLOAT:
		value = "Double.valueOf(%token%)";

	primitiveTemplate booleanSymbol for Boolean default using BOOLEAN:
		value = "Boolean.valueOf(%token%)";

	template Grammar main
		:	(isDefined(package) ?
				"header" "{"
					"package" package ";"
				"}"
			)
			"class" name <no_space> "Parser" "extends" "Parser" ";"
			"options" "{" [
				options
			] "}"
			(isDefined(actions) ?
				"{" [
					actions
				] "}"
			)
			[
				rules
			] {indentIncr = 0, nbNL = 2}
			(isDefined('lexer') ?
				'lexer'
				[ lexerRules ] {indentIncr = 0, nbNL = 2}
			)
		;

	template ProductionRule
		:	name
			(isDefined(parameters) ?
				"[" parameters{separator = ","} "]"
			)
			(isDefined(returns) ?
				"returns" "[" returns "]"
			)
			(isDefined(options) ?
				"options" "{" options "}"
			)
			-- OR not possible in TCS yet
			--(isDefined(declarations) or isDefined(labelDeclarations) ?
				"{"
					(isDefined(declarations) ?
						declarations
					)
					(isDefined(labelDeclarations) ?
						labelDeclarations
					)
				"}"
			--)
			<newline> <tab> ":"
				(isDefined(expression) ?
					<tab> expression
				)
				(isDefined(actions) ?
					[ "{" [
						actions
					] "}" ] {indentIncr = 2}
				)
			<newline> <tab> ";"
		;

	template VariableDeclaration
		:	type name
			(isDefined(initialValue) ?
				"=" initialValue
			)
			";"
		;

	template Parameter
		:	type name
		;

	template Variable
		:	declaration{refersTo = name}
		;

	template Expression abstract;

	template Alternative
		:	(isDefined(options) ?
				"options" "{"
					options
				"}" ":"
			)
			(one(expressions) ?
					expressions
				:
					"("
					expressions{separator = "|"}
					")"
			)
		;

	template Concatenation
		:	(isDefined(syntacticPredicate) ?
				"(" syntacticPredicate ")" "=>"
			)
			(isDefined(options) ?	-- was after "(", same for Alternative
				"options" "{"
					options
				"}" ":"
			)
			(one(expressions) ?
					expressions
				:
					"("
						expressions
					")"
			)
			(isDefined(action) ?
				"{" action "}"
			)
		;

	template Terminal
		:	"\"" <no_space> 'value' <no_space> "\""
			(isDefined(action) ?
				"{" action "}"
			)
		;

-- @begin ForLexer
	template CharTerminal
		:	"\'" <no_space> 'value' <no_space> "\'"
			(isDefined(action) ?
				"{" action "}"
			)
		;

	template Negation
		:	"~" expression
		;

	template Drop
		:	expression "!"
		;

	template Interval
		:	start ".." end
		;
-- @end ForLexer

	template RuleCall
		:	(isDefined(syntacticPredicate) ?
				"(" syntacticPredicate ")" "=>"
			)
			(isDefined(storeTo) ?
				storeTo "="
			)
			calledRule{refersTo = name}
			(isDefined(arguments) ?
				"[" arguments{separator = ","} "]"
			)
			(isDefined(action) ?
				"{" action "}"
			)
		;

	template TokenCall
		:	(isDefined(storeASTTo) ?
				storeASTTo ":"
			)
			name
			(isDefined(action) ?
				"{" action "}"
			)
		;

	template SemanticAction abstract;

	template SimpleSemanticAction
		:	'value'
		;

	template SemanticActionBlock
		:	actions
		;

	template ActionExpression abstract;

	template TextualExpression
		:	'value'
		;

	template LiteralExpression
		:	'value'
		;

	template Sequence_
		:	"("
				(isDefined(options) ?
					"options" "{" options "}" ":"
				)
				expression
			")"
			(lower = 0 ?
				(upper = 1 ? "?")
				(upper = -1 ? "*")
			)
			(lower = 1 ?
				(upper = -1 ? "+")
			)
		;

	symbols {
		lsquare		= "[";
		rsquare		= "]"	: rightSpace;
		excl		= "!";
		coma		= ",";
		lparen		= "(";
		rparen		= ")";
		lcurly		= "{"	: leftSpace;
		rcurly		= "}";
		semi		= ";";
		colon		= ":"	: leftSpace, rightSpace;
		colons		= "::";
		pipe		= "|";
		sharp		= "#";
		qmark		= "?";

		-- operator symbols
		point		= ".";
		rarrow		= "->";
		minus		= "-";
		star		= "*";
		slash		= "/";
		plus		= "+";
		eq		= "=";
		gt		= ">";
		lt		= "<";
		ge		= ">=";
		le		= "<=";
		ne		= "<>";
		larrow		= "<-";
	}

	lexer = "
		// no need for lexer for a serialization-only TCS model
	";

}

Back to the top