We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Overflows on 1.0.0-rc.5 and 0.19.0 with stacker, with no errors in release mode on either.
stacker
function f() local x = true do if x then x = false end end end
And the same for:
function f() for k, v in t do if v then end end end
If it's helpful context, this variant doesn't overflow on 1.0.0-rc.5, or 0.19.0 with stacker, but does overflow on 0.19.0 without stacker.
0.19.0
function f() local x = {} if x then x = {} end end
Full code:
use full_moon; fn main() { full_moon::parse("function f() local x = true do if x then x = false end end end"); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Overflows on 1.0.0-rc.5 and 0.19.0 with
stacker
, with no errors in release mode on either.And the same for:
If it's helpful context, this variant doesn't overflow on 1.0.0-rc.5, or
0.19.0
withstacker
, but does overflow on0.19.0
withoutstacker
.Full code:
The text was updated successfully, but these errors were encountered: