blob: d48c2bb8143449888fa5407f57e47b3636422407 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
namespace kch42\ste;
class TextNode extends ASTNode {
public $text;
public function __construct($tpl, $off, $text = "") {
parent::__construct($tpl, $off);
$this->text = $text;
}
}
|