C#: Exclude properties from the Attribute selection.

This commit is contained in:
Michael Nebel
2024-09-13 10:37:54 +02:00
parent add033249f
commit 3c97bcb790

View File

@@ -427,7 +427,9 @@ Declaration interpretElement(
|
ext = "" and result = d
or
ext = "Attribute" and result.(Attributable).getAnAttribute().getType() = d
ext = "Attribute" and
result.(Attributable).getAnAttribute().getType() = d and
not result instanceof Property
)
}