mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01: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()
|
|
}
|