mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
14 lines
244 B
Plaintext
14 lines
244 B
Plaintext
/**
|
|
* @kind path-problem
|
|
*/
|
|
|
|
import csharp
|
|
import Common
|
|
import 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
|