This repository was archived by the owner on Jan 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
111 lines (98 loc) · 2.66 KB
/
index.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html id="playground">
<head>
<title>AST playground</title>
<style>
#stderr:empty { display: none; }
.code { margin: 10px; background-color: #f5f5f5; box-shadow: inset 0 0 11px rgba(0,0,0,0.3); border-radius: 8px; }
#stderr { padding: 20px; font-size: 20px; color: #c00; }
#playground .CodeMirror-lines { font-size: 20px; padding: 10px 0; }
#playground #code .CodeMirror { height: 200px; }
#playground #json .CodeMirror { height: auto; }
#playground #json .CodeMirror-scroll { overflow-x: auto; overflow-y: hidden; }
</style>
<link rel="stylesheet" href="codemirror/codemirror.css">
<body>
<div id="code" class="code"></div>
<pre id="stderr" class="code"></pre>
<div id="json" class="code"></div>
<script src="parse.js"></script>
<script src="codemirror/codemirror.js"></script>
<script src="codemirror/ruby.js"></script>
<script src="codemirror/javascript.js"></script>
<script>
window.onload = function(){
function $ (id) { return document.getElementById(id) }
var
codeNode = CodeMirror
(
$('code'),
{
mode: 'ruby',
tabMode: 'shift',
tabSize: 2,
lineNumbers: true,
pollInterval: 1e10,
autofocus: true
}
),
jsonNode = CodeMirror
(
$('json'),
{
mode: 'javascript',
lineNumbers: true,
readOnly: true,
lineWrapping: true
}
),
stderrNode = $('stderr')
var parser = new RubyParser()
parser.setFilename('(textarea)')
parser.print = print
var stderr = ''
function print (msg)
{
stderr += msg
}
var lastCode = ''
function compile ()
{
// don't recompile the same code
var codeToCompile = codeNode.getValue()
if (codeToCompile == lastCode)
return
lastCode = codeToCompile
localStorage.lastCode = codeToCompile
// reset the stderr buffer preparing it for new errors stream
stderr = ''
// reset the stdout :)
jsonNode.setValue('')
// actually compile the ruby code
var ast = parser.parse(codeToCompile)
// render all the warnings and errors
stderrNode.innerHTML = stderr
if (ast === false) // error
{
// errors are already printed
// so do nothing and return
return
}
// convert typed nodes to plain arrays
var plainArrays = RubyParser.Builder.toPlain(ast)
// render the tree structure with good old JSON
jsonNode.setValue(JSON.stringify(plainArrays, undefined, /*indent=*/2))
}
codeNode.on('change', compile)
var storedCode = localStorage.lastCode || ''
if (storedCode.length > 10000)
{
if (window.confirm('The code from the last session is too large.\nThe editor may freeze forever.\n\nWe better erase it, OK?'))
{
storedCode = ''
}
}
codeNode.setValue(storedCode || '# type ruby code here\n3 + 2')
codeNode.focus()
}
</script>