mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
11 lines
344 B
Plaintext
11 lines
344 B
Plaintext
import java
|
|
import semmle.code.java.dispatch.VirtualDispatch
|
|
|
|
from MethodAccess ma, Method m
|
|
where
|
|
ma.getFile().toString().matches("ViableCallable%") and
|
|
ma.getMethod().getSourceDeclaration().fromSource() and
|
|
m = viableImpl(ma)
|
|
select ma, m.toString(), m.getDeclaringType().getLocation().getStartLine(),
|
|
m.getDeclaringType().toString()
|