PlutoLang / Pluto

A superset of Lua 5.4 with a focus on general-purpose programming.
https://pluto-lang.org
MIT License
367 stars 22 forks source link

Skip switch blocks for continue statement #794

Closed Sainan closed 5 months ago

XmiliaH commented 5 months ago

I think this now breaks

while true do
  switch 1 do
  case 1:
    continue
  end
end

due to the backwards_surplus of 1 added for continue statements directly in the switch block