Closed CoffeeTableEspresso closed 2 years ago
continue currently does not correctly handle local variables in for loops.
continue
For example:
for let i = 0; i < 10_000; i += 1 { const k = 'foo'; continue; }
should be a no-op, but will cause a stack-overflow.
Added in v0.11.12
continue
currently does not correctly handle local variables in for loops.For example:
should be a no-op, but will cause a stack-overflow.