src/Pure/ML-Systems/ml_compiler_parameters.ML
author wenzelm
Sun, 20 Dec 2015 12:48:56 +0100
changeset 61874 a942e237c9e8
parent 60745 d86b4cd0f1ec
permissions -rw-r--r--
tuned;

(*  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;