We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b501033 commit a124d83Copy full SHA for a124d83
java/ql/consistency-queries/calls.ql
@@ -3,5 +3,8 @@ import java
3
from MethodAccess ma
4
// Generally Kotlin calls will always use an explicit qualifier, except for calls
5
// to the synthetic instance initializer <obinit>, which use an implicit `this`.
6
-where not exists(ma.getQualifier()) and ma.getFile().isKotlinSourceFile() and not ma.getCallee() instanceof InstanceInitializer
+where
7
+ not exists(ma.getQualifier()) and
8
+ ma.getFile().isKotlinSourceFile() and
9
+ not ma.getCallee() instanceof InstanceInitializer
10
select ma
0 commit comments