-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (38 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="./index.css" rel="stylesheet" type="text/css" />
<script type="module" src="./index.mjs"></script>
</head>
<body>
<h1>Basics of Compiler Design</h1>
<h2>A JavaScript implementation</h2>
<h3>Chapter 2: <a href="chapter2.html">Lexical Analysis</a></h3>
<h3>Chapter 3: <a href="chapter3.html">Syntax Analysis</a></h3>
<h3>Chapter 4: <a href="chapter4.html">Scope and Symbol Tables</a></h3>
<h3>Chapter 5: <a href="chapter5.html">Interpretation</a></h3>
<div class="VertWrap">
<div id="terminals">
<h2>Terminals</h2>
</div>
<div id="rules">
<h2>Rules</h2>
</div>
<div id="input">
<h2>Input</h2>
</div>
<div id="lexer">
<h2>Lexer</h2>
</div>
<div id="parser">
<h2>Parser</h2>
</div>
<div id="ast">
<h2>AST</h2>
</div>
</div>
</body>
</html>