From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on yquem.inria.fr X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=disabled version=3.1.3 X-Original-To: caml-list@yquem.inria.fr Delivered-To: caml-list@yquem.inria.fr Received: from concorde.inria.fr (concorde.inria.fr [192.93.2.39]) by yquem.inria.fr (Postfix) with ESMTP id 56938BC69 for ; Thu, 29 Mar 2007 17:50:28 +0200 (CEST) Received: from smeltpunt.science.ru.nl (smeltpunt.science.ru.nl [131.174.16.145]) by concorde.inria.fr (8.13.6/8.13.6) with ESMTP id l2TFoRQR020966 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Thu, 29 Mar 2007 17:50:28 +0200 Received: from tandem.cs.ru.nl [131.174.142.18] (helo=tandem.cs.ru.nl) by smeltpunt.science.ru.nl (8.13.7/5.11) with ESMTP id l2TFoR08005787 for ; Thu, 29 Mar 2007 17:50:27 +0200 (MEST) Received: from tews by tandem.cs.ru.nl with local (Exim 4.63) (envelope-from ) id 1HWwtQ-0007P4-1l for caml-list@yquem.inria.fr; Thu, 29 Mar 2007 17:50:28 +0200 From: Hendrik Tews To: caml-list@yquem.inria.fr Subject: Re: [Caml-list] camlp4 3.10 questions References: <17930.60913.933794.204656@tandem.cs.ru.nl> Date: Thu, 29 Mar 2007 17:50:27 +0200 In-Reply-To: (Nicolas Pouillard's message of "Thu, 29 Mar 2007 11:48:54 +0200") Message-ID: User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Scanned-By: MIMEDefang 2.56 on 131.174.16.145 X-Miltered: at concorde with ID 460BE043.001 by Joe's j-chkmail (http://j-chkmail . ensmp . fr)! X-Spam: no; 0.00; hendrik:01 tews:01 tews:01 camlp:01 hendrik:01 sig:01 syntax:01 sig:01 camlp:01 syntax:01 expander:01 wrote:01 caml-list:01 writes:01 usable:01 "Nicolas Pouillard" writes: On 3/29/07, Hendrik Tews wrote: > > 1. What is the difference between Register.Printer and > Register.OCamlPrinter? I guess it boils down to the difference > between Sig.Syntax and Sig.Camlp4Syntax? Yes it's mainly a difference about what your printer really needs. If you use the camlp4 AST then you need a Sig.Camlp4Syntax as argument, if it's not needed then you can use Sig.Syntax. Does this mean I have to use Camlp4Syntax and OCamlPrinter it I want to use quotations? Or do the quotations also work on Sig.Syntax? > 3. Register.declare_dyn_module puts all modules in a queue > together with a function that contains some delayed side > effects. Where are these function called? Camlp4Bin.ml Well, I was that far. But where in Camlp4Bin? > 5. I saw Camlp4OCamlOriginalQuotationExpander, presumably this is > a quotation expander for quotations in original syntax. Is > this already complete? Complete, not really but usable yes. Are there just corner cases missing or whole branches of the syntax? > What is camlp4prof? A profiling toy. Well... profiling what? Bye, Hendrik