File tree Expand file tree Collapse file tree 3 files changed +3
-77
lines changed
java/ql/lib/semmle/code/java/controlflow Expand file tree Collapse file tree 3 files changed +3
-77
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import Dominance
9
9
private import codeql.controlflow.BasicBlock as BB
10
10
11
11
private module Input implements BB:: InputSig< Location > {
12
- import SuccessorType
12
+ import codeql.controlflow. SuccessorType
13
13
14
14
/** Hold if `t` represents a conditional successor type. */
15
15
predicate successorTypeIsCondition ( SuccessorType t ) { none ( ) }
@@ -34,7 +34,7 @@ private module Input implements BB::InputSig<Location> {
34
34
result = getASpecificSuccessor ( node , t )
35
35
or
36
36
node .getASuccessor ( ) = result and
37
- t instanceof NormalSuccessor and
37
+ t instanceof DirectSuccessor and
38
38
not result = getASpecificSuccessor ( node , _)
39
39
}
40
40
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ private module GuardsInput implements SharedGuards::InputSig<Location> {
143
143
private import java as J
144
144
private import semmle.code.java.dataflow.internal.BaseSSA
145
145
private import semmle.code.java.dataflow.NullGuards as NullGuards
146
- import SuccessorType
146
+ import codeql.controlflow. SuccessorType
147
147
148
148
class ControlFlowNode = J:: ControlFlowNode ;
149
149
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments