ocaml/typing/path.mli

25 lines
928 B
OCaml

(***********************************************************************)
(* *)
(* Objective Caml *)
(* *)
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1996 Institut National de Recherche en Informatique et *)
(* Automatique. Distributed only by permission. *)
(* *)
(***********************************************************************)
(* $Id$ *)
(* Access paths *)
type t =
Pident of Ident.t
| Pdot of t * string * int
| Papply of t * t
val same: t -> t -> bool
val isfree: Ident.t -> t -> bool
val nopos: int