summaryrefslogtreecommitdiff
path: root/src/ste/TagNode.php
blob: c1a14e5cde1f6c0edab50ed2b99ed43c10321e99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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;
    }
}