mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
14 lines
308 B
Plaintext
14 lines
308 B
Plaintext
/**
|
|
* @kind path-problem
|
|
*/
|
|
|
|
import csharp
|
|
import Common
|
|
import utils.test.ProvenancePathGraph::ShowProvenance<Flow::PathNode, Flow::PathGraph>
|
|
|
|
from Flow::PathNode source, Flow::PathNode sink, string s
|
|
where
|
|
Flow::flowPath(source, sink) and
|
|
s = sink.toString()
|
|
select sink, source, sink, s order by s
|