mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
13 lines
250 B
Plaintext
13 lines
250 B
Plaintext
import csharp
|
|
|
|
from CommentBlock b, Element e
|
|
where
|
|
b.getElement() = e and
|
|
(
|
|
e instanceof ConstructedMethod or
|
|
e instanceof ConstructedClass or
|
|
e instanceof UnboundGenericClass or
|
|
e instanceof UnboundGenericMethod
|
|
)
|
|
select b, e
|