/var/www/vhosts/ihelp.ro/httpdocs/vendor/twig/twig/src/Node
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/twig/twig/src/Node/BlockReferenceNode.php (831B)
*/
class BlockReferenceNode extends Node implements NodeOutputInterface
{
public function __construct(string $name, int $lineno, string $tag = null)
{
parent::__construct([], ['name' => $name], $lineno, $tag);
}
public function compile(Compiler $compiler): void
{
$compiler
->addDebugInfo($this)
->write(sprintf("\$this->displayBlock('%s', \$context, \$blocks);\n", $this->getAttribute('name')))
;
}
}