Skip to content

Commit e07a003

Browse files
committed
Swaps overridden_call globally
1 parent 50c91b9 commit e07a003

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ql/src/Expressions/CallArgs.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ predicate correct_args_if_called_as_method_objectapi(Call call, FunctionObject f
124124
}
125125

126126
/** Holds if `call` is a call to `overriding`, which overrides `func`. */
127-
predicate overridden_call(FunctionObject func, FunctionObject overriding, Call call) {
127+
predicate overridden_call_objectapi(FunctionObject func, FunctionObject overriding, Call call) {
128128
overriding.overrides(func) and
129129
overriding.getACall().getNode() = call
130130
}

0 commit comments

Comments
 (0)