mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
10 lines
317 B
Plaintext
10 lines
317 B
Plaintext
import java
|
|
|
|
from Call call, Callable c
|
|
where
|
|
count(call.getAnArgument()) != c.getNumberOfParameters() and
|
|
call.getCallee() = c and
|
|
not exists(Parameter p | c.getAParameter() = p and p.isVarargs()) and
|
|
call.getFile().isKotlinSourceFile()
|
|
select call, c, count(call.getAnArgument()), c.getNumberOfParameters()
|