aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/grammar.ron
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-01-16 15:11:19 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-01-16 15:11:19 +0000
commit454cc313589fb17de92d6f3dbf576a5ea5f4adf2 (patch)
treee67129e4e514e140463d8f0f7bd7556793cac484 /crates/ra_syntax/src/grammar.ron
parentd75a0368f5048243d6561e42e77835f6f574b321 (diff)
parent0aedd4fb2f28ec24902d26c7d8a24d6146263d2f (diff)
Merge #524
524: Implement array inference r=flodiebold a=h-michael related #394 Co-authored-by: Hirokazu Hata <[email protected]>
Diffstat (limited to 'crates/ra_syntax/src/grammar.ron')
-rw-r--r--crates/ra_syntax/src/grammar.ron4
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/grammar.ron b/crates/ra_syntax/src/grammar.ron
index bd8c5b411..2aaad46b1 100644
--- a/crates/ra_syntax/src/grammar.ron
+++ b/crates/ra_syntax/src/grammar.ron
@@ -360,7 +360,9 @@ Grammar(
360 "TupleExpr": ( 360 "TupleExpr": (
361 collections: [["exprs", "Expr"]] 361 collections: [["exprs", "Expr"]]
362 ), 362 ),
363 "ArrayExpr": (), 363 "ArrayExpr": (
364 collections: [["exprs", "Expr"]]
365 ),
364 "ParenExpr": (options: ["Expr"]), 366 "ParenExpr": (options: ["Expr"]),
365 "PathExpr": (options: ["Path"]), 367 "PathExpr": (options: ["Path"]),
366 "LambdaExpr": ( 368 "LambdaExpr": (