Question: 2. C and Java allows loop exits using the break and continue statements. A break statement leaves the current loop entirely, and a continue statement
2. C and Java allows loop exits using the break and continue statements. A break statement leaves the current loop entirely, and a continue statement jumps to the end of the current loop. A break statement can only appear inside a loop or a switch statement, and a continue can only appear inside a loop. If we add break and continue to VSL, what changes would have to be made to the semantic analyzer to ensure that these statements only appear within loops? What changes would be needed for the abstract stack machine to implement break and continue?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
