Flow\Node\ImportNode::compile PHP Méthode

compile() public méthode

public compile ( $compiler, $indent )
    public function compile($compiler, $indent = 0)
    {
        $compiler->addTraceInfo($this, $indent);
        $compiler->raw("'{$this->module}' => ", $indent);
        $compiler->raw('$this->loadImport(');
        $this->import->compile($compiler);
        $compiler->raw("),\n");
    }