Tale\Jade\Parser::handleOutdent PHP 메소드

handleOutdent() 보호된 메소드

Decreases the current $_level by 1 Sets the $_currentParent to the ->parent of $_currentParent (Walking up the tree by 1) If we're in a mixin and we're at or below our mixin-level again, we're not in a mixin anymore
protected handleOutdent ( )
    protected function handleOutdent()
    {
        $this->level--;
        $this->currentParent = $this->currentParent->parent;
        if ($this->inMixin && $this->level <= $this->mixinLevel) {
            $this->inMixin = false;
            $this->mixinLevel = null;
        }
    }