view testscripttags.html @ 251:2557ce4e671f

Fix a couple of compiler bugs. topenv was getting initialized in multiple places. This resulted in multiple copies of modules getting created which caused problems for macro expansion. Additionally, arguments were not being marked as declared during code generation so assigning to an argument that was not closed over generated invalid C code.
author Michael Pavone <pavone@retrodev.com>
date Fri, 11 Apr 2014 22:29:32 -0700
parents 02b20292f187
children
line wrap: on
line source

<!DOCTYPE html>
<html>
<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="scripttags.js"></script>
	<script src="samples/fib.tp" type="text/tabletprog"></script>
	<script type="text/tabletprog">
		#{
			console <- foreign: #{
				log <- foreign: :val {}
			}
			main <- {
				console log: "foobar"
			}
		}
	</script>
</head>
<body>
	Testing 1 2 3
</body>
</html>