Age | Commit message (Collapse) | Author |
|
In the properties file you can separeta blocks of properties using
the newline character.
|
|
Those characters must be read inside the value. With that rule, I
had properties without spaces or tabs, for example:
key1=value with a space
Became:
key1=valuewithaspace
So, this commit resolves that issue.
|
|
|
|
In the lexer, I've done a string duplication, 'cause the value
wasn't transfered to the parser.
The VALUE token keep a single character, so, in the parser I need
to concatenate every single character to a string.
|
|
The next step is to define the whole grammar inside the parser.
|
|
|
|
|
|
|