mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
Swift: rename certain dbscheme columns
This commit is contained in:
@@ -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:
|
||||||
|
|||||||
@@ -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]
|
||||||
|
|||||||
Reference in New Issue
Block a user