-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathla_dfa_2_dot.par
253 lines (199 loc) · 4.17 KB
/
la_dfa_2_dot.par
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
// This grammar is made to only be able to parse generated parser sources.
// No claim to parse full Rust.
// It even skips parts of the file after all necessary information is gathered (see 'Skip' below).
// The real new thing here is that we use the new comment preserving feature of
// parol 0.22.0 and parol_runtime 0.17.0.
%start LaDfa2Dot
%title "LaDfa2Dot grammar"
%comment "Create a Graphviz representation of `parol`'s LookaheadDFAs"
%line_comment '//'
%block_comment '/*' '*/'
%%
LaDfa2Dot
: { AttributeOpt^ Item }
;
AttributeOpt
: [ Hash LBracket Ident AttributeArgOpt RBracket ]
;
AttributeArgOpt
: [ LParen Ident RParen ]
;
Item
: UseStatement^
| ConstDeclaration
;
// -------------------------------------------------------------------------------------------------
// UseStatement
// -------------------------------------------------------------------------------------------------
UseStatement
: 'use' ScopedQualifiedIdent Semicolon
;
QualifiedIdent
: Ident { DoubleColon Ident }
;
ScopedQualifiedIdent
: QualifiedIdent [ DoubleColon ScopedList ]
;
ScopedList
: LBrace ScopedListItems CommaOpt RBrace
;
ScopedListItems
: ScopedQualifiedIdent { Comma^ ScopedQualifiedIdent }
;
// -------------------------------------------------------------------------------------------------
// ConstDeclaration
// -------------------------------------------------------------------------------------------------
ConstDeclaration
: ConstPreamble TypeSpec^ Assign^ ConstVal Semicolon^
| ConstPreamble^ Skip^
;
ConstPreamble
: ConstQualifier^ ConstName Colon^
;
ConstQualifier
: [ 'pub' ] 'const'
| 'static'
;
ConstName
: Ident
;
ConstVal
: Number
| String
| QualifiedVal
| ArrayVal
| TupleVal
;
ArrayVal
: Ref^ LBracket^ [ ConstValList CommaOpt^ ] RBracket^
;
ConstValList
: ConstVal { Comma^ ConstVal }
;
TupleVal
: LParen^ [ ConstValList CommaOpt^ ] RParen^
;
QualifiedVal
: QualifiedIdent [ StructOrTupleVal ]
;
StructOrTupleVal
: StructVal
| TupleStructVal
;
StructVal
: LBrace^ [ MemberValues Comma^ ] RBrace^
;
MemberValues
: MemberValue { Comma^ MemberValue }
;
MemberValue
: Ident Colon^ ConstVal
;
TupleStructVal
: TupleVal
;
// -------------------------------------------------------------------------------------------------
// TypeSpec
// -------------------------------------------------------------------------------------------------
TypeSpec
: QualifiedIdent
| ArrayType
| TupleType
| OptionType
;
ArrayType
: Ref LBracket ArrayTypeSpec RBracket
;
ArrayTypeSpec
: [ Ref ] ArrayElementType Semicolon Number
;
ArrayElementType
: Ident
| Tuple
;
OptionType
: 'Option' LT TypeSpec GT
;
Tuple
: LParen TupleItems CommaOpt RParen
;
TupleType
: LParen TupleItems CommaOpt RParen
;
TupleItems
: [ Ref ] TypeSpec { Comma [ Ref ] TypeSpec }
;
// We ignore the rest of the file from here on because we have parsed all necessary information
Skip
: /&\[Production; \d+\] = &\[[.\r\n]*/
;
// -------------------------------------------------------------------------------------------------
// Optionals
// -------------------------------------------------------------------------------------------------
CommaOpt
: [ Comma ]
;
// -------------------------------------------------------------------------------------------------
// Token definitions
// -------------------------------------------------------------------------------------------------
Assign
: '='
;
Number
: /-?\d+/
;
Ref
: '&'
;
Semicolon
: ';'
;
Comma
: ','
;
String
: QuotedString
| RawString
;
QuotedString
: /r#{0, 3}".*"#{0, 3}/
;
RawString
: /"(\\"|[^"])*"/
;
Ident
: /[a-zA-Z_][a-zA-Z0-9_]*/
;
DoubleColon
: '::'
;
Colon
: ':'
;
LBrace
: '{'
;
RBrace
: '}'
;
LBracket
: '['
;
RBracket
: ']'
;
LParen
: '('
;
RParen
: ')'
;
Hash
: /#/
;
LT
: '<'
;
GT
: '>'
;