Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

interp: fix the behaviour of goto, continue and break #1392

Merged
merged 8 commits into from
May 19, 2022

Commits on Apr 28, 2022

  1. interp: fix the behaviour of goto

    The logic of goto was false due to mixing break label and goto
    label, despite being opposite. In case of break, jump to node (the
    exit point) instead of node.start. Also always define label symbols
    before their use is parsed.
    
    Fixes traefik#1354.
    mvertes committed Apr 28, 2022
    Configuration menu
    Copy the full SHA
    5d90351 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8ee3052 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a98bb23 View commit details
    Browse the repository at this point in the history
  4. simplify

    mvertes committed Apr 28, 2022
    Configuration menu
    Copy the full SHA
    d61d5ba View commit details
    Browse the repository at this point in the history

Commits on May 16, 2022

  1. Configuration menu
    Copy the full SHA
    764eeae View commit details
    Browse the repository at this point in the history

Commits on May 18, 2022

  1. Configuration menu
    Copy the full SHA
    55a001b View commit details
    Browse the repository at this point in the history
  2. improve comment

    mvertes committed May 18, 2022
    Configuration menu
    Copy the full SHA
    bedf0bf View commit details
    Browse the repository at this point in the history

Commits on May 19, 2022

  1. Configuration menu
    Copy the full SHA
    377b7a2 View commit details
    Browse the repository at this point in the history