-
Notifications
You must be signed in to change notification settings - Fork 0
/
grammar.bnf
433 lines (344 loc) · 14.7 KB
/
grammar.bnf
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
// This file describes the grammar of the Spawn programming language.
//
// This is EBNF-like notation:
// - `::=` is used to define a rule
// - `|` is used to define alternatives
// - `?` is used to define an optional element
// - `*` is used to define a repetition of zero or more times
// - `+` is used to define a repetition of one or more times
// - `()` is used to group elements
//
// - rules with an uppercase letter define parser rules
// - rules with a lowercase letter define lexer rules
File ::= ShebangClause? ModuleClause Import* TopLevelDeclaration*
ShebangClause ::= shebang
ModuleClause ::= Attributes? 'module' identifier semi
// Imports
Import ::= 'import' ImportPath ImportAlias? SelectiveImportList?
ImportPath ::= identifier ('.' identifier)*
ImportAlias ::= 'as' identifier
SelectiveImportList ::= '{' SelectiveImportListElements? '}'
SelectiveImportListElements ::= identifier (',' identifier)* ','?
TopLevelDeclaration ::=
ConstDeclaration
| ModuleVarDeclaration
| TypeAliasDeclaration
| UnionDeclaration
| FunctionDeclaration
| MethodDeclaration
| StaticMethodDeclaration
| StructDeclaration
| EnumDeclaration
| InterfaceDeclaration
| TestDeclaration
| ExternList
| Attributes
// Attributes
Attributes ::= Attribute (semi Attribute)* semi?
Attribute ::= '#[' AttributeExpression ']'
AttributeExpression ::= AttributeName AttributeValue?
AttributeName ::= identifier | 'unsafe' | SelectorExpression // unsafe allowed for `#[unsafe]` functions
AttributeValue ::= '(' ArgumentList? ')'
// Constants and module variables
ConstDeclaration ::= Attributes? ExternHeader? 'pub'? 'comptime'? 'const' ( ConstDefinition | '(' ConstDefinitions? ')' )
ConstDefinitions ::= ConstDefinition (semi ConstDefinition)* semi?
ConstDefinition ::= identifier '=' Expression
ModuleVarDeclaration ::= Attributes? ExternHeader? 'pub'? 'var' ( ModuleVarDefinition | '(' ModuleVarDefinitions? ')' )
ModuleVarDefinitions ::= ModuleVarDefinition (semi ModuleVarDefinition)* semi?
ModuleVarDefinition ::= identifier '=' Expression
// Type aliases and unions
TypeAliasDeclaration ::= Attributes? ExternHeader? 'pub'? 'type' identifier GenericParameters? WhereConstraints? '=' Type
UnionDeclaration ::= Attributes? 'pub'? 'union' identifier GenericParameters? WhereConstraints? '=' TypeUnionList
TypeUnionList ::= Type ( '|' Type)*
ExternHeader ::= 'extern' StringLiteral?
ExternList ::= Attributes? ExternHeader '{' (TopLevelDeclaration semi?)* '}'
// Functions, static and instance methods with generics
FunctionDeclaration ::= Attributes? ExternHeader? 'pub'? 'fn' identifier GenericParameters? Signature WhereConstraints? Block?
Signature ::= Parameters Result?
Parameters ::= '(' Parameter (',' Parameter)* ','? ')'
Parameter ::= 'mut'? identifier? '...'? Type ParameterDefaultValue?
ParameterDefaultValue ::= '=' Expression
Result ::= '->' Type
MethodDeclaration ::= Attributes? 'pub'? 'fn' '(' Receiver ')' identifier GenericParameters? Signature WhereConstraints? Block?
// `mut a Foo` is forbidden
Receiver ::= identifier Type
StaticMethodDeclaration ::= Attributes? 'pub'? 'fn' identifier '.' identifier GenericParameters? Signature WhereConstraints? Block?
// Structs, interfaces, enums and tests
StructDeclaration ::= Attributes? ExternHeader? 'pub'? 'struct' identifier GenericParameters? WhereConstraints? '{' FieldDeclaration* '}'
FieldDeclaration ::= Attributes? (PlainFieldDeclaration | EmbeddedDefinition) semi?
PlainFieldDeclaration ::= identifier Type DefaultFieldValue?
DefaultFieldValue ::= '=' Expression
EmbeddedDefinition ::= identifier | RefType | QualifiedType | GenericType
InterfaceDeclaration ::= Attributes? 'pub'? 'interface' identifier GenericParameters? WhereConstraints? '{' InterfaceMember* '}'
InterfaceMember ::= (InterfaceMethodDefinition | InterfaceEmbeddedDefinition) semi?
InterfaceMethodDefinition ::= Attributes? 'fn' identifier GenericParameters? Signature WhereConstraints? Block?
InterfaceEmbeddedDefinition ::= identifier | QualifiedType | GenericType
EnumDeclaration ::= Attributes? 'pub'? 'enum' identifier EnumBackedType? '{' EnumVariantDeclaration* '}'
EnumBackedType ::= 'as' Type
EnumVariantDeclaration ::= Attributes? identifier DefaultEnumVariantValue? semi?
DefaultEnumVariantValue ::= '=' Expression
TestDeclaration ::= Attributes? 'test' StringLiteral Block
GenericParameters ::= '[' GenericParameterList ']'
GenericParameterList ::= GenericParameter (',' GenericParameter)* ','?
GenericParameter ::= (PlainGenericParameter | ConstantGenericParameter) GenericParameterDefaultValue?
GenericParameterDefaultValue ::= '=' Expression
PlainGenericParameter ::= identifier (':' Constraints)?
ConstantGenericParameter ::= 'const' identifier 'as' Type
WhereConstraints ::= semi? WhereClause semi?
WhereClause ::= 'where' semi? WhereClauseItem (',' WhereClauseItem)* ','?
WhereClauseItem ::= identifier ':' Constraints
Constraints ::= Type ('+' Type)*
// Statements
Statement ::=
ExpressionStatement
| VarDeclaration
| AssignStatement
| SendStatement
| ForStatement
| CompileTimeForStatement
| AssertStatement
| LabeledStatement
| DeferStatement
| IncDecStatement
ExpressionStatement ::= Expression semi
VarDeclaration ::= VarDefinitionList ':=' Expression
VarDefinitionList ::= VarDefinition (',' VarDefinition)*
VarDefinition ::= 'mut'? identifier
AssignOp ::= '=' | '+=' | '-=' | '|=' | '^=' | '*=' | '/=' | '%=' | '<<=' | '>>=' | '>>>=' | '&=' | '&^='
AssignStatement ::= Expression AssignOp Expression
SendStatement ::= Channel '<-' Expression
Channel ::= Expression
ForStatement ::= 'for' (ForClause | RangeClause | Expression)? Block
ForClause ::= VarDeclaration? ';' Expression? ';' ForClausePostStatement?
ForClausePostStatement ::= AssignStatement | IncDecStatement
RangeClause ::= VarDefinitionList 'in' Expression
CompileTimeForStatement ::= '$for' (ForClause | RangeClause | Expression) Block
AssertStatement ::= 'assert' Expression (',' Expression)?
Label ::= identifier ':'
LabeledStatement ::= Label Statement?
DeferStatement ::= 'defer' Expression
IncDecStatement ::= Expression ('++' | '--')
// Expressions
Expression ::=
identifier
| comptime_identifier
| OrExpression
| AndExpression
| ConditionalExpression
| AddExpression
| MulExpression
| TakeAddrExpression
| UnaryExpression
| ReceiveExpression
| RangeExpression
| FunctionLiteral
| LambdaLiteral
| MatchExpression
| SelectExpression
| IfExpression
| CompileTimeIfExpression
| InExpression
| IsExpression
| AsExpression
| EnumFetchExpression
| UnpackingExpression
| MutExpression
| SpawnExpression
| ReturnExpression
| UnsafeExpression
| CompileTimeExpression
| BreakExpression
| ContinueExpression
| GotoExpression
| SelectorExpression
| SafeSelectorExpression
| CompileTimeSelectorExpression
| CallExpression
| IndexExpression
| OrBlockExpression
| OptionPropagationExpression
| ResultPropagationExpression
| TypeInitializer
| ListExpression
| Block
| TupleLiteral
| ArrayLiteral
| MapLiteral
| Literal
| ParenthesesExpression
OrExpression ::= Expression '||' Expression
AndExpression ::= Expression '&&' Expression
RelOp ::= '==' | '!=' | '<' | '<=' | '>' !'>' | '>='
ConditionalExpression ::= Expression RelOp Expression
AddOp ::= '+' | '-' | '|' | '^'
AddExpression ::= Expression AddOp Expression
MulOp ::= '*' | '/' | '%' | '<<' | '>>' | '>>>' | '&' | '&^'
MulExpression ::= Expression MulOp Expression
TakeAddrExpression ::= ('&' | '&mut') Expression
UnaryOp ::= '+' | '-' | '!' | '^' | '~' | '*'
UnaryExpression ::= UnaryOp Expression
ReceiveExpression ::= '<-' Expression
RangeExpression ::= Expression? ('..' | '..=') Expression? RangeStepExpression?
RangeStepExpression ::= 'step' Expression
FunctionLiteral ::= 'fn' GenericParameters? Signature WhereConstraints? Block
LambdaLiteral ::= LambdaSignature Expression
LambdaSignature ::= LambdaParameters ('->' Type)?
LambdaParameters ::= '||' | ('|' LambdaParametersList? '|')
LambdaParametersList ::= LambdaParameter (',' LambdaParameter)*
LambdaParameter ::= 'mut'? identifier '...'? Type?
MatchExpression ::= 'match' Expression? '{' MatchArm* MatchElseArm? '}'
MatchArm ::= MatchArmExpressionList '=>' MatchArmBody (',' | semi)?
MatchArmExpressionList ::= MatchArmExpression (',' MatchArmExpression)*
MatchArmExpression ::= Expression | Type
MatchArmBody ::= Expression | Block
MatchElseArm ::= 'else' '=>' MatchArmBody (',' | semi)?
SelectExpression ::= 'select' '{' SelectArm* SelectElseArm? '}'
SelectArm ::= SelectArmStatement '=>' SelectArmBody (',' | semi)?
SelectArmStatement ::= VarDeclaration | AssignStatement | SendStatement | Expression
SelectArmBody ::= Expression | Block
SelectElseArm ::= 'else' '=>' SelectArmBody (',' | semi)?
IfExpression ::= 'if' Condition Block ElseBranch?
Condition ::= VarDeclaration | Expression
ElseBranch ::= IfExpression | ('else' Block)
CompileTimeIfExpression ::= '$if' Condition Block CompileTimeElseBranch?
CompileTimeElseBranch ::= '$else' (CompileTimeIfExpression | Block)
InExpression ::= Expression ('in' | '!in') Expression
IsExpression ::= Expression ('is' | '!is') Type
AsExpression ::= Expression ('as' | 'as?') Type
EnumFetchExpression ::= '.' identifier
UnpackingExpression ::= '...' Expression
MutExpression ::= 'mut' Expression
SpawnExpression ::= 'spawn' Expression
ReturnExpression ::= 'return' Expression?
UnsafeExpression ::= 'unsafe' Block
CompileTimeExpression ::= 'comptime' Expression
BreakExpression ::= 'break' identifier?
ContinueExpression ::= 'continue' identifier?
GotoExpression ::= 'goto' identifier
SelectorExpression ::= Expression '.' identifier
SafeSelectorExpression ::= Expression '?.' identifier
CompileTimeSelectorExpression ::= Expression '.' '$(' Expression ')'
CallExpression ::= Expression GenericArguments? '(' ArgumentList? ')'
ArgumentList ::= Argument (',' Argument)* ','?
Argument ::= Expression | NamedArgument
NamedArgument ::= identifier ':' Expression
GenericArguments ::= '[' TypeList ']'
IndexExpression ::= Expression '[' Expression ']'
OrBlockExpression ::= Expression 'or' Block
OptionPropagationExpression ::= Expression '?'
ResultPropagationExpression ::= Expression '!'
TypeInitializer ::= TypeInitializerType '{' UnpackingExpression? KeyValue* '}'
TypeInitializerType ::= ArrayType | FixedSizeArrayType | MapType |
ChannelType | identifier | QualifiedType |
GenericType
KeyValue ::= identifier ':' Expression
ListExpression ::= Expression (',' Expression)* ','?
Block ::= '{' Statement* '}'
TupleLiteral ::= '(' ListExpression? ')'
ArrayLiteral ::= '[' ListExpression? ']'
MapLiteral ::= '{' MapKeyValue* '}'
MapKeyValue ::= Expression ':' Expression
Literal ::=
int_lit
| hex_lit
| octal_lit
| binary_lit
| float_lit
| rune
| bool_lit
| NoneLiteral
| NilLiteral
| StringLiteral
NilLiteral ::= 'nil'
NoneLiteral ::= 'none'
StringLiteral ::= 'raw_string' | StringTemplate
quote ::= '"' | "'"
StringTemplate ::= quote StringTemplatePart* quote
StringTemplatePart ::=
LITERAL_STRING_TEMPLATE_ENTRY
| LITERAL_STRING_TEMPLATE_ESCAPE_ENTRY
| StringTemplateEntry
StringTemplateEntry ::= '${' Expression '}'
ParenthesesExpression ::= '(' Expression ')'
// Types
Type ::=
identifier
| QualifiedType
| GenericType
| ArrayType | FixedSizeArrayType
| MapType
| TupleType
| RefType | PointerType
| OptionType
| ResultType
| FunctionType
| ChannelType
| LiteralType
QualifiedType ::= identifier '.' identifier
GenericType ::= (identifier | QualifiedType) GenericArguments?
ArrayType ::= '[' ']' Type
FixedSizeArrayType ::= '[' Expression ']' Type
MapType ::= 'map[' Type ']' Type
TypeList ::= Type (',' Type)* ','?
TupleType ::= '(' ')' | '(' Type ',' TypeList ')'
RefType ::= ('&' | '&mut ') Type
PointerType ::= ('*' | '*mut ') Type
OptionType ::= '?' Type
ResultType ::= '!' (Type | ('[' Type (',' Type)? ']'))?
FunctionType ::= 'fn' Signature
ChannelType ::= 'chan' Type
LiteralType ::= Literal
// Next rules are used to define lexing rules
// semi is automatically inserted semi-colon, explicit semi-colon or end of file
semi ::= '<NL>' | ';' | <<eof>>
shebang ::= '#!' shebang_value '<NL>'
shebang_value ::= "[^<NL>]*"
identifier ::= letter (letter | digit)*
comptime_identifier ::= '$' identifier
// integer literals in decimal, binary, octal and hexadecimal format
decimal_digit ::= "0" to "9"
binary_digit ::= "0" | "1"
octal_digit ::= "0" to "7"
hex_digit ::= "0" to "9" | "A" to "F" | "a" to "f"
int_lit ::= decimal_lit | binary_lit | octal_lit | hex_lit
decimal_lit ::= "0" | ( "0" to "9" ) ( "_"? decimal_digits )?
binary_lit ::= "0" ( "b" | "B" ) "_"? binary_digits
octal_lit ::= "0" ( "o" | "O" ) "_"? octal_digits
hex_lit ::= "0" ( "x" | "X" ) "_"? hex_digits
decimal_digits ::= decimal_digit ( "_"? decimal_digit )*
binary_digits ::= binary_digit ( "_"? binary_digit )*
octal_digits ::= octal_digit ( "_"? octal_digit )*
hex_digits ::= hex_digit ( "_"? hex_digit )*
// float literals in decimal and hexadecimal format
float_lit ::= decimal_float_lit | hex_float_lit
decimal_float_lit ::= decimal_digits "." decimal_digits? decimal_exponent? |
decimal_digits decimal_exponent |
"." decimal_digits decimal_exponent?
decimal_exponent ::= ( "e" | "E" ) ( "+" | "-" )? decimal_digits
hex_float_lit ::= "0" ( "x" | "X" ) hex_mantissa hex_exponent
hex_mantissa ::= "_"? hex_digits "." hex_digits? |
"_"? hex_digits |
"." hex_digits
hex_exponent ::= ( "p" | "P" ) ( "+" | "-" )? decimal_digits
// boolean literals
bool_lit ::= 'true' | 'false'
// TODO:
// - define rune literals
// - define raw strings
//
// Compiler
// - Signature with only types is not supported
// - Atomic types is not supported
// - EmbeddedDefinition with RefType is not supported
// - '>>>=' and '&^=' are not supported
// - '>>>' is not supported
// - ResultType is not fully matched
// - ModuleClause is still allowed to be optional
// - ParameterDefaultValue is not supported
// - GenericParameters for FunctionLiteral is not supported
//
// IntelliJ Plugin
// - int_lit is not fully supported
//
// Tree-Sitter
// - unnamed and named parameters in single signature is not supported