45 lines
1.6 KiB
OCaml
45 lines
1.6 KiB
OCaml
(***********************************************************************)
|
|
(* *)
|
|
(* Objective Caml *)
|
|
(* *)
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
(* *)
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
|
(* Automatique. Distributed only by permission. *)
|
|
(* *)
|
|
(***********************************************************************)
|
|
|
|
(* $Id$ *)
|
|
|
|
(* Translation from typed abstract syntax to lambda terms,
|
|
for the core language *)
|
|
|
|
open Asttypes
|
|
open Types
|
|
open Typedtree
|
|
open Lambda
|
|
|
|
val name_pattern: string -> (pattern * 'a) list -> Ident.t
|
|
|
|
val transl_exp: expression -> lambda
|
|
val transl_let:
|
|
rec_flag -> (pattern * expression) list -> lambda -> lambda
|
|
val transl_primitive: Primitive.description -> lambda
|
|
val transl_exception:
|
|
Ident.t -> Path.t option -> exception_declaration -> lambda
|
|
|
|
val check_recursive_lambda: Ident.t list -> lambda -> bool
|
|
|
|
type error =
|
|
Illegal_letrec_pat
|
|
| Illegal_letrec_expr
|
|
| Free_super_var
|
|
|
|
exception Error of Location.t * error
|
|
|
|
val report_error: error -> unit
|
|
|
|
(* Forward declaration -- to be filled in by Translmod.transl_module *)
|
|
val transl_module :
|
|
(module_coercion -> Path.t option -> module_expr -> lambda) ref
|