Files
codeql/csharp/ql/test/library-tests/dataflow/global/DataFlowEdges.ql
2019-05-03 09:41:39 +02:00

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 }