summaryrefslogtreecommitdiff
path: root/ste.php
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2014-05-24 01:39:33 +0200
committerKevin Chabowski <kevin@kch42.de>2014-05-24 01:39:33 +0200
commit84d815f4e006e02521759070bb89025dab80b219 (patch)
tree418a03f0b8be181cb29230ad5e808d3213b4d3cb /ste.php
parentfdbe2e9521aa54ec6e0b70c1cb0f532248e531e4 (diff)
downloadste-84d815f4e006e02521759070bb89025dab80b219.tar.gz
ste-84d815f4e006e02521759070bb89025dab80b219.tar.bz2
ste-84d815f4e006e02521759070bb89025dab80b219.zip
Added scoping.
ste:mktag generated tags now have an own scope. They even resemble closures, since they inherit their parent scope. A lot of work was done to keep this compatible with older programs. However: * Templates that relied on the non-scoping behavior of tags will probably fail. * Since $ste->vars is no longer an actual array, things like $ste->vars["foo"]["bar"] = "baz" are no longer possible! A single field access will still work: $ste->vars["foo"] = "bar"
Diffstat (limited to 'ste.php')
-rw-r--r--ste.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/ste.php b/ste.php
index 6647098..7e40fae 100644
--- a/ste.php
+++ b/ste.php
@@ -30,6 +30,9 @@ require_once(__DIR__ . "/Calc.php");
require_once(__DIR__ . "/Parser.php");
require_once(__DIR__ . "/Transcompiler.php");
+require_once(__DIR__ . "/VarNotInScope.php");
+require_once(__DIR__ . "/Scope.php");
+
require_once(__DIR__ . "/STEStandardLibrary.php");
require_once(__DIR__ . "/STECore.php");