Skip to content

Bitwise operators mis-parsed #59

@Discookie

Description

@Discookie

Bit-ops do not have the same precedence in lua, so for example x = h1 >> 6 | h2 << 20 gets misparsed into x = ((h1 >> 6) | h2) << 20, when it should be x = ((h1 >> 6) | (h2 << 20)).

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions