summaryrefslogtreecommitdiff
path: root/test.php
blob: c9a72ed61853f3b0be0d7039fffc76a043f52821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);