From 494757e5aebe06d8c47d0a29b48e817c88b232b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Hinderer?= Date: Tue, 27 Feb 2018 18:29:16 +0100 Subject: ocamltest: compiler and toplevel classes enhancements In the compiler class, replace the backend and is_native methods by host and target ones. In the toplevel class, get rid of the is_native method which is useless at the moment. --- ocamltest/ocaml_compilers.mli | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ocamltest/ocaml_compilers.mli') diff --git a/ocamltest/ocaml_compilers.mli b/ocamltest/ocaml_compilers.mli index daf491f807..e4eb638e38 100644 --- a/ocamltest/ocaml_compilers.mli +++ b/ocamltest/ocaml_compilers.mli @@ -22,11 +22,11 @@ class compiler : exit_status_variable : Variables.t -> reference_variable : Variables.t -> output_variable : Variables.t -> - backend : Ocaml_backends.t -> - is_native : bool -> + host : Ocaml_backends.t -> + target : Ocaml_backends.t -> object inherit Ocaml_tools.tool - method backend : Ocaml_backends.t - method is_native : bool + method host : Ocaml_backends.t + method target : Ocaml_backends.t method program_variable : Variables.t method program_output_variable : Variables.t option end -- cgit v1.2.1