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

local variable fix #11

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

local variable fix #11

wants to merge 5 commits into from

Conversation

McBen
Copy link

@McBen McBen commented Mar 16, 2014

( + a upper/lowercase fix for linux)

Bug examples:
local a=1 -- <- ref=2
function b()
local a=2 -- <- not created
end

local d=1 -- <- ref=2
local d=2 -- <- not created

McBen and others added 5 commits September 4, 2013 17:48
bug: local variables with equal names were not created. Instead references to the outter local are used.
Same for double definitions.

example:
local a=1   --  <- ref=2
function b()
  local a=2  --  <- not created
end

local a=1   --  <- ref=2
local a=2  --  <- not created
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants