mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-12 23:40:45 -07:00
Avoid warnings for shadowed outer local variable
This commit is contained in:
@@ -34,8 +34,8 @@ module Liquid
|
|||||||
end
|
end
|
||||||
|
|
||||||
if variable.is_a?(Array)
|
if variable.is_a?(Array)
|
||||||
variable.collect do |variable|
|
variable.collect do |var|
|
||||||
context[@template_name[1..-2]] = variable
|
context[@template_name[1..-2]] = var
|
||||||
partial.render(context)
|
partial.render(context)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -11,9 +11,9 @@ module Liquid
|
|||||||
context.stack do
|
context.stack do
|
||||||
|
|
||||||
# First condition is interpreted backwards ( if not )
|
# First condition is interpreted backwards ( if not )
|
||||||
block = @blocks.first
|
first_block = @blocks.first
|
||||||
unless block.evaluate(context)
|
unless first_block.evaluate(context)
|
||||||
return render_all(block.attachment, context)
|
return render_all(first_block.attachment, context)
|
||||||
end
|
end
|
||||||
|
|
||||||
# After the first condition unless works just like if
|
# After the first condition unless works just like if
|
||||||
|
|||||||
Reference in New Issue
Block a user