mirror of
https://github.com/github/codeql.git
synced 2026-01-04 18:20:18 +01:00
11 lines
341 B
Plaintext
11 lines
341 B
Plaintext
import java
|
|
|
|
from MethodAccess ma
|
|
// Generally Kotlin calls will always use an explicit qualifier, except for calls
|
|
// to the synthetic instance initializer <obinit>, which use an implicit `this`.
|
|
where
|
|
not exists(ma.getQualifier()) and
|
|
ma.getFile().isKotlinSourceFile() and
|
|
not ma.getCallee() instanceof InstanceInitializer
|
|
select ma
|