Flow\NodeList::compile PHP Méthode

compile() public méthode

public compile ( $compiler, $indent )
    public function compile($compiler, $indent = 0)
    {
        foreach ($this->nodes as $node) {
            $node->compile($compiler, $indent);
        }
    }