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

Make sure const var variables are constant #982

Merged
merged 2 commits into from
Aug 6, 2023

Commits on Jul 29, 2023

  1. Make sure const var variables are constant

    Commit 3daa298 ("Add support for `const` variables") added support for
    constant variables, but had a small mistake and did propagate the constant
    flag from the parser if the variable is declared with the `var` keyword.
    Still allowing to modify those variables. Fix this.
    
    Signed-off-by: Lars-Peter Clausen <[email protected]>
    larsclausen committed Jul 29, 2023
    Configuration menu
    Copy the full SHA
    06428f3 View commit details
    Browse the repository at this point in the history
  2. Add regression test for const var

    Check that variables declared with `const var` can not be modified.
    
    Signed-off-by: Lars-Peter Clausen <[email protected]>
    larsclausen committed Jul 29, 2023
    Configuration menu
    Copy the full SHA
    bdfd873 View commit details
    Browse the repository at this point in the history