summaryrefslogtreecommitdiff
path: root/src/parser/Python3Parser.g4
blob: c145e56a2dd860459ce47a02bbb57e75d032bc40 (plain)
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
/*
 La grammatica di Python si trova a
 https://docs.python.org/3/reference/grammar.html

 Questa e` stata elaborata da  Bart Kiers, bart@big-o.nl
 e si trova a https://github.com/bkiers/python3-parser

 Semplificata ai fini del corso di CLP -- Marco Bertoni, Cosimo Laneve
*/

// $antlr-format alignTrailingComments true, columnLimit 150, minEmptyLines 1, maxEmptyLinesToKeep 1, reflowComments false, useTab false
// $antlr-format allowShortRulesOnASingleLine false, allowShortBlocksOnASingleLine true, alignSemicolons hanging, alignColons hanging

parser grammar Python3Parser;

options {
    superClass = Python3ParserBase;
    tokenVocab = Python3Lexer;
}

root
    : NEWLINE* (simple_stmts | compound_stmt)* EOF
    ;

simple_stmts
    : simple_stmt (';' simple_stmt)* ';'? NEWLINE
    ;

compound_stmt
    : if_stmt
    | while_stmt
    | for_stmt
    | funcdef
    ;

simple_stmt
    : assignment
    | expr
    | return_stmt
    | import_stm
    ;

assignment
    : exprlist augassign exprlist
    ;

return_stmt
    : 'return' exprlist?
    ;

import_stm
    : 'import' dotted_name ('as' NAME)?
    | 'from' dotted_name 'import' (NAME  (',' NAME)*  | '*')
    ;

dotted_name
    : NAME ('.' NAME)*
    ;

funcdef
    : 'def' NAME '(' paramlist? ')' ':' block
    ;

paramlist
    : paramdef ('=' expr)? (',' paramdef ('=' expr)?)*
    ;

paramdef
    : NAME (':' expr)?
    ;

augassign
    : '='
    | '+='
    | '-='
    | '*='
    | '@='
    | '/='
    | '%='
    | '&='
    | '|='
    | '^='
    | '<<='
    | '>>='
    | '**='
    | '//='
    ;

if_stmt
    : 'if' expr ':' block ('elif' expr ':' block)* ('else' ':' block)?
    ;

while_stmt
    : 'while' expr ':' block ('else' ':' block)?
    ;

for_stmt
    : 'for' exprlist ':' block ('else' ':' block)?
    ;

block
    : simple_stmts
    | NEWLINE INDENT (simple_stmts | compound_stmt)+ DEDENT
    ;

comp_op
    : '<'
    | '>'
    | '=='
    | '>='
    | '<='
    | '<>'
    | '!='
    | 'in'
    | 'not' 'in'
    | 'is'
    | 'is' 'not'
    ;

expr
    : atom trailer*
    | expr '**' expr
    | ('+' | '-' | '~')+ expr
    | expr ('*' | '@' | '/' | '%' | '//') expr
    | expr ('+' | '-') expr
    | expr ('<<' | '>>') expr
    | expr '&' expr
    | expr '^' expr
    | expr '|' expr
    | 'not' expr
    | expr comp_op expr
    | expr 'and' expr
    | expr 'or' expr
    | expr 'if' expr 'else' expr
    ;
atom
    : '(' testlist_comp? ')'
    | '[' testlist_comp? ']'
    | '{' testlist_comp? '}'
    | NAME
    | NUMBER
    | STRING+
    | '...'
    | 'None'
    | 'True'
    | 'False'
    ;

testlist_comp    : expr (comp_for |  (',' expr)* ','?)
       ;
trailer
    : '(' arglist? ')'
    | '[' expr (',' expr)* ','? ']'
    | '.' NAME
    | '[' expr? ':' expr? (':' expr? )? ']'
    ;

exprlist
    : expr (',' expr )* ','?
    ;

arglist
    : argument (',' argument)* ','?
    ;

argument
    : expr comp_for? | expr '=' expr
    ;

comp_iter
    : comp_for
    | comp_if
    ;

comp_for
    : 'for' exprlist 'in' expr comp_iter?
    ;

comp_if
    : 'if' expr comp_iter?
    ;