| author | wenzelm |
| Wed, 19 Aug 2015 16:21:10 +0200 | |
| changeset 60975 | 5f3d6e16ea78 |
| 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;