This file is indexed.

/usr/lib/ocaml/galax/evaluation_top.mli is in libgalax-ocaml-dev 1.1-12.

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
37
(***********************************************************************)
(*                                                                     *)
(*                                 GALAX                               *)
(*                              XQuery Engine                          *)
(*                                                                     *)
(*  Copyright 2001-2007.                                               *)
(*  Distributed only by permission.                                    *)
(*                                                                     *)
(***********************************************************************)

(* $Id: evaluation_top.mli,v 1.9 2007/02/01 22:08:46 simeon Exp $ *)

(* Module Eval_top
   Description:
     This module implements evaluation of top-level statements and of
     the XQuery prolog.
*)

open Algebra_type
open Execution_context
open Physical_value

val eval_cstatement :
    algebra_context  -> algop_expr    -> physical_value
    (* Evaluate a top level statement *)

val eval_prolog :
    algebra_context -> algop_prolog   -> algebra_context * physical_value list
    (* Evaluate global declarations *)

val eval_library_module :
    algebra_context -> algop_xmodule  -> algebra_context * physical_value list
    (* Evaluate global declarations *)

val eval_main_module :
    algebra_context  -> algop_xmodule -> algebra_context * physical_value list
    (* Evaluate the whole query *)