26 lines
955 B
OCaml
26 lines
955 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 binding_time: t -> int
|
|
|
|
val nopos: int
|