OSDN Git Service

[UPDATE] Now, bindCheck.ml raises some exception.
[happyabc/happyabc.git] / src / bindCheck.mli
1 exception Unbound_var of string Node.t
2 exception Unbound_class of (string*string) Node.t
3 exception Unbound_method of string Node.t
4
5 type method_ = Ast.ident
6 type stmt =
7     [ `ExternalClass of Ast.name * method_ list
8     | `External of Ast.ident
9     | Ast.stmt]
10
11 val check : stmt list -> Ast.stmt list