mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
8 lines
267 B
Plaintext
8 lines
267 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().getQualifiedName()
|