-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprelude.mli
executable file
·28 lines (24 loc) · 1.35 KB
/
prelude.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(***********************************************************************)
(* *)
(* Event Spaces *)
(* *)
(* Néstor CATAÑO, Lemme project *)
(* INRIA Sophia Antipolis *)
(* 2004 route des Lucioles-B.P. 93 *)
(* 06902 Sophia Antipolis Cedex (France) *)
(* *)
(***********************************************************************)
(***********************************************************************)
(* This module summerize the static information of the Store. **)
(***********************************************************************)
open Javasyntax
exception Class_Not_Found of string * string
exception Not_Applicable of string * string
val getCmpUn: classtype -> compilunit option
val getImp: classtype -> (implements list) option
val getSuper: classtype -> identifier option
val methoddecl: classtype -> methoddecl list
val constructordecl: classtype -> constrdecl list
val fielddecl: classtype -> fielddecl list
val load: compilunit -> unit
;;