mirror of
https://github.com/github/codeql.git
synced 2026-04-18 05:24:01 +02:00
7 lines
194 B
Plaintext
7 lines
194 B
Plaintext
import csharp
|
|
private import semmle.code.csharp.controlflow.Guards
|
|
|
|
query predicate abstractValue(GuardValue value, Expr e) {
|
|
Guards::InternalUtil::exprHasValue(e, value) and e.fromSource()
|
|
}
|