You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently fail to count assign, capture, decrement and increment variables that appear in copied render contexts (like those used with {% render %}, for example).
When calling analyze_with_context() on bar.liquid below, we count other twice in all_variables and once in undefined_variables, but other does not appear in local_variables. Counting other as a local variable from line 1 of foo.liquid is probably more useful.
We currently fail to count
assign
,capture
,decrement
andincrement
variables that appear in copied render contexts (like those used with{% render %}
, for example).When calling
analyze_with_context()
onbar.liquid
below, we countother
twice inall_variables
and once inundefined_variables
, butother
does not appear inlocal_variables
. Countingother
as a local variable from line 1 offoo.liquid
is probably more useful.foo.liquid
bar.liquid
The text was updated successfully, but these errors were encountered: