forked from Hywan/Hoathis-Lua
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGrammar.pp
285 lines (246 loc) · 8.18 KB
/
Grammar.pp
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
//
// Hoa
//
//
// @license
//
// New BSD License
//
// Copyright © 2007-2013, Ivan Enderlin. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * 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.
// * Neither the name of the Hoa nor the names of its contributors may be
// used to endorse or promote products derived from this software without
// specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT HOLDERS AND CONTRIBUTORS 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.
//
// Grammar \Hoathis\Lua\Grammar.
//
// Provide grammar for Lua.
//
// @author Ivan Enderlin <[email protected]>
// @copyright Copyright © 2007-2013 Ivan Enderlin.
// @license New BSD License
//
%skip blank [\s\n]+
%skip block_comment \-\-\[\[(.|\n)*?\-\-\]\]
%skip comment \-\-[^\n]*
// Keywords.
%token and and(?=\W)
%token break break(?=\W)
%token do do(?=\W)
%token elseif elseif(?=\W)
%token else else(?=\W)
%token end end(?=\W)
%token false false(?=\W)
%token for for(?=\W)
%token function function(?=\W)
%token goto goto(?=\W)
%token if if(?=\W)
%token in in(?=\W)
%token local local(?=\W)
%token nil nil(?=\W)
%token not not(?=\W)
%token or or(?=\W)
%token repeat repeat(?=\W)
%token return return(?=\W)
%token then then(?=\W)
%token true true(?=\W)
%token until until(?=\W)
%token while while(?=\W)
// Operators.
%token plus \+
%token minus \-
%token times \*
%token div /
%token modulo %
%token pow \^
%token length #
%token dequal ==
%token nequal ~=
%token lte <=
%token gte >=
%token lt <
%token gt >
%token equal =
%token parenthesis_ \(
%token _parenthesis \)
%token brace_ \{
%token _brace \}
%token bracket_ \[
%token _bracket \]
%token dcolon ::
%token semicolon ;
%token colon :
%token comma ,
%token tpoint \.\.\.
%token dpoint \.\.
%token point \.
// Values.
%token string ("|')(.*?)(?<!\\\\)\1
%token number [\-+]?(0|[1-9]\d*)(\.\d+)?([eE][\+\-]?\d+)?
// Misc.
// Identifier.
%token identifier [\w_]([\w\d_]+)?
chunk:
block()
#block:
block_code()
block_code:
statement()* return_statement()?
statement:
::semicolon::
| variables_set() ::equal:: expressions() #assignation
| function_call()
| label()
| ::goto:: <identifier> #goto
| ::do:: block_code() ::end:: #do_block
| ::while:: expression() ::do:: block() ::end:: #while_loop
| ::repeat:: block() ::until:: expression() #do_while_loop
| ::if:: expression() ::then:: block()
( <elseif> expression() ::then:: block() )*
( <else> block() )? ::end:: #if
| ::for:: <identifier> ::equal::
expression() ::comma:: expression() ( ::comma:: expression() )?
::do:: block() ::end:: #for_loop
| ::for:: names() ::in:: expressions() ::do:: block() ::end:: #for_in_loop
| ::function:: function_name() function_body() #function
| ::local:: ::function:: <identifier> function_body() #local_function
| ::local:: names() ( ::equal:: expressions() ) #assignation_local
return_statement:
::return:: expressions()? ::semicolon::? #return
| ::break:: ::semicolon::? #break
#label:
::dcolon:: <identifier> ::dcolon::
function_name:
(<identifier> ( ::point:: <identifier> #table_access_self)*
::colon:: <identifier> #table_access_self)
| (<identifier> ( ::point:: <identifier> #table_access)*)
variables_get:
variable_get()
| (variable_get() ( ::comma:: variable_get() )* #expression_group)
variables_set:
variable()
| ( variable() ( ::comma:: variable() )* #expression_group)
variable_get:
variable()
| ::parenthesis_:: expression() ::_parenthesis:: #onlyfirst
| (
::parenthesis_:: expression() ::_parenthesis::
)
(
<bracket_> expression() ::_bracket:: #table_access
| ::point:: <identifier> #table_access
)+
variable:
<identifier>
| (
<identifier>
| function_call()
)
(
<bracket_> expression() ::_bracket:: #table_access
| ::point:: <identifier> #table_access
)+
names:
<identifier>
| <identifier> ( ::comma:: <identifier> )* #expression_group
expressions:
expression()
| expression() ( ::comma:: expression() )* #expression_group
expression:
expression_primary()
( ::or:: expression() #or )?
expression_primary:
expression_secondary()
( ::and:: expression() #and )?
expression_secondary:
expression_tertiary()
( ( <lt> | <gt> | <lte> | <gte> | <nequal> | <dequal> )
expression() #comparison )?
expression_tertiary:
expression_quaternary()
( ::dpoint:: expression() #concatenation )?
expression_quaternary:
expression_quinary()
( ( ::plus:: #addition | ::minus:: #substraction ) expression() )?
expression_quinary:
expression_senary()
( ( ::times:: #multiplication | ::div:: #division | ::modulo:: #modulo )
expression() )?
expression_senary:
expression_term()
( ( ::not:: #not | ::length:: #length | ::minus:: #negative | ::pow:: #power | ::plus::)
expression() )?
expression_term:
(::minus:: #negative | ::plus:: | ::pow:: #power | ::not:: #not ) expression()
| <nil>
| <false>
| <true>
| (::minus:: #negative | ::plus:: | ::pow:: #power)? <number>
| <string>
| <tpoint>
| variable_get()
| function_call()
| function_definition()
| table_constructor()
//#function_call:
// ( <identifier> | ::parenthesis_:: expression() ::_parenthesis:: )
// (
// <bracket_> expression() ::_bracket:: #table_access
// | ::point:: ( <identifier> | function_call() ) #table_access
// )*
// ( ::colon:: <identifier> #table_access_method)? arguments()
#function_call:
(<identifier>
| ::parenthesis_:: expression() ::_parenthesis::
| table_access_function())
arguments()
table_access_function:
( <identifier> | ::parenthesis_:: expression() ::_parenthesis:: )
(
(( (<bracket_> expression() ::_bracket:: ) #table_access_self
| ::point:: ( <identifier> | function_call() ) #table_access_self )*
( ::colon:: <identifier> #table_access_self ))
| (( (<bracket_> expression() ::_bracket:: ) #table_access
| ::point:: ( <identifier> | function_call() ) #table_access )*)
)
#arguments:
::parenthesis_:: expressions()? ::_parenthesis::
| table_constructor()
| <string>
function_definition:
::function:: function_body() #function_lambda
function_body:
::parenthesis_:: parameters()? ::_parenthesis:: _function_body() ::end::
_function_body:
block() #function_body
#parameters:
names() ( ::comma:: ::tpoint:: #tpointfcn)?
| ::tpoint:: #tpointfcn
table_constructor:
::brace_:: fields()? ::_brace:: #table
fields:
field() ( ( ::comma:: | ::semicolon:: ) field() )*
( ::comma:: | ::semicolon:: )?
#field:
( ::bracket_:: expression() ::_bracket:: ::equal:: #field_val
| <identifier> ::equal:: #field_name)?
expression()