blob: fd9444da8efd9aea8a9f6fbc9d1ebbd1536758ac (
plain)
1
2
3
4
5
6
7
8
9
10
|
open Ast
open Type_internal
type kind = Type_internal.kind
type typ = Type_internal.t
type envs = Nameset.t * kind Envmap.t * tannot Envmap.t
type 'a envs_out = 'a * envs
val to_ast : Nameset.t -> kind Envmap.t -> tannot Envmap.t -> Parse_ast.defs -> tannot defs * kind Envmap.t
|