-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
executable file
·131 lines (100 loc) · 4.86 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>SableCC</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/github-dark.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="javascripts/main.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<header>
<h1>SableCC</h1>
<p></p>
</header>
<div id="banner">
<span id="logo"></span>
<a href="https://github.com/SableCC" class="button fork"><strong>View On GitHub</strong></a>
<a href="https://sourceforge.net/projects/sablecc/files/latest/download" class="button downloads" rel="nofollow"><img alt="Download SableCC" src="https://a.fsdn.com/con/app/sf-download-button"></a>
</div><!-- end banner -->
<div class="wrapper">
<nav>
<ul></ul>
</nav>
<section>
<h1>
<a id="welcome-to-the-sablecc-project" class="anchor" href="#welcome-to-the-sablecc-project" aria-hidden="true"><span class="octicon octicon-link"></span></a>Welcome to the SableCC project</h1>
<p>SableCC is a parser generator which generates fully featured object-oriented frameworks for building compilers, interpreters and other text parsers. In particular, generated frameworks include intuitive strictly-typed abstract syntax trees and tree walkers. SableCC also keeps a clean separation between machine-generated code and user-written code which leads to a shorter development cycle.</p>
<p>
</p>
<h2>
<a id="quick-links" class="anchor" href="#quick-links" aria-hidden="true"><span class="octicon octicon-link"></span></a>Quick Links</h2>
<hr>
<ul>
<li><a href="downloads">Downloads</a></li>
<li><a href="https://github.com/SableCC/sablecc">Source Code</a> <a href="https://github.com/SableCC/sablecc/commits/master.atom"><img src="images/atom.svg" height="12" alt="ATOM feed" /></a></li>
</ul>
<hr>
<ul>
<li><a href="https://groups.google.com/g/sablecc">Discussion Group (Mailing List)</a> <a href="https://groups.google.com/forum/feed/sablecc/msgs/atom"><img src="images/atom.svg" height="12" alt="ATOM feed" /></a></li>
</ul>
<hr>
<ul>
<li><a href="objectmacro">ObjectMacro</a></li>
<li><a href="documentation">Documentation</a></li>
<li><a href="grammars">Grammars</a></li>
</ul>
<hr>
<ul>
<li><a href="users">Users</a></li>
</ul>
<hr>
<ul>
<li><a href="mailinglists">Old Mailing List (Archives)</a></li>
</ul>
<h2>
<a id="download" class="anchor" href="#download" aria-hidden="true"><span class="octicon octicon-link"></span></a>Download</h2>
<p>SableCC can be downloaded from the <a href="downloads">downloads page</a>.</p>
<h2>
<a id="objectmacro" class="anchor" href="#objectmacro" aria-hidden="true"><span class="octicon octicon-link"></span></a>ObjectMacro</h2>
<p>ObjectMacro 2.0 has its own <a href="objectmacro">page</a>.</p>
<h2>
<a id="documentation" class="anchor" href="#documentation" aria-hidden="true"><span class="octicon octicon-link"></span></a>Documentation</h2>
<p>The <a href="documentation">documentation page</a> explains how to use SableCC.</p>
<h2>
<a id="support" class="anchor" href="#support" aria-hidden="true"><span class="octicon octicon-link"></span></a>Support</h2>
<p>A community of users and developers is available to help at:</p>
<ul>
<li><a href="https://groups.google.com/forum/#!forum/sablecc">https://groups.google.com/forum/#!forum/sablecc</a> <a href="https://groups.google.com/forum/feed/sablecc/msgs/atom"><img src="images/atom.svg" height="12" alt="ATOM feed" /></a></li>
</ul>
<h2>
<a id="source-code" class="anchor" href="#source-code" aria-hidden="true"><span class="octicon octicon-link"></span></a>Source Code</h2>
<p>The source code repository is available at:</p>
<ul>
<li><a href="https://github.com/SableCC/sablecc">https://github.com/SableCC/sablecc</a> <a href="https://github.com/SableCC/sablecc/commits/master.atom"><img src="images/atom.svg" height="12" alt="ATOM feed" /></a></li>
</ul>
</section>
<footer>
<p>
<a href="https://sourceforge.net/projects/sablecc/">
<img src="https://sourceforge.net/sflogo.php?group_id=5704&type=1" alt="SourceForge.net Logo" />
</a>
<a href="https://professeurs.uqam.ca/professeur/gagnon.etienne_m/">
Etienne Gagnon
</a>
<a href="https://www.sable.mcgill.ca/">
<img src="https://www.sable.mcgill.ca/images/logo_t.jpg" height="30" alt="Sable Research Group" />
</a>
</p>
</footer>
</div>
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
</body>
</html>