File tree 1 file changed +21
-2
lines changed
1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -58,8 +58,29 @@ Here is the grammar I designed for the sample above. No java coding, no generati
58
58
I still need to add a lexer and some extra attributes to generate a real parser like package and some class
59
59
names as described in the [ main readme] ( README.md ) but now I'm sure the BNF part is OK.
60
60
61
+ The initial ` *.flex ` file and ` *.java ` lexer can be generated using editor context menu items.
61
62
62
63
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:
63
84
````
64
85
{
65
86
tokens=[
@@ -106,5 +127,3 @@ literal_expr ::= number | string | float
106
127
````
107
128
108
129
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.
You can’t perform that action at this time.
0 commit comments