Blame camlp4/Camlp4Parsers/Camlp4OCamlRevisedQuotationExpander.ml

Packit 1f8b6b
open Camlp4;                                             (* -*- camlp4r -*- *)
Packit 1f8b6b
(****************************************************************************)
Packit 1f8b6b
(*                                                                          *)
Packit 1f8b6b
(*                                   OCaml                                  *)
Packit 1f8b6b
(*                                                                          *)
Packit 1f8b6b
(*                            INRIA Rocquencourt                            *)
Packit 1f8b6b
(*                                                                          *)
Packit 1f8b6b
(*  Copyright 2002-2006 Institut National de Recherche en Informatique et   *)
Packit 1f8b6b
(*  en Automatique.  All rights reserved.  This file is distributed under   *)
Packit 1f8b6b
(*  the terms of the GNU Library General Public License, with the special   *)
Packit 1f8b6b
(*  exception on linking described in LICENSE at the top of the Camlp4      *)
Packit 1f8b6b
(*  source tree.                                                            *)
Packit 1f8b6b
(*                                                                          *)
Packit 1f8b6b
(****************************************************************************)
Packit 1f8b6b
Packit 1f8b6b
(* Authors:
Packit 1f8b6b
 * - Nicolas Pouillard: initial version
Packit 1f8b6b
 *)
Packit 1f8b6b
Packit 1f8b6b
open PreCast;
Packit 1f8b6b
let module Gram = MakeGram Lexer in
Packit 1f8b6b
let module M1 = OCamlInitSyntax.Make Ast Gram Quotation in
Packit 1f8b6b
let module M2 = Camlp4OCamlRevisedParser.Make M1 in
Packit 1f8b6b
let module M3 = Camlp4QuotationCommon.Make M2 Syntax.AntiquotSyntax in ();