njs icon indicating copy to clipboard operation
njs copied to clipboard

label to "if" statement is not recognized and crashes on break

Open yoctoserge opened this issue 3 years ago • 0 comments

Such code (result of transpiling):

console.log("Hello from NJS JavaScript");

foo: if (bar()) {
    console.log("This prints:");    
    break foo;
    console.log("This will never print.");    
}

console.log("Because execution jumps to here!");
Thrown:
SyntaxError: Illegal break statement in /app/hello-world.js:5

yoctoserge avatar Oct 18 '22 20:10 yoctoserge