mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
12 lines
308 B
Plaintext
12 lines
308 B
Plaintext
import csharp
|
|
|
|
query predicate propertyPatterns(PropertyPatternExpr exp) { any() }
|
|
|
|
query predicate propertyPatternChild(PropertyPatternExpr pp, int n, PatternExpr child) {
|
|
child = pp.getPattern(n)
|
|
}
|
|
|
|
query predicate propertyPatternLabels(LabeledPatternExpr exp, string label) {
|
|
label = exp.getLabel()
|
|
}
|