view index.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 608eb70fe261
children 35006a6e1c47
line wrap: on
line source

<!DOCTYPE html>
<html>
<head>
	<title>Awesome!</title>
	<script src="/mquery.js"></script>
	<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="/editor.js"></script>
	<script src="/scripttags.js"></script>
	<script src="/src/editor.tp" type="text/tabletprog"></script>
	<link rel="stylesheet" href="/editor.css">
</head>
<body>
	<div id="browser">
		<ul>
		</ul>
	</div>
	<div id="editor">
		<div class="controls">
			<ul id="inscope"></ul>
		</div><div id="src"></div><div class="controls">
			<ul id="operators">
				<li>&lt;</li>
				<li>&gt;</li>
				<li>+</li>
				<li>-</li>
				<li>*</li>
				<li>/</li>
				<li>&&</li>
				<li>||</li>
			</ul>
			<ul><li id="ops_button">operators</li></ul>
		</div>
	</div>
</body>
</html>