aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/grammar.ron
diff options
context:
space:
mode:
authoruHOOCCOOHu <[email protected]>2019-09-11 16:53:41 +0100
committeruHOOCCOOHu <[email protected]>2019-09-11 19:35:09 +0100
commit8c078a01641518a6b093922d4b1d27d1a98bad08 (patch)
tree25060debb1bd0b5905d77a6b4d5f80de07588f94 /crates/ra_syntax/src/grammar.ron
parent6ce6744e18f25ebcde387178125d820686692df5 (diff)
Infer box expression
Diffstat (limited to 'crates/ra_syntax/src/grammar.ron')
-rw-r--r--crates/ra_syntax/src/grammar.ron2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ra_syntax/src/grammar.ron b/crates/ra_syntax/src/grammar.ron
index 993e58e64..8f064711d 100644
--- a/crates/ra_syntax/src/grammar.ron
+++ b/crates/ra_syntax/src/grammar.ron
@@ -483,6 +483,7 @@ Grammar(
483 "CastExpr": (options: ["Expr", "TypeRef"]), 483 "CastExpr": (options: ["Expr", "TypeRef"]),
484 "RefExpr": (options: ["Expr"]), 484 "RefExpr": (options: ["Expr"]),
485 "PrefixExpr": (options: ["Expr"]), 485 "PrefixExpr": (options: ["Expr"]),
486 "BoxExpr": (options: ["Expr"]),
486 "RangeExpr": (), 487 "RangeExpr": (),
487 "BinExpr": (), 488 "BinExpr": (),
488 489
@@ -520,6 +521,7 @@ Grammar(
520 "BinExpr", 521 "BinExpr",
521 "Literal", 522 "Literal",
522 "MacroCall", 523 "MacroCall",
524 "BoxExpr",
523 ], 525 ],
524 ), 526 ),
525 527