aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/grammar/expressions.rs
diff options
context:
space:
mode:
authorDJMcNab <[email protected]>2018-12-19 18:33:36 +0000
committerDJMcNab <[email protected]>2018-12-19 20:12:18 +0000
commitcd8e33fb7e60d78809da5e77c968ef30433c2317 (patch)
treefe34e70340039c9f0b7105b0f49d995c9e28f114 /crates/ra_syntax/src/grammar/expressions.rs
parent7a8560ba382af4b3955b14757518f748e0d67709 (diff)
Revert to f6f7c5
Diffstat (limited to 'crates/ra_syntax/src/grammar/expressions.rs')
-rw-r--r--crates/ra_syntax/src/grammar/expressions.rs39
1 files changed, 13 insertions, 26 deletions
diff --git a/crates/ra_syntax/src/grammar/expressions.rs b/crates/ra_syntax/src/grammar/expressions.rs
index 9d75bfb90..512823ddf 100644
--- a/crates/ra_syntax/src/grammar/expressions.rs
+++ b/crates/ra_syntax/src/grammar/expressions.rs
@@ -158,19 +158,18 @@ fn current_op(p: &Parser) -> (u8, Op) {
158// Parses expression with binding power of at least bp. 158// Parses expression with binding power of at least bp.
159fn expr_bp(p: &mut Parser, r: Restrictions, bp: u8) -> BlockLike { 159fn expr_bp(p: &mut Parser, r: Restrictions, bp: u8) -> BlockLike {
160 let mut lhs = match lhs(p, r) { 160 let mut lhs = match lhs(p, r) {
161 (Some(lhs), macro_blocklike) => { 161 Some(lhs) => {
162 // test stmt_bin_expr_ambiguity 162 // test stmt_bin_expr_ambiguity
163 // fn foo() { 163 // fn foo() {
164 // let _ = {1} & 2; 164 // let _ = {1} & 2;
165 // {1} &2; 165 // {1} &2;
166 // } 166 // }
167 if r.prefer_stmt && (is_block(lhs.kind()) || macro_blocklike == Some(BlockLike::Block)) 167 if r.prefer_stmt && is_block(lhs.kind()) {
168 {
169 return BlockLike::Block; 168 return BlockLike::Block;
170 } 169 }
171 lhs 170 lhs
172 } 171 }
173 (None, _) => return BlockLike::NotBlock, 172 None => return BlockLike::NotBlock,
174 }; 173 };
175 174
176 loop { 175 loop {
@@ -214,7 +213,7 @@ const LHS_FIRST: TokenSet = token_set_union![
214 atom::ATOM_EXPR_FIRST, 213 atom::ATOM_EXPR_FIRST,
215]; 214];
216 215
217fn lhs(p: &mut Parser, r: Restrictions) -> (Option<CompletedMarker>, Option<BlockLike>) { 216fn lhs(p: &mut Parser, r: Restrictions) -> Option<CompletedMarker> {
218 let m; 217 let m;
219 let kind = match p.current() { 218 let kind = match p.current() {
220 // test ref_expr 219 // test ref_expr
@@ -247,29 +246,18 @@ fn lhs(p: &mut Parser, r: Restrictions) -> (Option<CompletedMarker>, Option<Bloc
247 if p.at_ts(EXPR_FIRST) { 246 if p.at_ts(EXPR_FIRST) {
248 expr_bp(p, r, 2); 247 expr_bp(p, r, 2);
249 } 248 }
250 return (Some(m.complete(p, RANGE_EXPR)), None); 249 return Some(m.complete(p, RANGE_EXPR));
251 } 250 }
252 _ => { 251 _ => {
253 let (lhs_marker, macro_block_like) = atom::atom_expr(p, r); 252 let lhs = atom::atom_expr(p, r)?;
254 253 return Some(postfix_expr(p, r, lhs));
255 if macro_block_like == Some(BlockLike::Block) {
256 return (lhs_marker, macro_block_like);
257 }
258 if let Some(lhs_marker) = lhs_marker {
259 return (Some(postfix_expr(p, r, lhs_marker)), macro_block_like);
260 } else {
261 return (None, None);
262 }
263 } 254 }
264 }; 255 };
265 expr_bp(p, r, 255); 256 expr_bp(p, r, 255);
266 (Some(m.complete(p, kind)), None) 257 Some(m.complete(p, kind))
267} 258}
268 259
269fn postfix_expr(p: &mut Parser, r: Restrictions, mut lhs: CompletedMarker) -> CompletedMarker { 260fn postfix_expr(p: &mut Parser, r: Restrictions, mut lhs: CompletedMarker) -> CompletedMarker {
270 // Calls are disallowed if the type is a block and we prefer statements because the call cannot be disambiguated from a tuple
271 // E.g. `while true {break}();` is parsed as
272 // `while true {break}; ();`
273 let mut allow_calls = !r.prefer_stmt || !is_block(lhs.kind()); 261 let mut allow_calls = !r.prefer_stmt || !is_block(lhs.kind());
274 loop { 262 loop {
275 lhs = match p.current() { 263 lhs = match p.current() {
@@ -418,22 +406,21 @@ fn arg_list(p: &mut Parser) {
418// let _ = ::a::<b>; 406// let _ = ::a::<b>;
419// let _ = format!(); 407// let _ = format!();
420// } 408// }
421fn path_expr(p: &mut Parser, r: Restrictions) -> (CompletedMarker, Option<BlockLike>) { 409fn path_expr(p: &mut Parser, r: Restrictions) -> CompletedMarker {
422 assert!(paths::is_path_start(p) || p.at(L_ANGLE)); 410 assert!(paths::is_path_start(p) || p.at(L_ANGLE));
423 let m = p.start(); 411 let m = p.start();
424 paths::expr_path(p); 412 paths::expr_path(p);
425 let res = match p.current() { 413 match p.current() {
426 L_CURLY if !r.forbid_structs => { 414 L_CURLY if !r.forbid_structs => {
427 named_field_list(p); 415 named_field_list(p);
428 m.complete(p, STRUCT_LIT) 416 m.complete(p, STRUCT_LIT)
429 } 417 }
430 EXCL => { 418 EXCL => {
431 let block_like = items::macro_call_after_excl(p); // TODO: Use return type (BlockLike) 419 items::macro_call_after_excl(p); // TODO: Use return type (BlockLike)
432 return (m.complete(p, MACRO_CALL), Some(block_like)); 420 m.complete(p, MACRO_CALL)
433 } 421 }
434 _ => m.complete(p, PATH_EXPR), 422 _ => m.complete(p, PATH_EXPR),
435 }; 423 }
436 (res, None)
437} 424}
438 425
439// test struct_lit 426// test struct_lit