We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83adf79 commit 81977f1Copy full SHA for 81977f1
shared/controlflow/codeql/controlflow/PrintGraph.qll
@@ -3,6 +3,8 @@
3
* CFG" query. Also provides modules for printing control flow graphs in tests
4
* and as Mermaid diagrams.
5
*/
6
+overlay[local?]
7
+module;
8
9
private import codeql.util.FileSystem
10
private import codeql.util.Location
@@ -22,6 +24,7 @@ signature module InputSig<LocationSig Location> {
22
24
ControlFlowNode getASuccessor(ControlFlowNode n, SuccessorType t);
23
25
}
26
27
+/** Provides modules for printing control flow graphs. */
28
module PrintGraph<LocationSig Location, InputSig<Location> Input> {
29
private import Input
30
0 commit comments