summaryrefslogtreecommitdiff
path: root/src/ste/TagNode.php
blob: 8915c59522a6e001028cbad74d65519b631a03a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace kch42\ste;

class TagNode extends ASTNode {
    public $name;
    public $params = array();
    public $sub = array();
    public function __construct($tpl, $off, $name = "") {
        parent::__construct($tpl, $off);
        $this->name = $name;
    }
}