The camlp4 tag has no wiki summary.
6
votes
1answer
140 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, ...
4
votes
2answers
191 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
267 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 ...
3
votes
2answers
94 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 ...
3
votes
2answers
144 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 ...
2
votes
2answers
27 views
camp4: How to match Ast.TySum to retrieve Ast.TyOr
I'm new with ocamlp4. I'm reading Jake donham blog to get started with it.
I'm trying to write a small camlp4 programme wich will get a simple type as:
type t = Foo | Bar | Baz
and generate a ...
2
votes
1answer
61 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 ...
2
votes
1answer
201 views
CAML query throwing SoapServerException
This is the exception:
Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown.
Here's the CAML code:
<Query>
<Where>
<And>
<And>
...
1
vote
1answer
87 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 = { ...
1
vote
1answer
75 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 ...
1
vote
2answers
101 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 ...
0
votes
2answers
55 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 = ...