aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/grammar.ron
diff options
context:
space:
mode:
Diffstat (limited to 'crates/libsyntax2/src/grammar.ron')
-rw-r--r--crates/libsyntax2/src/grammar.ron8
1 files changed, 6 insertions, 2 deletions
diff --git a/crates/libsyntax2/src/grammar.ron b/crates/libsyntax2/src/grammar.ron
index 798725f7e..683623a5d 100644
--- a/crates/libsyntax2/src/grammar.ron
+++ b/crates/libsyntax2/src/grammar.ron
@@ -388,10 +388,14 @@ Grammar(
388 "NamedFieldList": (), 388 "NamedFieldList": (),
389 "NamedField": (), 389 "NamedField": (),
390 "CallExpr": ( 390 "CallExpr": (
391 options: [ "Expr", "ArgList" ] 391 traits: ["ArgListOwner"],
392 options: [ "Expr" ],
393 ),
394 "MethodCallExpr": (
395 traits: ["ArgListOwner"],
396 options: [ "Expr" ],
392 ), 397 ),
393 "IndexExpr": (), 398 "IndexExpr": (),
394 "MethodCallExpr": (),
395 "FieldExpr": (), 399 "FieldExpr": (),
396 "TryExpr": (), 400 "TryExpr": (),
397 "CastExpr": (), 401 "CastExpr": (),