Latte\MacroTokens::next PHP 메소드

next() 보호된 메소드

protected next ( )
    protected function next()
    {
        parent::next();
        if ($this->isCurrent('[', '(', '{')) {
            $this->depth++;
        } elseif ($this->isCurrent(']', ')', '}')) {
            $this->depth--;
        }
    }