diff options
Diffstat (limited to '')
-rw-r--r-- | src/TranslateCore.ml | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/TranslateCore.ml b/src/TranslateCore.ml index f74b552b..3a22d388 100644 --- a/src/TranslateCore.ml +++ b/src/TranslateCore.ml @@ -12,34 +12,34 @@ let log = L.translate_log type trans_ctx = { type_context : C.type_context; fun_context : C.fun_context } -type pure_fun_translation = Pure.fun_def * Pure.fun_def list +type pure_fun_translation = Pure.fun_decl * Pure.fun_decl list -let type_def_to_string (ctx : trans_ctx) (def : Pure.type_def) : string = +let type_decl_to_string (ctx : trans_ctx) (def : Pure.type_decl) : string = let type_params = def.type_params in - let type_defs = ctx.type_context.type_defs in - let fmt = PrintPure.mk_type_formatter type_defs type_params in - PrintPure.type_def_to_string fmt def + let type_decls = ctx.type_context.type_decls in + let fmt = PrintPure.mk_type_formatter type_decls type_params in + PrintPure.type_decl_to_string fmt def -let type_id_to_string (ctx : trans_ctx) (def : Pure.type_def) : string = +let type_id_to_string (ctx : trans_ctx) (def : Pure.type_decl) : string = let type_params = def.type_params in - let type_defs = ctx.type_context.type_defs in - let fmt = PrintPure.mk_type_formatter type_defs type_params in - PrintPure.type_def_to_string fmt def + let type_decls = ctx.type_context.type_decls in + let fmt = PrintPure.mk_type_formatter type_decls type_params in + PrintPure.type_decl_to_string fmt def let fun_sig_to_string (ctx : trans_ctx) (sg : Pure.fun_sig) : string = let type_params = sg.type_params in - let type_defs = ctx.type_context.type_defs in - let fun_defs = ctx.fun_context.fun_defs in - let fmt = PrintPure.mk_ast_formatter type_defs fun_defs type_params in + let type_decls = ctx.type_context.type_decls in + let fun_decls = ctx.fun_context.fun_decls in + let fmt = PrintPure.mk_ast_formatter type_decls fun_decls type_params in PrintPure.fun_sig_to_string fmt sg -let fun_def_to_string (ctx : trans_ctx) (def : Pure.fun_def) : string = +let fun_decl_to_string (ctx : trans_ctx) (def : Pure.fun_decl) : string = let type_params = def.signature.type_params in - let type_defs = ctx.type_context.type_defs in - let fun_defs = ctx.fun_context.fun_defs in - let fmt = PrintPure.mk_ast_formatter type_defs fun_defs type_params in - PrintPure.fun_def_to_string fmt def + let type_decls = ctx.type_context.type_decls in + let fun_decls = ctx.fun_context.fun_decls in + let fmt = PrintPure.mk_ast_formatter type_decls fun_decls type_params in + PrintPure.fun_decl_to_string fmt def -let fun_def_id_to_string (ctx : trans_ctx) (id : Pure.FunDefId.id) : string = +let fun_decl_id_to_string (ctx : trans_ctx) (id : Pure.FunDeclId.id) : string = Print.fun_name_to_string - (Pure.FunDefId.Map.find id ctx.fun_context.fun_defs).name + (Pure.FunDeclId.Map.find id ctx.fun_context.fun_decls).name |