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 *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
(* Translation from typed abstract syntax to lambda terms,
|
|
|
|
for the module language *)
|
|
|
|
|
|
|
|
open Typedtree
|
|
|
|
open Lambda
|
|
|
|
|
|
|
|
val transl_implementation: string -> structure -> module_coercion -> lambda
|
1996-02-18 06:43:18 -08:00
|
|
|
val transl_store_implementation:
|
|
|
|
string -> structure -> module_coercion -> int * lambda
|
1995-05-04 03:15:53 -07:00
|
|
|
val transl_toplevel_definition: structure -> lambda
|
1995-10-09 06:37:11 -07:00
|
|
|
|
1995-11-05 09:32:12 -08:00
|
|
|
val primitive_declarations: string list ref
|