| author | blanchet |
| Wed, 13 Jan 2016 09:09:38 +0100 | |
| changeset 62159 | 56d35d0fda5b |
| parent 62058 | 1cfd5d604937 |
| permissions | -rw-r--r-- |
(* Title: Pure/RAW/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;