Files
codeql/java/ql/test/library-tests/dispatch/viaSummary.ql
Rasmus Lerchedahl Petersen aec1e4a713 java: address ql alert
2023-06-07 11:40:50 +02:00

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