2
votes
1answer
101 views

OCaml parser code

My code: Term : ... | VAR { try Hashtbl.find var_table $1 with Not_found -> printf "no such variable '%s'\n" $1; 0.0 } /*(Line:75)*/ ... and when I was run it, under ocamlc -c ...
2
votes
2answers
249 views

Using ocamllex/ocamlyacc to parse part of a grammer

I've been using regexes to go through a pile of Verilog files and pull out certain statements. Currently, regexes are fine for this, however, I'm starting to get to the point where a real parser is ...
2
votes
2answers
113 views

External definitions for ocamllex regular expressions

I have implemented the usual combination of lexer/parser/pretty-printer for reading-in/printing a type in my code. I find there is redundancy among the lexer and the pretty-printer when it comes to ...
2
votes
2answers
101 views

Embedding a domain specific language in an OCaml toplevel — to Camlp4 or not?

I have some code that includes a menhir-based parser for a domain specific language (a logic). For the sake of my sanity while debugging, it would be great to be able to type instances of this ...
2
votes
1answer
142 views

Specifying a dynamic priority and precedence for an operator in Menhir/Ocamlyacc

I'm trying to parse a language where the operators have a dynamic attributes (priority and precedence) using the Menhir parser (similar to Ocamlyacc). During the lexing phase, all the operators fill a ...
4
votes
3answers
214 views

Feed ocamlyacc parser from explicit token list?

Is it possible to feed an OCamlYacc-generated parser an explicit token list for analysis? I'd like to use OCamlLex to explicitly generate a token list which I then analyze using a Yacc-generated ...
0
votes
1answer
304 views

How to write a three address code using ocamllex and ocamlyacc?

I was wondering how to write a three address code using ocamllex and ocamlyacc? I googled a lot about this, but I couldn't find anything using ocamlyacc. I have my parser and my lexer working(both ...
2
votes
2answers
146 views

reduce/reduce conflicts using ocamlyacc

I am struggling with a grammar that involves typed expressions as well as variable access. The result type of this access is not ascertainable during parsing and is evaluated in a second step. This ...
6
votes
3answers
441 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 ...
0
votes
1answer
131 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: ...
4
votes
1answer
422 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 ...
5
votes
3answers
1k 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 ...
7
votes
3answers
2k 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 ...
3
votes
1answer
315 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 ...
2
votes
2answers
705 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 ...