|
3 | 3 |
|
4 | 4 | #### Layout
|
5 | 5 |
|
| 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> |
6 | 14 |
|
| 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. |
7 | 37 |
|
8 | 38 | </div>
|
0 commit comments