mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
277 B
Plaintext
8 lines
277 B
Plaintext
import csharp
|
|
|
|
from Attributable element, Attribute attribute
|
|
where
|
|
attribute = element.getAnAttribute() and
|
|
(attribute.fromSource() or element.(Assembly).getName() in ["attributes", "Assembly1"])
|
|
select element, attribute, attribute.getType().getFullyQualifiedNameDebug()
|