summaryrefslogtreecommitdiff
path: root/test.php
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2013-10-23 10:07:09 +0200
committerKevin Chabowski <kevin@kch42.de>2013-10-23 10:07:09 +0200
commit4ddb2aef646f0f99656e2c1e13298c7ec2c611c9 (patch)
treed7b9510e21e1c188894d821682327f5bfb9e225e /test.php
parente8684bba1f68c1fa02c25f3c6fab0f8cd532b69a (diff)
parentfc8f7eec23e8e95fc9a4a483bb69a1ee6866069d (diff)
downloadste-4ddb2aef646f0f99656e2c1e13298c7ec2c611c9.tar.gz
ste-4ddb2aef646f0f99656e2c1e13298c7ec2c611c9.tar.bz2
ste-4ddb2aef646f0f99656e2c1e13298c7ec2c611c9.zip
Merge branch 'parser2' of git@github.com:kch42/Stupid-Template-Engine.git into improve-lang
Diffstat (limited to 'test.php')
-rw-r--r--test.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/test.php b/test.php
new file mode 100644
index 0000000..c9a72ed
--- /dev/null
+++ b/test.php
@@ -0,0 +1,18 @@
+<?php
+
+require("stupid_template_engine.php");
+
+$file = file_get_contents("example/templates/src/master.html");
+
+try {
+ $ast = \ste\Parser::parse($file, "master.html");
+} catch(\ste\ParseCompileError $e) {
+ $e->rewrite($file);
+ echo "Could not parse:\n";
+ echo $e->getMessage();
+ echo "\n";
+ exit(1);
+}
+
+echo "~~~~~~~~~~~\n";
+var_dump($ast); \ No newline at end of file