25 lines
928 B
OCaml
25 lines
928 B
OCaml
(***********************************************************************)
|
|
(* *)
|
|
(* Caml Special Light *)
|
|
(* *)
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
(* *)
|
|
(* Copyright 1995 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
|