mirror of
https://github.com/github/codeql.git
synced 2026-04-30 03:05:15 +02:00
13 lines
287 B
Plaintext
13 lines
287 B
Plaintext
import csharp
|
|
import DataFlow
|
|
|
|
class ConfigAny extends Configuration {
|
|
ConfigAny() { this = "ConfigAny" }
|
|
|
|
override predicate isSource(Node source) { any() }
|
|
|
|
override predicate isSink(Node sink) { any() }
|
|
}
|
|
|
|
query predicate edges(PathNode a, PathNode b) { a.getASuccessor() = b }
|