26 lines
1.4 KiB
OCaml
26 lines
1.4 KiB
OCaml
open Camlp4; (* -*- camlp4r -*- *)
|
|
(****************************************************************************)
|
|
(* *)
|
|
(* Objective Caml *)
|
|
(* *)
|
|
(* 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 *)
|
|
(* exception on linking described in LICENSE at the top of the Objective *)
|
|
(* Caml source tree. *)
|
|
(* *)
|
|
(****************************************************************************)
|
|
|
|
(* Authors:
|
|
* - Nicolas Pouillard: initial version
|
|
*)
|
|
|
|
open PreCast;
|
|
let module Gram = MakeGram Lexer in
|
|
let module M1 = OCamlInitSyntax.Make Warning Ast Gram Quotation in
|
|
let module M2 = OCamlr.Make M1 in
|
|
let module M3 = OCaml.Make M2 in
|
|
let module M3 = OCamlQuotationBase.Make M3 Syntax.AntiquotSyntax in ();
|