Flow\Compiler::pushContext PHP Method

pushContext() public method

public pushContext ( $name, $indent )
    public function pushContext($name, $indent = 0)
    {
        $this->raw('$this->pushContext($context, ', $indent);
        $this->repr($name);
        $this->raw(");\n");
        return $this;
    }