aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/grammar.ron
diff options
context:
space:
mode:
authorUnreal Hoang <[email protected]>2019-07-20 11:35:49 +0100
committerUnreal Hoang <[email protected]>2019-07-20 11:35:49 +0100
commit5ac9f5cdc7a88dcb9545d2e150780c8edee83b06 (patch)
tree7893e33a7b7cf986b14d60fd1cf50c03d2403a24 /crates/ra_syntax/src/grammar.ron
parent2830d1376b05794c7bf1467fe52ad3bc0eb4ca41 (diff)
add await expr to ast
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 55494239e..817dedfbf 100644
--- a/crates/ra_syntax/src/grammar.ron
+++ b/crates/ra_syntax/src/grammar.ron
@@ -477,6 +477,7 @@ Grammar(
477 ), 477 ),
478 "IndexExpr": (), 478 "IndexExpr": (),
479 "FieldExpr": (options: ["Expr", "NameRef"]), 479 "FieldExpr": (options: ["Expr", "NameRef"]),
480 "AwaitExpr": (options: ["Expr"]),
480 "TryExpr": (options: ["Expr"]), 481 "TryExpr": (options: ["Expr"]),
481 "CastExpr": (options: ["Expr", "TypeRef"]), 482 "CastExpr": (options: ["Expr", "TypeRef"]),
482 "RefExpr": (options: ["Expr"]), 483 "RefExpr": (options: ["Expr"]),
@@ -508,6 +509,7 @@ Grammar(
508 "IndexExpr", 509 "IndexExpr",
509 "MethodCallExpr", 510 "MethodCallExpr",
510 "FieldExpr", 511 "FieldExpr",
512 "AwaitExpr",
511 "TryExpr", 513 "TryExpr",
512 "TryBlockExpr", 514 "TryBlockExpr",
513 "CastExpr", 515 "CastExpr",