mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
265 B
Plaintext
14 lines
265 B
Plaintext
/**
|
|
* @kind path-problem
|
|
*/
|
|
|
|
import csharp
|
|
import Common
|
|
import DataFlow::PathGraph
|
|
|
|
from Config c, DataFlow::PathNode source, DataFlow::PathNode sink, string s
|
|
where
|
|
c.hasFlowPath(source, sink) and
|
|
s = sink.toString()
|
|
select sink, source, sink, s order by s
|