mirror of
https://github.com/github/codeql.git
synced 2026-04-01 13:18:20 +02:00
8 lines
196 B
Plaintext
8 lines
196 B
Plaintext
import csharp
|
|
|
|
query predicate nullcoalescing(NullCoalescingExpr expr) { any() }
|
|
|
|
query predicate assignments(AssignCoalesceExpr expr, Expr expanded) {
|
|
expanded = expr.getExpandedAssignment()
|
|
}
|