/usr/lib/ocaml/galax/path_struct.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 | (***********************************************************************)
(* *)
(* GALAX *)
(* XQuery Engine *)
(* *)
(* Copyright 2001-2007. *)
(* Distributed only by permission. *)
(* *)
(***********************************************************************)
(* $Id: path_struct.mli,v 1.5 2007/02/01 22:08:52 simeon Exp $ *)
(* Module: Path_struct
Description:
This module contains types for path structures.
*)
open Xquery_common_ast
open Xquery_core_ast
(* A path is a sequence of steps (axis,nodetest pair). *)
type path = (axis * cnode_test) list
(* Document id *)
type rootid =
| InputDocument of string
| InputVariable of cvname
(* Subtree flag *)
type subtree =
| Subtree
| NoSubtree
(* Path fragments *)
type path_fragment = path * subtree
type path_fragment_sequence = path_fragment list
(* Rooted paths *)
type rooted_path = rootid * path_fragment
type rooted_path_sequence = rooted_path list
|