2013-08-01 21:20:12 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Twig.
|
|
|
|
*
|
2018-05-10 12:24:53 +02:00
|
|
|
* (c) Fabien Potencier
|
2013-08-01 21:20:12 +02:00
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
class Twig_Node_Expression_TempName extends Twig_Node_Expression
|
|
|
|
{
|
|
|
|
public function __construct($name, $lineno)
|
|
|
|
{
|
|
|
|
parent::__construct(array(), array('name' => $name), $lineno);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function compile(Twig_Compiler $compiler)
|
|
|
|
{
|
|
|
|
$compiler
|
|
|
|
->raw('$_')
|
|
|
|
->raw($this->getAttribute('name'))
|
|
|
|
->raw('_')
|
|
|
|
;
|
|
|
|
}
|
|
|
|
}
|
2018-05-10 12:24:53 +02:00
|
|
|
|
|
|
|
class_alias('Twig_Node_Expression_TempName', 'Twig\Node\Expression\TempNameExpression', false);
|