mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
8 lines
202 B
Plaintext
8 lines
202 B
Plaintext
import java
|
|
|
|
from Method c, Method d
|
|
where
|
|
c.getSourceDeclaration().fromSource() and
|
|
c.overrides(d)
|
|
select c.getDeclaringType(), c.getStringSignature(), d.getDeclaringType(), d.getStringSignature()
|