4
votes
2answers
69 views

camlp4 syntax extension, parser error

I created a syntax extension that allow the definition of a type as type.yjson type_name { /* type_declaration */ } to be able to build a record value directly from a json file. The syntax ...
1
vote
1answer
70 views

Using OCaml syntax extension in Camlp4 with ocamlbuild

I am having an issue with using the deriving-ocsigen syntax extension in my camlp4 parser. My parser is called pa_debug.ml Here's the tags file: <pa_debug.ml>: pp(camlp4orf.opt), ...
0
votes
1answer
51 views

Ocaml lexer / parser rules

I wrote a program in ocaml that given an infix expression like 1 + 2, outputs the prefix notation : + 1 2 My problem is I don't find a way to make a rules like : all value, operator and bracket ...
5
votes
4answers
82 views

What does `[< >]` mean in OCaml?

I have seen some source code having let rec parse_document = parser | [< len = parse_int32; st; >] -> parse_list [] (ES.take_int32 len st) | [< >] -> malformed ...
3
votes
1answer
68 views

Printing OCaml AST as OCaml Code

I have this piece of code that contains a camlp4 quotation. let f_name = "my_func" <:str_item< value $lid:f_name$ a = a * 2 >> After running this through camlp4of, it produces this: ...
1
vote
1answer
49 views

What is the purpose of the _loc variable when defining grammar rules in camlp4?

The _loc variable appears in here in the grammar rule for the match ... with expression as an argument passed to the mk_sequence function. | "match"; e = sequence; "with"; a = match_case -> ...
0
votes
2answers
101 views

Camlp4 example : unbound module Printers.Ocaml [closed]

i'm exploring Camlp4 following this useful series of blog posts, but I'm having compilation problems. This is the code of my test.ml file : open Camlp4.PreCast let _loc = Loc.ghost in let cons = ...
1
vote
1answer
139 views

Passing options to camlp4 with ocamlbuild

I'm using ocamlbuild's native support for ocamlfind to simplify my project's build process. File foo.ml relies on conditional compilation using camlp4's macros. The _tags file contains the ...
2
votes
1answer
82 views

The best practice to patch camlp4?

Commit patches and wait for INRIA to merge takes a long time and my work was always delayed. So I made a branch of camlp4.But everytime I made a little change, I need to make the whole compiler, it ...
1
vote
2answers
70 views

Why does camlp4o fail to parse (or) as a binary function?

In vanilla OCaml, (or) is a binary function just like (+) and all the others, so code like this works fine: let any (truths:bool list) = List.fold_left (or) false truths But in any environment ...
1
vote
1answer
73 views

Why does annotating a type with sexp return cause Unbound value int_of_sexp?

Using the sexplib syntax extension to automatically generate serialization code for a type, as shown in many simple examples online: open Sexplib type t = { foo : int; bar : string; } with sexp let v ...
5
votes
2answers
166 views

OCamlbuild and camlp4 options

I'm using camlp4.macro to enable conditional compilation. I'm having problems informing OCamlbuild that certain files tagged with "use_jscore" must be preprocessed with a given camlp4 option. Here's ...
2
votes
1answer
116 views

OCamlbuild and camlp4.macro

I have a project where several of the OCaml source files use IFDEF. Is there a simple way to tell OCamlbuild that all .ml files for this project should be preprocessed by camlp4.macro?
1
vote
1answer
213 views

Creating a simple camlp4 grammar extension

Given this type: type 'a variable = { name: string; mutable value: 'a } I'm trying to create a syntax extension that would accept this syntax: var foo = true ...and convert it to: let foo = { ...
0
votes
2answers
115 views

Is it possible to write a camlp4 syntax extension that gives you access to the last let binding as a string?

I've got some code like this: type boolean = T | F type bexp = Const of boolean | Var of variable | Bop of bop * bexp * bexp | Not of bexp and bop = And | Or | Xor and variable = ...
1
vote
1answer
115 views

Cannot use backticks in term names as backtick quotes are being used by camlp5 (OCaml)

I'm using the Yojson library and one of the constructors used is called `Bool (with a backtick). I'm working with OCaml source where camlp5 is used so that text surrounded by backticks is interpreted ...
12
votes
1answer
544 views

OCaml toplevel with syntax extensions

I don't know how to accomplish this in general, but I'll ask about one instance in particular for clarity: Sexplib looks interesting to me. I want to play around with it. I've downloaded it, ...
3
votes
1answer
138 views

camlp4 : there is no quotation expander available

The file test.ml contains only one line: let foo = <:expr< foo >> I then apply camlp4 to that file with this command line: camlp4o pa_extend.cmo test.ml The output is: File ...
3
votes
2answers
147 views

combining camlp4 and camlp5 in -pp string for ocamlopt?

I want to combine BOLT, SEXP and ocamlViz for a large project. The problem is, that SEXP and BOLT are using CamlP4 and ocamlviz is using camlp5. But how could I combine the calls to one chain for the ...
1
vote
2answers
191 views

OCaml: returning a function from the function identifier only

I am writing a program which parses scripts written in some made-up language and does some computations using that script. This language has a particular construct which is used to call external OCaml ...
3
votes
2answers
240 views

Annotations in OCaml

the title could be somewhat misleading so let me explain what I'm trying to achieve. I'm writing a programming language that has a plethora of operators which can work on multiple types with ...
4
votes
2answers
318 views

Is it possible the get the AST for an OCaml program?

I'd like to be able to get the AST for a given OCaml program (I'd like to walk the AST and generate an instrumented version of the code or do some kind of transformation, for example). Do any of the ...
4
votes
2answers
470 views

What's the “revised syntax” in OCaml?

When people refer to the "revised syntax" in OCaml, do they mean that this will become a new syntax for the language, or is it just an alternative syntax created in CamlP4? If it's the former, then ...