Add copyright notices and new function String.chomp
[ocaml.git] / parsing / asttypes.mli
blobf9824d05904a7736cf833f73d6c2566551f4e8cc
1 (***********************************************************************)
2 (* *)
3 (* Objective Caml *)
4 (* *)
5 (* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
6 (* *)
7 (* Copyright 1996 Institut National de Recherche en Informatique et *)
8 (* en Automatique. All rights reserved. This file is distributed *)
9 (* under the terms of the Q Public License version 1.0. *)
10 (* *)
11 (***********************************************************************)
13 (* $Id$ *)
15 (* Auxiliary a.s.t. types used by parsetree and typedtree. *)
17 type constant =
18 Const_int of int
19 | Const_char of char
20 | Const_string of string
21 | Const_float of string
22 | Const_int32 of int32
23 | Const_int64 of int64
24 | Const_nativeint of nativeint
26 type rec_flag = Nonrecursive | Recursive | Default
28 type direction_flag = Upto | Downto
30 type private_flag = Private | Public
32 type mutable_flag = Immutable | Mutable
34 type virtual_flag = Virtual | Concrete
36 type label = string