Tagged Questions
5
votes
3answers
384 views
On ocamlyacc, function application grammar and precedence
I'm OCaml newbie and I'm trying to write a simple OCaml-like grammar, and I can't figure this out. My grammar allows something like this:
let sub = fun x -> fun y -> x - y;;
However, if I ...
5
votes
3answers
701 views
ocamlyacc parse error: what token?
I'm using ocamlyacc and ocamllex. I have an error production in my grammar that signals a custom exception. So far, I can get it to report the error position:
| error { raise (Parse_failure ...
4
votes
3answers
103 views
Using external type declarations with OCamlyacc
I have a type expr in an expr.ml file. In parser.mly (OCamlyacc file), I define the expr rule and give the type :
%start expr
%type <expr> expr
However, I get :
File ...
3
votes
1answer
203 views
Return multiple tokens in ocamllex
Is there any way to return multiple tokens in OCamlLex?
I'm trying to write a lexer and parser for an indentation based language, and I would like my lexer to return multiple DEDENT tokens when it ...
3
votes
1answer
234 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 ...
1
vote
2answers
580 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 should have been an ...
0
votes
1answer
81 views
Parser stop mid-parse
I am completely out of ideas. I spend every free minute this day on this, but I am completely out of ideas.
This is my Ocamlyacc grammar:
input: /* empty */ { }
| input stmt { }
stmt:
...