mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +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
|