Barryvdh\Debugbar\Twig\Node\StopwatchNode::compile PHP Method

compile() public method

public compile ( Twig_Compiler $compiler )
$compiler Twig_Compiler
    public function compile(\Twig_Compiler $compiler)
    {
        $compiler->addDebugInfo($this)->write('')->subcompile($this->getNode('var'))->raw(' = ')->subcompile($this->getNode('name'))->write(";\n")->write("\$this->env->getExtension('stopwatch')->getDebugbar()->startMeasure(")->subcompile($this->getNode('var'))->raw(");\n")->subcompile($this->getNode('body'))->write("\$this->env->getExtension('stopwatch')->getDebugbar()->stopMeasure(")->subcompile($this->getNode('var'))->raw(");\n");
    }