Skip to content

Commit f214039

Browse files
committedDec 6, 2015
Working on Layout
1 parent 60d0c52 commit f214039

File tree

4 files changed

+36
-25
lines changed

4 files changed

+36
-25
lines changed
 

‎documentation.md

+6-14
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,11 @@ layout: base
2828
<ul class="nav nav-stacked">
2929
<li><a href="#Lexical">Lexical</a></li>
3030
<li><a href="#OperatorPrecedence">Operator Precedence</a></li>
31+
<li><a href="#OperatorPrecedence">Indentation Sensitivity</a></li>
3132
</ul>
3233
</li>
3334
<li>
34-
<a href="#Theory">Theory</a>
35-
<ul class="nav nav-stacked">
36-
<li><a href="#GLL">GLL Parsing</a></li>
37-
<li><a href="#SPPF">Binarized SPPF</a></li>
38-
</ul>
35+
<a href="#ParseTrees">Parse Trees</a>
3936
</li>
4037
</ul>
4138
</nav>
@@ -66,14 +63,9 @@ layout: base
6663
{% include_relative documentation/operator_precedence.md %}
6764
</div>
6865
</section>
69-
<section id="Theory" class="group">
70-
<h2>Theory</h2>
71-
<div id="GLL" class="subgroup">
72-
{% include_relative documentation/gll.md %}
73-
</div>
74-
<div id="SPPF" class="subgroup">
75-
{% include_relative documentation/binarized_sppf.md %}
76-
</div>
77-
</section>
66+
<section id="ParseTrees" class="group">
67+
<h2>Parse Trees</h2>
68+
{% include_relative documentation/parse_trees.md %}
69+
</section>
7870
</div>
7971
</div>

‎documentation/binarized_sppf.md

-5
This file was deleted.

‎documentation/gll.md

-6
This file was deleted.

‎documentation/layout.md

+30
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,36 @@
33

44
#### Layout
55

6+
<p>In almost all programming languages, whitespace and comment, which we refer to
7+
as <b>layout</b>, are optional and can appear anywhere in the program. In a
8+
traditional two-phase parsing setting (lexing before parsing), layout is usually thrown
9+
away by the lexer and the context-free part is written as if no
10+
layout exists. In single-phase parsing, layout should be defined as part of
11+
the syntax, like any other grammar symbol. Because it is tedious to manually
12+
insert layout into the grammar, and also the fact that it may hinder readability
13+
and maintainability, we support automatic layout insertion in Iguana.</p>
614

15+
<p>Our layout insertion is inspired by <a href="http://homepages.cwi.nl/~daybuild/daily-books/syntax/2-sdf/sdf.html">SDF</a>,
16+
where layout is inserted between symbols in body of rules. More precisely,
17+
if <code>S ::= A<sub>1</sub> A<sub>2</sub> ... A<sub>n</sub></code> is a context-free
18+
rule, and <code>L</code> is a layout definition, the grammar after the layout
19+
insertion will be <code>S ::= A<sub>1</sub> L A<sub>2</sub> L ... L A<sub>n</sub></code>.</p>
20+
21+
<p>In Iguana, layout is defined using the <code>@Layout</code> annotation. For
22+
example, the common layout definition in a language such as Java is as follows:</p>
23+
24+
@Layout
25+
Layout ::= [\ \t \f \r \n]*
26+
27+
There can be only one layout definition per grammar definition, and by default,
28+
layout is inserted in all the rules unless they are explicitly
29+
marked with <code>@NoLayout</code>. The <code>@NoLayout</code> annotation is
30+
useful in cases where the structure of a lexical definition is needed. For example,
31+
a float number can be defined as:
32+
33+
@NoLayout
34+
Float ::= Number '.' Number
35+
36+
In this case, no whitespace between the symbols of <code>Float</code> is allowed.
737

838
</div>

0 commit comments

Comments
 (0)
Please sign in to comment.