aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_parser/src/grammar/expressions/atom.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_parser/src/grammar/expressions/atom.rs')
-rw-r--r--crates/ra_parser/src/grammar/expressions/atom.rs57
1 files changed, 31 insertions, 26 deletions
diff --git a/crates/ra_parser/src/grammar/expressions/atom.rs b/crates/ra_parser/src/grammar/expressions/atom.rs
index 700994e80..5c413317e 100644
--- a/crates/ra_parser/src/grammar/expressions/atom.rs
+++ b/crates/ra_parser/src/grammar/expressions/atom.rs
@@ -181,29 +181,19 @@ fn tuple_expr(p: &mut Parser) -> CompletedMarker {
181fn array_expr(p: &mut Parser) -> CompletedMarker { 181fn array_expr(p: &mut Parser) -> CompletedMarker {
182 assert!(p.at(T!['['])); 182 assert!(p.at(T!['[']));
183 let m = p.start(); 183 let m = p.start();
184 p.bump(T!['[']);
185 if p.eat(T![']']) {
186 return m.complete(p, ARRAY_EXPR);
187 }
188 184
189 // test first_array_member_attributes 185 let mut n_exprs = 0u32;
190 // pub const A: &[i64] = &[ 186 let mut has_semi = false;
191 // #[cfg(test)]
192 // 1,
193 // 2,
194 // ];
195 attributes::with_outer_attributes(p, |p| expr(p).0);
196 187
197 if p.eat(T![;]) { 188 p.bump(T!['[']);
198 expr(p);
199 p.expect(T![']']);
200 return m.complete(p, ARRAY_EXPR);
201 }
202 while !p.at(EOF) && !p.at(T![']']) { 189 while !p.at(EOF) && !p.at(T![']']) {
203 p.expect(T![,]); 190 n_exprs += 1;
204 if p.at(T![']']) { 191 // test first_array_member_attributes
205 break; 192 // pub const A: &[i64] = &[
206 } 193 // #[cfg(test)]
194 // 1,
195 // 2,
196 // ];
207 197
208 // test subsequent_array_member_attributes 198 // test subsequent_array_member_attributes
209 // pub const A: &[i64] = &[ 199 // pub const A: &[i64] = &[
@@ -211,17 +201,32 @@ fn array_expr(p: &mut Parser) -> CompletedMarker {
211 // #[cfg(test)] 201 // #[cfg(test)]
212 // 2, 202 // 2,
213 // ]; 203 // ];
214 if !attributes::with_outer_attributes(p, |p| { 204 let m = p.start();
215 if !p.at_ts(EXPR_FIRST) { 205 let has_attrs = p.at(T![#]);
216 p.error("expected expression"); 206 attributes::outer_attributes(p);
217 return None; 207
208 let cm = expr(p).0;
209
210 match (has_attrs, cm) {
211 (true, Some(cm)) => {
212 let kind = cm.kind();
213 cm.undo_completion(p).abandon(p);
214 m.complete(p, kind);
218 } 215 }
219 expr(p).0 216 _ => m.abandon(p),
220 }) { 217 }
218
219 if n_exprs == 1 && p.eat(T![;]) {
220 has_semi = true;
221 continue;
222 }
223
224 if has_semi || !p.at(T![']']) && !p.expect(T![,]) {
221 break; 225 break;
222 } 226 }
223 } 227 }
224 p.expect(T![']']); 228 p.expect(T![']']);
229
225 m.complete(p, ARRAY_EXPR) 230 m.complete(p, ARRAY_EXPR)
226} 231}
227 232