src/Pure/ML/ml_compiler2.ML
author nipkow
Mon, 14 May 2018 15:37:26 +0200
changeset 68175 e0bd5089eabf
parent 62944 3ee643c5ed00
child 74148 a97d5356f1d9
permissions -rw-r--r--
cleaning up sorted

(*  Title:      Pure/ML/ml_compiler2.ML
    Author:     Makarius

Isabelle/ML file operations.
*)

val {ML_file, ML_file_debug, ML_file_no_debug} =
  ML_Compiler0.ML_file_operations (fn opt_debug => fn file =>
    let val flags = ML_Compiler.verbose true (ML_Compiler.debug_flags opt_debug) in
      ML_Context.eval_file flags (Path.explode file)
        handle ERROR msg => (writeln msg; error "ML error")
    end);

val use = ML_file;