ocaml/parsing/longident.mli

19 lines
869 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$ *)
(* Long identifiers, used in parsetree. *)
type t =
Lident of string
| Ldot of t * string
| Lapply of t * t