Swift: rename certain dbscheme columns

This commit is contained in:
Alex Denisov
2022-04-22 08:31:09 +02:00
parent a5189eae9f
commit e85cdf2ec3
2 changed files with 8 additions and 8 deletions

View File

@@ -308,7 +308,7 @@ ArrowExpr:
AssignExpr: AssignExpr:
_extends: Expr _extends: Expr
dest: Expr dest: Expr
src: Expr source: Expr
BindOptionalExpr: BindOptionalExpr:
_extends: Expr _extends: Expr
@@ -661,7 +661,7 @@ PrefixUnaryExpr:
SelfApplyExpr: SelfApplyExpr:
_extends: ApplyExpr _extends: ApplyExpr
base: Expr base_expr: Expr
ArrayExpr: ArrayExpr:
_extends: CollectionExpr _extends: CollectionExpr
@@ -843,12 +843,12 @@ StmtCondition:
RepeatWhileStmt: RepeatWhileStmt:
_extends: LabeledStmt _extends: LabeledStmt
cond: Expr condition: Expr
body: Stmt body: Stmt
SwitchStmt: SwitchStmt:
_extends: LabeledStmt _extends: LabeledStmt
subject_expr: Expr expr: Expr
cases: CaseStmt* cases: CaseStmt*
BoundGenericClassType: BoundGenericClassType:

View File

@@ -659,7 +659,7 @@ arrow_exprs(
assign_exprs( assign_exprs(
unique int id: @assign_expr, unique int id: @assign_expr,
int dest: @expr ref, int dest: @expr ref,
int src: @expr ref int source: @expr ref
); );
bind_optional_exprs( bind_optional_exprs(
@@ -1324,7 +1324,7 @@ prefix_unary_exprs(
#keyset[id] #keyset[id]
self_apply_exprs( self_apply_exprs(
int id: @self_apply_expr ref, int id: @self_apply_expr ref,
int base: @expr ref int base_expr: @expr ref
); );
array_exprs( array_exprs(
@@ -1625,13 +1625,13 @@ stmt_condition_elements(
repeat_while_stmts( repeat_while_stmts(
unique int id: @repeat_while_stmt, unique int id: @repeat_while_stmt,
int cond: @expr ref, int condition: @expr ref,
int body: @stmt ref int body: @stmt ref
); );
switch_stmts( switch_stmts(
unique int id: @switch_stmt, unique int id: @switch_stmt,
int subject_expr: @expr ref int expr: @expr ref
); );
#keyset[id, index] #keyset[id, index]