leilukin-tumbleblog/includes/lib/Twig/Node/Expression/InlinePrint.php

40 lines
837 B
PHP
Raw Normal View History

2024-06-20 14:10:42 +00:00
<?php
/*
* This file is part of Twig.
*
* (c) Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Twig\Node\Expression;
use Twig\Compiler;
use Twig\Node\Node;
/**
* @internal
*/
final class InlinePrint extends AbstractExpression
{
2025-01-13 09:56:01 +00:00
/**
* @param AbstractExpression $node
*/
2024-06-20 14:10:42 +00:00
public function __construct(Node $node, int $lineno)
{
2025-01-13 09:56:01 +00:00
trigger_deprecation('twig/twig', '3.16', \sprintf('The "%s" class is deprecated with no replacement.', static::class));
2024-06-20 14:10:42 +00:00
parent::__construct(['node' => $node], [], $lineno);
}
public function compile(Compiler $compiler): void
{
$compiler
->raw('yield ')
->subcompile($this->getNode('node'))
;
}
}