File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 3
3
import codeql.Locations
4
4
import controlflow.BasicBlocks
5
5
import controlflow.ControlFlowGraph
6
+ import controlflow.CfgNodes as CfgNodes
Original file line number Diff line number Diff line change 3
3
private import bicep
4
4
private import BasicBlocks
5
5
private import ControlFlowGraph
6
- private import internal.ControlFlowGraphImpl as CfgImpl
6
+ import internal.ControlFlowGraphImpl
7
7
8
8
/** A control-flow node that wraps an AST expression. */
9
- class ExprCfgNode extends CfgImpl :: AstCfgNode {
9
+ class ExprCfgNode extends AstCfgNode {
10
10
string getAPrimaryQlClass ( ) { result = "ExprCfgNode" }
11
11
12
12
Expr e ;
@@ -18,7 +18,7 @@ class ExprCfgNode extends CfgImpl::AstCfgNode {
18
18
}
19
19
20
20
/** A control-flow node that wraps an AST statement. */
21
- class StmtsCfgNode extends CfgImpl :: AstCfgNode {
21
+ class StmtsCfgNode extends AstCfgNode {
22
22
string getAPrimaryQlClass ( ) { result = "StmtsCfgNode" }
23
23
24
24
Stmts s ;
You can’t perform that action at this time.
0 commit comments