-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathTextNode.php
More file actions
57 lines (48 loc) · 1.21 KB
/
TextNode.php
File metadata and controls
57 lines (48 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/*
* This file is part of Twig.
*
* (c) Fabien Potencier
* (c) Armin Ronacher
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Twig\Node;
use Twig\Attribute\YieldReady;
use Twig\Compiler;
/**
* Represents a text node.
*
* @author Fabien Potencier <fabien@symfony.com>
*/
#[YieldReady]
class TextNode extends Node implements NodeOutputInterface
{
public function __construct(string $data, int $lineno)
{
parent::__construct([], ['data' => $data], $lineno);
}
public function compile(Compiler $compiler): void
{
$compiler->addDebugInfo($this);
$compiler
->write('yield ')
->string($this->getAttribute('data'))
->raw(";\n")
;
}
public function isBlank(): bool
{
if (ctype_space($this->getAttribute('data'))) {
return true;
}
if (str_contains((string) $this, \chr(0xEF).\chr(0xBB).\chr(0xBF))) {
$t = substr($this->getAttribute('data'), 3);
if ('' === $t || ctype_space($t)) {
return true;
}
}
return false;
}
}