Skip to content

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