Skip to content

Commit 20c9222

Browse files
committed
use explicit this
1 parent 744e2db commit 20c9222

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ql/ql/src/codeql_ql/ast/Ast.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ class Module extends TModule, ModuleDeclaration {
722722
or
723723
pred = directMember("getAMember") and result = this.getAMember()
724724
or
725-
exists(int i | pred = indexedMember("hasParameter", i) and hasParameter(i, _, result))
725+
exists(int i | pred = indexedMember("hasParameter", i) and this.hasParameter(i, _, result))
726726
}
727727

728728
/** Holds if the `i`th parameter of this module has `name` and type `sig`. */

0 commit comments

Comments
 (0)