mirror of
https://github.com/twigphp/Twig.git
synced 2026-08-28 19:17:37 +00:00
39 lines
1.3 KiB
PHP
39 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Twig\Tests\Node\Expression;
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
use Twig\Node\Expression\ConstantExpression;
|
|
use Twig\Node\Expression\NameExpression;
|
|
use Twig\Node\Expression\NullCoalesceExpression;
|
|
use Twig\Test\NodeTestCase;
|
|
|
|
class NullCoalesceTest extends NodeTestCase
|
|
{
|
|
public function getTests()
|
|
{
|
|
$tests = [];
|
|
|
|
$left = new NameExpression('foo', 1);
|
|
$right = new ConstantExpression(2, 1);
|
|
$node = new NullCoalesceExpression($left, $right, 1);
|
|
if (\PHP_VERSION_ID >= 70000) {
|
|
$tests[] = [$node, "((// line 1\n\$context[\"foo\"]) ?? (2))"];
|
|
} elseif (\PHP_VERSION_ID >= 50400) {
|
|
$tests[] = [$node, "(((// line 1\n(isset(\$context[\"foo\"]) || array_key_exists(\"foo\", \$context)) && !(null === (isset(\$context[\"foo\"]) ? \$context[\"foo\"] : null)))) ? ((isset(\$context[\"foo\"]) ? \$context[\"foo\"] : null)) : (2))"];
|
|
} else {
|
|
$tests[] = [$node, "(((// line 1\n(isset(\$context[\"foo\"]) || array_key_exists(\"foo\", \$context)) && !(null === \$this->getContext(\$context, \"foo\")))) ? (\$this->getContext(\$context, \"foo\")) : (2))"];
|
|
}
|
|
|
|
return $tests;
|
|
}
|
|
}
|