Failed to handle `continuing` statements
bbbbx opened this issue · 1 comments
bbbbx commented
for example:
var a: i32 = 2;
var i: i32 = 0;
loop {
if i >= 4 { break; }
let step: i32 = 1;
if i % 2 == 0 { continue; }
a = a * 2;
continuing { // <2>
i = i + step;
}
}
brendan-duncan commented
Parsing continuing statement should be fixed now, in 11e2f88.