mirror of
https://github.com/github/codeql.git
synced 2026-02-24 19:03:50 +01:00
10 lines
316 B
Plaintext
10 lines
316 B
Plaintext
/**
|
|
* @name HasMethod
|
|
*/
|
|
import default
|
|
|
|
from RefType inheritor, Method method, RefType declarer
|
|
where inheritor.hasMethod(method, declarer) and inheritor.fromSource()
|
|
and declarer.hasName("Object") and inheritor.getFile().toString() = "Inherit"
|
|
select inheritor.toString(), method.toString(), declarer.toString()
|