Files
codeql/csharp/ql/test/library-tests/controlflow/guards/Collections.ql
2019-09-18 12:02:59 +02:00

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)
}