Version: 2.9.0
Bug Description
{breakIf} or {continueIf} macros throw Latte\CompileException with message Tag {continueIf} is unexpected here
Steps To Reproduce
{var $buttons = [[null, 1000]]}
{var $min = 2000}
{foreach $buttons as [$buttonMinValue, $buttonMaxValue]}
{if $buttonMinValue === null}
{continueIf $buttonMaxValue < $min}
{* other code *}
{/if}
{/foreach}
Expected Behavior
It should work as in 2.8 if it's possible :)