Module InferModules.ToplUtils

val any_type : InferIR.Typ.t

For now, Topl is untyped. The "any" type is simulated with "java.lang.Object".

val topl_class_name : InferIR.Typ.Name.t
val topl_class_typ : InferIR.Typ.t
val static_var : string -> InferIR.Exp.t
val local_var : InferIR.Typ.Procname.t -> string -> InferIR.Exp.t
val constant_int : int -> InferIR.Exp.t
val topl_call : InferIR.Ident.t -> InferIR.Typ.desc -> InferBase.Location.t -> string -> (InferIR.Exp.t * InferIR.Typ.t) InferStdlib.IStd.sexp_list -> InferIR.Sil.instr

Call a TOPL function; that is, a static member of "topl.Property" with java.lang.Object arguments and return ret_id of type ret_typ.

val is_synthesized : InferIR.Typ.Procname.t -> bool
val debug : ('a, Stdlib.Format.formatter, unit) InferStdlib.IStd.format -> 'a