Skip to content

Fix Nested Sections

Pre-release
Pre-release
Compare
Choose a tag to compare
@Moderocky Moderocky released this 09 Mar 10:32
· 84 commits to master since this release

This version fixes an issue in nested loops that all exit at the same time:

if 1 is 1:
    if 1 is 1:
        if 1 is 2:
// ends here

This also fixes an issue for matching zero-length strings.

Full Changelog: 1.0.20...1.0.22