(.js)
laraImport("clava.code.ForToWhileStmt");
(.lara)
import clava.code.ForToWhileStmt;
Global Functions:
ForToWhileStmt($forStmt, stepLabelSuffix)
Replaces for loop with an equivalent construct based on a while loop:
```c
for (init; cond; step) {
...
continue;
...
...
}
```
becomes
```c
{
init;
while (cond) {
...
goto __for_loop_step_${step_label_suffix};
...
...
__for_loop_step_${step_label_suffix}:
step;
}
}
```