summaryrefslogtreecommitdiff
path: root/src/ste/TextNode.php
blob: e6c78760a1a5f1d90ae2fd9c74e1f03c63296c6a (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;
    }
}