2006-06-29 01:12:46 -07:00
|
|
|
open Camlp4; (* -*- camlp4r -*- *)
|
|
|
|
(****************************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
2006-06-29 01:12:46 -07:00
|
|
|
(* *)
|
|
|
|
(* INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 2002-2006 Institut National de Recherche en Informatique et *)
|
|
|
|
(* en Automatique. All rights reserved. This file is distributed under *)
|
|
|
|
(* the terms of the GNU Library General Public License, with the special *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* exception on linking described in LICENSE at the top of the OCaml *)
|
|
|
|
(* source tree. *)
|
2006-06-29 01:12:46 -07:00
|
|
|
(* *)
|
|
|
|
(****************************************************************************)
|
|
|
|
|
|
|
|
(* Authors:
|
|
|
|
* - Nicolas Pouillard: initial version
|
|
|
|
*)
|
|
|
|
|
|
|
|
open PreCast;
|
|
|
|
let module Gram = MakeGram Lexer in
|
2007-10-08 07:19:34 -07:00
|
|
|
let module M1 = OCamlInitSyntax.Make Ast Gram Quotation in
|
2007-02-07 02:09:29 -08:00
|
|
|
let module M2 = Camlp4OCamlRevisedParser.Make M1 in
|
|
|
|
let module M3 = Camlp4QuotationCommon.Make M2 Syntax.AntiquotSyntax in ();
|