caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Remi Vanicat <vanicat@labri.u-bordeaux.fr>
To: caml-list@inria.fr
Subject: Re: [Caml-list] A question about Camlp4
Date: Thu, 03 Apr 2003 11:40:59 +0200	[thread overview]
Message-ID: <87znn7lxzo.dlv@wanadoo.fr> (raw)
In-Reply-To: <3E8BFE27.9040602@inrialpes.fr> (Frederic Tronel's message of "Thu, 03 Apr 2003 11:25:59 +0200")

Frederic Tronel <Frederic.Tronel@inrialpes.fr> writes:

> Hi list,
>
>
> I'm using camlp4 in order to embed a scripting language within my caml
> programs.
> I've already done this one year ago for a subset of Lotos verification
> language, and I'm extending this work.
>
> I'm facing a difficulty. Here is a canonical example of the problem:
>
> EXTEND:
>     rule1: ..... ->    <:expr< >>   (* A rule that generate a ML AST *)
>     rule2:  OPT a = rule1 ..... ->
> 	let b = match a with
> 		None -> <:expr<None>>
> 		Some x -> <:expr<Some $x>>
> 	in
> 	<:expr< ATypeConstructor  $b$>>
> ...
> END	
>
> I have to do this small trick for each optionnal symbol in each rule,
> (this is also true for list meta symbols introduced by LIST0, LIST1
> ...).
> It would greatly improve readability of my program, if I could define
> a small function outside from the grammar extension which would do:
>
> optionToAst o =
> match o with
>   None -> <:expr<None>>
>   Some x -> <:expr<Some $x>>
>
> However if I do this the compiler complains about unbound value "loc".
> Thanks for your help.


there is an "hidden" loc "argument" to expr quotation, and this loc
variable is defined in the action.

let optionToAst loc o =
match o with
| None -> <:expr<None>>
| Some x -> <:expr<Some $x>>

then you could call "optionToAst loc a" and it will work...

-- 
Rémi Vanicat
vanicat@labri.u-bordeaux.fr
http://dept-info.labri.u-bordeaux.fr/~vanicat

-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


  reply	other threads:[~2003-04-03  9:40 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-04-03  9:25 Frederic Tronel
2003-04-03  9:40 ` Remi Vanicat [this message]
2003-04-03 10:43   ` Frederic Tronel
     [not found]     ` <87vfxvlttf.dlv@wanadoo.fr>
     [not found]       ` <3E8C1FAD.80807@inrialpes.fr>
     [not found]         ` <87n0j7lryf.dlv@wanadoo.fr>
     [not found]           ` <3E8C21ED.80202@inrialpes.fr>
     [not found]             ` <87k7eblqaw.dlv@wanadoo.fr>
2003-04-03 12:29               ` Frederic Tronel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87znn7lxzo.dlv@wanadoo.fr \
    --to=vanicat@labri.u-bordeaux.fr \
    --cc=caml-list@inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).