summaryrefslogtreecommitdiff
path: root/typing/path.mli
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1995-05-04 10:15:53 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1995-05-04 10:15:53 +0000
commit61bd8ace6bdb2652f4d51d64e3239a7105f56c26 (patch)
treee8b957df0957c1b483d41d68973824e280445548 /typing/path.mli
parent8f9ea2a7b886e3e0a5cfd76b11fe79d083a7f20c (diff)
downloadocaml-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.mli10
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