src/Pure/ML-Systems/ml_compiler_parameters.ML
author blanchet
Fri, 02 Oct 2015 21:16:16 +0200
changeset 61313 570dae974f64
parent 60745 d86b4cd0f1ec
permissions -rw-r--r--
removed obsolete material in documentation

(*  Title:      Pure/ML/ml_compiler_parameters.ML
    Author:     Makarius

Additional ML compiler parameters for Poly/ML.
*)

signature ML_COMPILER_PARAMETERS =
sig
  val debug: bool -> PolyML.Compiler.compilerParameters list
end;

structure ML_Compiler_Parameters: ML_COMPILER_PARAMETERS =
struct

fun debug _ = [];

end;