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

if-if error #33

Closed
viruscamp opened this issue Apr 24, 2015 · 2 comments
Closed

if-if error #33

viruscamp opened this issue Apr 24, 2015 · 2 comments
Assignees
Labels

Comments

@viruscamp
Copy link
Owner

source:

local a,b,c,d,e
if a then
    b()
    if c then
        d()
    end
end
e()

decompiled:

local a, b, c, d, e = nil
if a then
  b()
end
if c then
  d()
end
e()
@viruscamp viruscamp added the bug label Apr 24, 2015
@viruscamp viruscamp self-assigned this Apr 24, 2015
@viruscamp
Copy link
Owner Author

fixed in 1f92eb3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant