Module InferModules.CContext
module StmtMap = ClangPointers.Mapval compare_curr_class : curr_class -> curr_class -> int
type str_node_map= (string, InferIR.Procdesc.Node.t) InferStdlib.IStd.Caml.Hashtbl.ttype t={translation_unit_context : CFrontend_config.translation_unit_context;tenv : InferIR.Tenv.t;cfg : InferIR.Cfg.t;procdesc : InferIR.Procdesc.t;immediate_curr_class : curr_class;return_param_typ : InferIR.Typ.t option;outer_context : t option;in case of objc blocks, the context of the method containing the block
mutable blocks_static_vars : (InferIR.Pvar.t * InferIR.Typ.t) list InferIR.Typ.Procname.Map.t;label_map : str_node_map;vars_to_destroy : InferGenerated.Clang_ast_t.decl list StmtMap.t;mapping from a statement to a list of variables, that go out of scope after the end of the statement
temporary_names : (InferGenerated.Clang_ast_t.pointer, InferIR.Pvar.t * InferIR.Typ.t) InferStdlib.IStd.Caml.Hashtbl.t;}
val get_curr_class : t -> curr_classval get_curr_class_typename : InferGenerated.Clang_ast_t.stmt_info -> t -> InferIR.Typ.Name.tval get_curr_class_decl_ptr : InferGenerated.Clang_ast_t.stmt_info -> curr_class -> InferGenerated.Clang_ast_t.pointerval is_objc_method : t -> boolval is_objc_class_method : t -> boolval create_context : CFrontend_config.translation_unit_context -> InferIR.Tenv.t -> InferIR.Cfg.t -> InferIR.Procdesc.t -> curr_class -> InferIR.Typ.t option -> t option -> InferGenerated.Clang_ast_t.decl list StmtMap.t -> tval add_block_static_var : t -> InferIR.Typ.Procname.t -> (InferIR.Pvar.t * InferIR.Typ.t) -> unitval get_outer_procname : t -> InferIR.Typ.Procname.t