4.2.1
Fix false positive warning with hash expression on #each helpers.
{{#each(panels, panel=value)}}
<p>{{panel.label}}</p>
{{/each}}
can-stache would incorrectly trigger a warning because value is not found in scope.
{{#each(panels, panel=value)}}
<p>{{panel.label}}</p>
{{/each}}
can-stache would incorrectly trigger a warning because value is not found in scope.