mirror of
https://github.com/github/codeql.git
synced 2026-04-26 01:05:15 +02:00
14 lines
364 B
Plaintext
14 lines
364 B
Plaintext
import csharp
|
|
import semmle.code.csharp.commons.QualifiedName
|
|
|
|
from Overridable v1, Overridable v2, string kind
|
|
where
|
|
(
|
|
v1.getOverridee() = v2 and kind = "overrides"
|
|
or
|
|
v1.getImplementee() = v2 and kind = "implements"
|
|
) and
|
|
v1.fromSource() and
|
|
v2.fromSource()
|
|
select getFullyQualifiedNameWithTypes(v1), getFullyQualifiedNameWithTypes(v2), kind
|