芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/barryvdh/laravel-debugbar/src/Twig/Node/StopwatchNode.php
*/ class StopwatchNode extends \Twig_Node { public function __construct( \Twig_NodeInterface $name, $body, \Twig_Node_Expression_AssignName $var, $lineno = 0, $tag = null ) { parent::__construct(['body' => $body, 'name' => $name, 'var' => $var], [], $lineno, $tag); } 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"); } }