We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc7b70c commit f1b3a08Copy full SHA for f1b3a08
src/main/rascal/lang/php/analysis/cfg/BuildCFG.rsc
@@ -487,7 +487,7 @@ public set[Lab] init(Stmt s, LabelState lstate) {
487
case unset(list[Expr] unsetVars) : return init(head(unsetVars), lstate);
488
489
// A use statement is atomic.
490
- case use(_,_,_) : return { s.lab };
+ case useStmt(_,_,_) : return { s.lab };
491
492
// In a while loop, the while condition is executed first and thus provides the first label.
493
case \while(Expr cond, _) : return init(cond, lstate);
@@ -836,7 +836,7 @@ private set[Lab] final(Stmt s, LabelState lstate) {
836
}
837
838
// A use is treated as a unit
839
- case use(_,_,_) : {
+ case useStmt(_,_,_) : {
840
return { s.lab };
841
842
0 commit comments