Files
codeql/java/ql/test/library-tests/structure/HasMethod.ql
2018-10-11 11:31:37 +02:00

10 lines
203 B
Plaintext

/**
* @name HasMethod
*/
import default
from RefType inheritor, Method method, RefType declarer
where inheritor.hasMethod(method, declarer) and method.fromSource()
select inheritor, method, declarer