mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
9 lines
233 B
Plaintext
9 lines
233 B
Plaintext
import csharp
|
|
private import semmle.code.csharp.controlflow.Guards
|
|
|
|
query predicate emptinessCheck(
|
|
Expr check, CollectionExpr collection, AbstractValue v, boolean isEmpty
|
|
) {
|
|
check = collection.getAnEmptinessCheck(v, isEmpty)
|
|
}
|