Files
codeql/csharp/ql/test/library-tests/controlflow/guards/Collections.ql
Anders Schack-Mulligen 4f6528a9fb C#: Deprecate AbstractValue.
2025-10-31 14:23:23 +01:00

9 lines
240 B
Plaintext

import csharp
private import semmle.code.csharp.controlflow.Guards
query predicate emptinessCheck(
Expr check, EnumerableCollectionExpr collection, GuardValue v, boolean isEmpty
) {
check = collection.getAnEmptinessCheck(v, isEmpty)
}