/[svn]/typing/typer.mli
ViewVC logotype

Contents of /typing/typer.mli

Parent Directory Parent Directory | Revision Log Revision Log


Revision 691 - (show annotations)
Tue Jul 10 17:55:19 2007 UTC (5 years, 10 months ago) by abate
File size: 2447 byte(s)
[r2003-09-27 12:41:30 by cvscast] Serialization, new system for operators, ...

Original author: cvscast
Date: 2003-09-27 12:41:34+00:00
1 open Ident
2 open Location
3
4 exception NonExhaustive of Types.descr
5 exception Constraint of Types.descr * Types.descr
6 exception ShouldHave of Types.descr * string
7 exception WrongLabel of Types.descr * label
8 exception UnboundId of id * bool
9 exception ShouldHave2 of Types.descr * string * Types.descr
10 exception Error of string
11 val warning: loc -> string -> unit
12 val error: loc -> string -> 'a
13
14 include Custom.T
15
16 val empty_env: t
17 val get_ns_table : t -> Ns.table
18
19 val enter_ns : U.t -> Ns.t -> t -> t
20
21 val enter_value: id -> Types.t -> t -> t
22 val enter_values: (id * Types.t) list -> t -> t
23 val find_value: id -> t -> Types.t
24
25 val enter_type: id -> Types.t -> t -> t
26 val enter_types: (id * Types.t) list -> t -> t
27 val find_type: id -> t -> Types.t
28
29 val type_defs: t -> (id * Ast.ppat) list -> (id * Types.t) list
30 val typ: t -> Ast.ppat -> Types.Node.t
31 val pat: t -> Ast.ppat -> Patterns.node
32
33 val dump_types: Format.formatter -> t -> unit
34
35
36
37 val dump_ns: Format.formatter -> t -> unit
38 val set_ns_table_for_printer: t -> unit
39
40 val expr: t -> Ast.pexpr -> fv * Typed.texpr
41 val let_decl : t -> Ast.ppat -> Ast.pexpr -> Typed.let_decl
42
43 val type_check:
44 t -> Typed.texpr -> Types.descr -> bool -> Types.descr
45 (* [type_check env e t precise] checks that expression [e]
46 has type [t] under typing environment [env]; if [precise=true],
47 also returns a possible more precise type for [e].
48 *)
49 val type_let_decl: t -> Typed.let_decl -> (id * Types.t) list
50
51 val type_rec_funs: t -> Typed.texpr list -> (id * Types.t) list
52 (* Assume that all the expressions are Abstractions *)
53
54 val report_unused_branches : unit -> unit
55 (* Issue warnings for unused branches *)
56 val clear_unused_branches : unit -> unit
57
58 val flatten: loc ->
59 (Types.t -> bool -> Types.t) -> (Types.t -> bool -> Types.t)
60
61 (** {2 Schema stuff} *)
62
63 (** register a schema *)
64 val register_schema: string -> Schema_types.schema -> unit
65
66 (** @return the validator for a Schema global element *)
67 val get_schema_validator: string * string -> Schema_validator.validator
68
69 (** DEBUG ONLY *)
70
71 (* return the type of a global schema element *)
72 val get_schema_type: string * string -> Types.descr
73
74
75
76 (* Operators *)
77
78 type type_fun = Types.t -> bool -> Types.t
79 val mk_unary_op: (string -> t -> int) ref
80 val typ_unary_op: (int -> loc -> type_fun -> type_fun) ref
81
82 val mk_binary_op: (string -> t -> int) ref
83 val typ_binary_op: (int -> loc -> type_fun -> type_fun -> type_fun) ref
84

CVS Admin">CVS Admin
ViewVC Help
Powered by ViewVC 1.1.5