File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ ArrowExpr:
308
308
AssignExpr :
309
309
_extends : Expr
310
310
dest : Expr
311
- src : Expr
311
+ source : Expr
312
312
313
313
BindOptionalExpr :
314
314
_extends : Expr
@@ -661,7 +661,7 @@ PrefixUnaryExpr:
661
661
662
662
SelfApplyExpr :
663
663
_extends : ApplyExpr
664
- base : Expr
664
+ base_expr : Expr
665
665
666
666
ArrayExpr :
667
667
_extends : CollectionExpr
@@ -843,12 +843,12 @@ StmtCondition:
843
843
844
844
RepeatWhileStmt :
845
845
_extends : LabeledStmt
846
- cond : Expr
846
+ condition : Expr
847
847
body : Stmt
848
848
849
849
SwitchStmt :
850
850
_extends : LabeledStmt
851
- subject_expr : Expr
851
+ expr : Expr
852
852
cases : CaseStmt*
853
853
854
854
BoundGenericClassType :
Original file line number Diff line number Diff line change @@ -659,7 +659,7 @@ arrow_exprs(
659
659
assign_exprs(
660
660
unique int id: @assign_expr,
661
661
int dest: @expr ref,
662
- int src : @expr ref
662
+ int source : @expr ref
663
663
);
664
664
665
665
bind_optional_exprs(
@@ -1324,7 +1324,7 @@ prefix_unary_exprs(
1324
1324
#keyset[id]
1325
1325
self_apply_exprs(
1326
1326
int id: @self_apply_expr ref,
1327
- int base : @expr ref
1327
+ int base_expr : @expr ref
1328
1328
);
1329
1329
1330
1330
array_exprs(
@@ -1625,13 +1625,13 @@ stmt_condition_elements(
1625
1625
1626
1626
repeat_while_stmts(
1627
1627
unique int id: @repeat_while_stmt,
1628
- int cond : @expr ref,
1628
+ int condition : @expr ref,
1629
1629
int body: @stmt ref
1630
1630
);
1631
1631
1632
1632
switch_stmts(
1633
1633
unique int id: @switch_stmt,
1634
- int subject_expr : @expr ref
1634
+ int expr : @expr ref
1635
1635
);
1636
1636
1637
1637
#keyset[id, index]
You can’t perform that action at this time.
0 commit comments