3
votes
1answer
72 views
Parser/Lexer ignoring incomplete grammar rules
I have a parser and lexer written in ocamlyacc and ocamllex. If the file to parse ends prematurely, as in I forget a semicolon at the end of a line, the application doesn't raise a …
0
votes
2answers
181 views
Representing optional syntax and repetition with OcamlYacc / FsYacc
I'm trying to build up some skills in lexing/parsing grammars. I'm looking back on a simple parser I wrote for SQL, and I'm not altogether happy with it -- it seems like there shou …
