src/Pure/ML-Systems/ml_parse_tree.ML
author blanchet
Fri, 02 Oct 2015 21:06:32 +0200
changeset 61310 9a50ea544fd3
parent 60744 4eba53a0ac3d
permissions -rw-r--r--
better compliance with TPTP SZS standard

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

Additional ML parse tree components for Poly/ML.
*)

signature ML_PARSE_TREE =
sig
  val completions: PolyML.ptProperties -> string list option
  val breakpoint: PolyML.ptProperties -> bool Unsynchronized.ref option
end;

structure ML_Parse_Tree: ML_PARSE_TREE =
struct

fun completions _ = NONE;
fun breakpoint _ = NONE;

end;