mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
10 lines
205 B
Plaintext
10 lines
205 B
Plaintext
import java
|
|
import semmle.code.java.dispatch.VirtualDispatch
|
|
|
|
from MethodCall ma, Method m
|
|
where
|
|
m = viableImpl(ma) and
|
|
m.fromSource() and
|
|
ma.getFile().toString() = "CallableViaSummary"
|
|
select ma, m
|