Skip to content

Commit e50704c

Browse files
authoredJun 17, 2016
describe workflow & clarify whitespaces JetBrains#124
1 parent 2b7bc12 commit e50704c

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed
 

‎TUTORIAL.md

+21-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,29 @@ Here is the grammar I designed for the sample above. No java coding, no generati
5858
I still need to add a lexer and some extra attributes to generate a real parser like package and some class
5959
names as described in the [main readme](README.md) but now I'm sure the BNF part is OK.
6060

61+
The initial `*.flex` file and `*.java` lexer can be generated using editor context menu items.
6162

6263
The fun part is that I even can _inject_ this language in some other files I work with to quickly test the syntax.
64+
65+
Summary
66+
================
67+
68+
The described workflow can be summarized as follows:
69+
70+
1. prototype the grammar in *LivePreview*
71+
2. generate initial `*.flex` to sources and generate a `*.java` lexer from it
72+
3. create *ParserDefinition* and/or setup lexer and parser tests
73+
4. perfect the `*.flex` & `*.bnf` separately in production environment
74+
75+
*Note 1:* Flex file shall be edited manually as it is likely to contain complex logic that is absent in `*.bnf`.
76+
This also implies that *LivePreview* is not useful at (4) as it requires supporting 2 different lexers.
77+
78+
*Note 2:* Whitespaces and comments declared in a *ParserDefinition* are skipped by *PsiBuilder*.
79+
To mimic this behavior the *LivePreviewLexer* treats as whitespace any space or new-line matching *regexp* token
80+
that is not used anywhere in the rules.
81+
82+
83+
Full sample.bnf text:
6384
````
6485
{
6586
tokens=[
@@ -106,5 +127,3 @@ literal_expr ::= number | string | float
106127
````
107128

108129
Try playing with _pin_ and _recoverWhile_ attributes, tokens and rule modifiers to see how this all works.
109-
110-
Note that since version 1.1.2 one can generate *.flex file and then lexer java code using context menu items.

0 commit comments

Comments
 (0)
Please sign in to comment.