summaryrefslogtreecommitdiff
path: root/tests/test_closure
Commit message (Collapse)AuthorAge
* Turn our functional tests into PhpUnit testsLaria Carolin Chabowski2020-09-13
|
* Automatic code formattingLaria Carolin Chabowski2020-04-30
| | | | Also add git hooks that checks formatting
* Some simple code formattingLaria Carolin Chabowski2020-04-26
| | | | | | - Expand tabs into spaces - Remove trailing whitespace - Get rid of closing `?>` tags
* Refined test_closureKevin Chabowski2014-05-24
|
* Added scoping.Kevin Chabowski2014-05-24
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"