mirror of
https://github.com/github/codeql.git
synced 2026-02-24 19:03:50 +01:00
9 lines
336 B
Plaintext
9 lines
336 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()
|