Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
From: "Benedikt Grundmann" <benedikt@cardexpert.net>
To: "Nicolas Pouillard" <nicolas.pouillard@gmail.com>
Cc: Caml-list <caml-list@inria.fr>
Subject: Re: [Caml-list] Question on camlp4 3.10
Date: Fri, 27 Jul 2007 15:52:43 +0200	[thread overview]
Message-ID: <9b415f950707270652v61ce2302nd62ee5a2025cd09c@mail.gmail.com> (raw)
In-Reply-To: <1185458485-sup-4306@ausone.inria.fr>

Where can I find more documentation on camlp4 filter?  I assumed that
I should be able to use Camlp4FoldGenerator, but I already failed at
importing it into the toplevel, to interactively explore it:

bene@discworld:trunk$ rlwrap ocaml
        Objective Caml version 3.10.0

# #load "camlp4orf.cma";;
	Camlp4 Parsing version 3.10.0

# #load "camlp4lib.cma";;
# open Camlp4.PreCast;;
# class fold = Camlp4Filters.GenerateFold.generated;;
[tons of #load camlp4*.cma which all didn't get me Camlp4Filters into
the toplevel]


And another question, how should one handle errors in a syntax
extension?  One of my syntax extension handles only part of the full
ocaml type language, but instead of rewriting the type parser, I use
the original parser and apply a function on the Camlp4.Ast, so
sometimes I encounter a node in the ast that I cannot handle, what
should I do then?

Currently I do:

match t with
  | <:ctyp< ... > -> ...
  | _ ->
       let _loc = Ast.loc_of_ctyp t in
        Printf.eprintf "pa_message: Don't know how to handle the type
at %s\n%!"
          (Loc.to_string _loc);
        exit 1

But I'm sure that there is a better builtin way?!  (For example it
would be nice if I could
include a textual representation of t in the error message)


Thanks in advance,

Bene


2007/7/26, Nicolas Pouillard <nicolas.pouillard@gmail.com>:
> Ah,  sorry  I didn't read the second part. It's a lot harder to have it correct
> unless  you  completely ignore "open". You should do that with a Camlp4 filter,
> that  store  the  module  path while traversing module declaration in a topdown
> way.
>
> >
> > 2007/7/26, Nicolas Pouillard <nicolas.pouillard@gmail.com>:
> > > Look at the Camlp4MacroParser extension, there is __FILE__.
> > >
> > > Excerpts from Benedikt Grundmann's message of Thu Jul 26 15:46:26 +0200 2007:
> > > > How can I get the name of the module where my syntax extension is
> > > > applied?  For simplicity assume that I would like to write a MODULE
> > > > macro similar to __FILE__ in c.
> > > >
> > > > shell> cat > test.ml
> > > > let _ = print_endline MODULE
> > > >
> > > > shell> ./test
> > > > Test
> > > > shell> cat > test2.ml
> > > > module M =
> > > > struct
> > > >   let _ = print_endline MODULE
> > > > end
> > > >
> > > > shell> ./test2
> > > > Test.M
> > > >
> > > >
> > > > Cheers,
> > > >
> > > > Bene
> > > >
> > >
> > > --
> > > Nicolas Pouillard aka Ertai
> > >
> >
>
> --
> Nicolas Pouillard aka Ertai
>


-- 
Calvin: I try to make everyone's day a little more
surreal.

(From Calvin & Hobbes)


  reply	other threads:[~2007-07-27 13:52 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-26 13:46 Benedikt Grundmann
2007-07-26 13:50 ` [Caml-list] " Nicolas Pouillard
     [not found]   ` <9b415f950707260657v6f2f92c6s84e2334f8c34e137@mail.gmail.com>
2007-07-26 14:04     ` Nicolas Pouillard
2007-07-27 13:52       ` Benedikt Grundmann [this message]
2007-08-09 18:32         ` Nicolas Pouillard

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=9b415f950707270652v61ce2302nd62ee5a2025cd09c@mail.gmail.com \
    --to=benedikt@cardexpert.net \
    --cc=caml-list@inria.fr \
    --cc=nicolas.pouillard@gmail.com \
    /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