1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
(***********************************************************************)
(* *)
(* HEVEA *)
(* *)
(* Luc Maranget, projet Moscova, INRIA Rocquencourt *)
(* *)
(* Copyright 2001 Institut National de Recherche en Informatique et *)
(* Automatique. Distributed only by permission. *)
(* *)
(* $Id: tree.mli,v 1.5 2005-02-25 17:49:18 maranget Exp $ *)
(***********************************************************************)
type 'a t =
| Text of string
| Blanks of string
| Node of 'a * ('a t) list
| ONode of string * string * ('a t) list
|