This file is indexed.

/usr/lib/ocaml/galax/code_util.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
(***********************************************************************)
(*                                                                     *)
(*                                 GALAX                               *)
(*                              XQuery Engine                          *)
(*                                                                     *)
(*  Copyright 2001-2007.                                               *)
(*  Distributed only by permission.                                    *)
(*                                                                     *)
(***********************************************************************)

(* $Id: code_util.mli,v 1.11 2007/02/01 22:08:45 simeon Exp $ *)

(* Module: Code_util
   Description:
     This module contains some auxiliary evaluation code.
*)

open Namespace_context
open Typing_context

open Xquery_common_ast
open Xquery_algebra_ast

open Datatypes
open Cursor
open Streaming_types
open Physical_value


(***********************************)
(* Auxiliary functions for sorting *)
(***********************************)

val make_atomic_gt : item -> item -> bool

val forest_compare :
    sortkind -> emptysortkind ->
      item cursor -> item cursor ->
	(item -> item -> bool) ->
	  int


(******************************************)
(* Auxiliary functions for function calls *)
(******************************************)

val match_overloaded_function :
    static_context -> Namespace_names.rqname ->
      (cfname * afunction_signature * updating_modifier ) list ->
	(item cursor list -> cfname * item cursor list)

val get_computed_node_name : Namespace_context.nsenv -> item Cursor.cursor -> xs_QName