22 lines
901 B
OCaml
22 lines
901 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
|
|
|
|
val flatten: t -> string list
|