29 lines
1.0 KiB
OCaml
29 lines
1.0 KiB
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$ *)
|
|
|
|
(* Auxiliary a.s.t. types used by parsetree and typedtree. *)
|
|
|
|
type constant =
|
|
Const_int of int
|
|
| Const_char of char
|
|
| Const_string of string
|
|
| Const_float of string
|
|
|
|
type rec_flag = Nonrecursive | Recursive
|
|
|
|
type direction_flag = Upto | Downto
|
|
|
|
type mutable_flag = Immutable | Mutable
|
|
|
|
|