let inspect_ast_class_sections (sections : Ast.class_sections_def) =
Printf.sprintf "{ privates = %s, protects = %s, publics = %s, refines = %s, mains = %s }"
(inspect_str_list inspect_ast_member_def sections.privates)
(inspect_str_list inspect_ast_member_def sections.protects)
(inspect_str_list inspect_ast_member_def sections.publics)
(inspect_str_list inspect_ast_func_def sections.refines)
(inspect_str_list inspect_ast_func_def sections.mains)