The following grammar should parse ⟦ ab c.
Whatever. Main ::= Uni Foo Bar;
token Uni '⟦' ;
token Foo letter letter;
token Bar (char - 'a');
This is the situation in the different backends:
The parsers generated by the Java backends accept instead the input without the spaces: ⟦abc.
The following grammar should parse
⟦ ab c.This is the situation in the different backends:
ocamllexrefuses generated lexer definition with errorerror: 1,1: syntax error at ?Parse error on line 1The parsers generated by the Java backends accept instead the input without the spaces:
⟦abc.