author | wenzelm |
Wed, 12 Aug 2015 13:53:51 +0200 | |
changeset 60916 | a6e2a667b0a8 |
parent 60745 | d86b4cd0f1ec |
permissions | -rw-r--r-- |
(* 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;