/usr/lib/ocaml/galax/compile_top.mli is in libgalax-ocaml-dev 1.1-13build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | (***********************************************************************)
(* *)
(* GALAX *)
(* XQuery Engine *)
(* *)
(* Copyright 2001-2007. *)
(* Distributed only by permission. *)
(* *)
(***********************************************************************)
(* $Id: compile_top.mli,v 1.10 2007/02/01 22:08:45 simeon Exp $ *)
(* Module: Compile_top
Description:
This module compiles an XQuery toplevel statement or module into
the ALGEBRA.
*)
open Xquery_core_ast
open Xquery_algebra_ast
open Logical_algebra_types
(* Note:
During this stage of compilation, we do not put actual running
code into the structure. This exception is generated if the
structure is executed without replacement of the code.
- Jerome & Chris *)
(***************)
(* Expressions *)
(***************)
val compile_statement : logical_compile_context -> acstatement -> logical_algop_expr
val compile_prolog : logical_compile_context -> acprolog -> (logical_compile_context * logical_algop_prolog)
val compile_xmodule : logical_compile_context -> acxmodule -> (logical_compile_context * logical_algop_xmodule)
|