softpano / pythonizer

Translator (or more correctly transcriber) from Perl to Python
http://www.softpanorama.org/Scripting/Pythonorama/Python_for_perl_programmers/Pythonizer/index.shtml
Other
39 stars 17 forks source link

Bad code generated if last statement in block before else or elsif doesn't end in ; #95

Open snoopyjc opened 2 years ago

snoopyjc commented 2 years ago

Bad code generated if last statement in block before else or elsif doesn't end in ;, e.g.

if(...) {
    next
} else {
    ...
}

will spit out a line with continue ] else on it.

snoopyjc commented 2 years ago

Fixed in https://github.com/snoopyjc/pythonizer