Tagged Questions
3
votes
1answer
239 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 syntax error. I ...