-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (24 loc) · 922 Bytes
/
index.html
File metadata and controls
29 lines (24 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<link type="text/css" href="css/style.css" rel=stylesheet>
<script type="text/javascript" src="jquery/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="js/expression.js"></script>
<script type="text/javascript" src="js/compile.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</head>
<body>
<div id="try">
<div id="parsing">
<h2>Test Your Parser</h2>
<label for="source">source:</label><br><textarea style="width:600px;height:60px" id="source">($a+$b)==3</textarea><br>
<label for="context">context:</label><br><textarea style="width:600px;height:60px" id="context">{"a":1,"b":2}</textarea>
</div>
<button id="parse_btn">Parse</button>
<div id="astsOut"></div>
<div id="evaluationOut"></div>
<div id="refOut"></div>
</div>
</body>
</html>