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