OK so in a controller I have this:
$this->view->variable_a = <something>;
then in the volt:
{% for variable_a in some_array %}
<do something>
{% endfor %}
OK so now variable_a from the for loop should be out of scope and if I reference variable_a farther down below that for loop variable _a should be back to the value it had in the controller. But instead it's the last value from the for loop! Is that expected behavior?