for ++ fails to compile
alienself opened this issue · 3 comments
alienself commented
Hi,
Great library however there is an issue with for loops.
The i++
generates an error and prevents the reflection to happen.
fn foo() {
for (var i = 0; i < 4; i++) {
}
}
brendan-duncan commented
Thanks, I'll get that fixed shortly. increment operator was added fairly recently, I added the parsing for it, but didn't add the rule to the for loop incrementer.
brendan-duncan commented
Should be fixed now
alienself commented
Wow that was fast, amazing! Thanks for this fix!