mirror of
https://github.com/github/codeql.git
synced 2026-02-24 10:53:49 +01:00
8 lines
228 B
Plaintext
8 lines
228 B
Plaintext
import default
|
|
import semmle.code.java.dispatch.VirtualDispatch
|
|
|
|
from MethodAccess m
|
|
where m.getEnclosingCallable().getName() = "run"
|
|
and m.getMethod().fromSource()
|
|
select m, exactVirtualMethod(m) as def, def.getDeclaringType()
|