File tree 1 file changed +2
-2
lines changed
spoon-control-flow/src/main/java/fr/inria/controlflow
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -783,7 +783,7 @@ public <S> void visitCtSwitch(CtSwitch<S> switchStatement) {
783
783
registerStatementLabel (caseStatement );
784
784
var caseExpressions = caseStatement .getCaseExpressions ();
785
785
ArrayList <ControlFlowNode > caseExpressionNodes = new ArrayList <>();
786
- for (CtExpression <?> expression : caseExpressions ) {
786
+ for (CtExpression <?> expression : caseExpressions ) {
787
787
ControlFlowNode caseNode = new ControlFlowNode (expression , result , BranchKind .STATEMENT );
788
788
caseExpressionNodes .add (caseNode );
789
789
tryAddEdge (switchNode , caseNode );
@@ -797,7 +797,7 @@ public <S> void visitCtSwitch(CtSwitch<S> switchStatement) {
797
797
}
798
798
799
799
ControlFlowNode fallThroughEnd = null ;
800
- if (lastNode != switchNode ) {
800
+ if (lastNode != switchNode ) {
801
801
fallThroughEnd = lastNode ;
802
802
}
803
803
lastNode = null ;
You can’t perform that action at this time.
0 commit comments