view testparse.html @ 256:03a07e540b9f

Memoize results of match:where:yield and matchOne: macros. Fix opsym rule to use the symbol ast node.
author Michael Pavone <pavone@retrodev.com>
date Sun, 01 Jun 2014 00:14:36 -0700
parents 668f533e5284
children
line wrap: on
line source

<!DOCTYPE html>
<html style="height: 100%">
<head>
	<title>Parser Test</title>
	<script src="peg.js"></script>
	<script src="mquery.js"></script>
	<script src="parser.js"></script>
	<script src="compiler.js"></script>
	<script src="jsbackend.js"></script>
	<script src="cbackend.js"></script>
	<script src="testparse.js"></script>
</head>
<body style="height: 100%">
	<textarea style="width: 90%; height: 50%; display: block; margin: 0 auto;"></textarea>
	<input id="parse" type="button" value="Parse!" style="width: 90%;display: block; margin: 0 auto;">
	<input id="tojs" type="button" value="To Javascript!" style="width: 90%;display: block; margin: 0 auto;">
	<input id="toc" type="button" value="To C!" style="width: 90%; display: block; margin: 0 auto;">
	<input id="run" type="button" value="Run!" style="width: 90%;display: block; margin: 0 auto;">
	<pre>
	</pre>
</body>
</html>