1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
(* Predefined type constructors (with special typing rules in typecore) *)
|
|
|
|
|
1996-09-23 04:33:27 -07:00
|
|
|
open Types
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
val type_int: type_expr
|
|
|
|
val type_char: type_expr
|
|
|
|
val type_string: type_expr
|
|
|
|
val type_float: type_expr
|
|
|
|
val type_bool: type_expr
|
|
|
|
val type_unit: type_expr
|
|
|
|
val type_exn: type_expr
|
|
|
|
val type_array: type_expr -> type_expr
|
|
|
|
val type_list: type_expr -> type_expr
|
1999-11-30 08:07:38 -08:00
|
|
|
val type_option: type_expr -> type_expr
|
2000-02-21 10:14:56 -08:00
|
|
|
val type_nativeint: type_expr
|
|
|
|
val type_int32: type_expr
|
|
|
|
val type_int64: type_expr
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
val path_int: Path.t
|
|
|
|
val path_char: Path.t
|
|
|
|
val path_string: Path.t
|
|
|
|
val path_float: Path.t
|
|
|
|
val path_bool: Path.t
|
|
|
|
val path_unit: Path.t
|
|
|
|
val path_exn: Path.t
|
|
|
|
val path_array: Path.t
|
|
|
|
val path_list: Path.t
|
|
|
|
val path_format: Path.t
|
1999-11-30 08:07:38 -08:00
|
|
|
val path_option: Path.t
|
2000-02-21 10:14:56 -08:00
|
|
|
val path_nativeint: Path.t
|
|
|
|
val path_int32: Path.t
|
|
|
|
val path_int64: Path.t
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
val path_match_failure: Path.t
|
2000-12-04 07:37:05 -08:00
|
|
|
val path_assert_failure : Path.t
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
(* To build the initial environment. Since there is a nasty mutual
|
|
|
|
recursion between predef and env, we break it by parameterizing
|
|
|
|
over Env.t, Env.add_type and Env.add_exception. *)
|
|
|
|
|
|
|
|
val build_initial_env:
|
|
|
|
(Ident.t -> type_declaration -> 'a -> 'a) ->
|
|
|
|
(Ident.t -> exception_declaration -> 'a -> 'a) ->
|
|
|
|
'a -> 'a
|
|
|
|
|
|
|
|
(* To initialize linker tables *)
|
|
|
|
|
|
|
|
val builtin_values: (string * Ident.t) list
|