diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1995-05-04 10:15:53 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1995-05-04 10:15:53 +0000 |
commit | 61bd8ace6bdb2652f4d51d64e3239a7105f56c26 (patch) | |
tree | e8b957df0957c1b483d41d68973824e280445548 /typing/path.mli | |
parent | 8f9ea2a7b886e3e0a5cfd76b11fe79d083a7f20c (diff) | |
download | ocaml-61bd8ace6bdb2652f4d51d64e3239a7105f56c26.tar.gz |
Passage a la version bootstrappee (franchissement du Rubicon)
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'typing/path.mli')
-rw-r--r-- | typing/path.mli | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/typing/path.mli b/typing/path.mli new file mode 100644 index 0000000000..51a0ac96cd --- /dev/null +++ b/typing/path.mli @@ -0,0 +1,10 @@ +(* Access paths *) + +type t = + Pident of Ident.t + | Pdot of t * string * int + +val same: t -> t -> bool +val isfree: Ident.t -> t -> bool + +val nopos: int |