author | wenzelm |
Tue, 03 Nov 2015 13:54:34 +0100 | |
changeset 61556 | 0d4ee4168e41 |
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;