mirror of
https://github.com/github/codeql.git
synced 2026-01-03 17:50:19 +01:00
10 lines
207 B
Plaintext
10 lines
207 B
Plaintext
import java
|
|
import semmle.code.java.dispatch.VirtualDispatch
|
|
|
|
from MethodAccess ma, Method m
|
|
where
|
|
m = viableImpl(ma) and
|
|
m.fromSource() and
|
|
ma.getFile().toString() = "CallableViaSummary"
|
|
select ma, m
|