src/Pure/RAW/ml_parse_tree.ML
author Manuel Eberl <eberlm@in.tum.de>
Tue, 19 Jan 2016 11:19:25 +0100
changeset 62201 eca7b38c8ee5
parent 62058 1cfd5d604937
permissions -rw-r--r--
Added approximation of powr to NEWS/CONTRIBUTORS

(*  Title:      Pure/RAW/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;