Skip to content

Commit 586a823

Browse files
committed
renamed "exprparent" to "expr_parent"
1 parent b28cbf3 commit 586a823

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

javascript/ql/src/semmlecode.javascript.dbscheme

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ is_for_await_of(unique int forof: @for_of_stmt ref);
209209
#keyset[parent, idx]
210210
exprs (unique int id: @expr,
211211
int kind: int ref,
212-
int parent: @exprparent ref,
212+
int parent: @expr_parent ref,
213213
int idx: int ref,
214214
varchar(900) tostring: string ref);
215215

@@ -230,7 +230,7 @@ is_delegating (int yield: @yield_expr ref);
230230

231231
@expr_or_stmt = @expr | @stmt;
232232
@expr_or_type = @expr | @typeexpr;
233-
@exprparent = @expr_or_stmt | @property | @function_typeexpr;
233+
@expr_parent = @expr_or_stmt | @property | @function_typeexpr;
234234
@arraylike = @array_expr | @array_pattern;
235235
@type_annotation = @typeexpr | @jsdoc_type_expr;
236236
@node_in_stmt_container = @cfg_node | @type_annotation | @toplevel;
@@ -976,7 +976,7 @@ case @guard_node.kind of
976976
@condition_guard = @falsy_guard | @truthy_guard;
977977

978978
@synthetic_cfg_node = @entry_node | @exit_node | @guard_node;
979-
@cfg_node = @synthetic_cfg_node | @exprparent;
979+
@cfg_node = @synthetic_cfg_node | @expr_parent;
980980

981981
successor (int pred: @cfg_node ref, int succ: @cfg_node ref);
982982

0 commit comments

Comments
 (0)