Closed andreasabel closed 4 years ago
Foo. Main ::= Empty; token Empty eps;
The regex eps (match the empty sequence) seems to be translated to [^.] for Flex and JLex. But this is the translation of 0, a regular expression not matching anything.
eps
[^.]
The regex
eps
(match the empty sequence) seems to be translated to[^.]
for Flex and JLex. But this is the translation of 0, a regular expression not matching anything.