view testscripttags.html @ 69:ba032565c7a5

Fix handling of variable style access to self and parent object messages defined with lambdas. Improve test case for this bug to include parent object access as well as self object access.
author Mike Pavone <pavone@retrodev.com>
date Sat, 14 Jul 2012 19:24:04 -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>