summaryrefslogtreecommitdiff
path: root/ASTNode.php
diff options
context:
space:
mode:
Diffstat (limited to 'ASTNode.php')
-rw-r--r--ASTNode.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/ASTNode.php b/ASTNode.php
deleted file mode 100644
index fc5d9cc..0000000
--- a/ASTNode.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
-
-namespace kch42\ste;
-
-abstract class ASTNode {
- public $tpl;
- public $offset;
- public function __construct($tpl, $off) {
- $this->tpl = $tpl;
- $this->offset = $off;
- }
-}