src/Pure/RAW/ml_parse_tree_polyml-5.6.ML
author wenzelm
Mon, 29 Feb 2016 15:39:17 +0100
changeset 62468 d97e13e5ea5b
parent 61925 ab52f183f020
permissions -rw-r--r--
clarified modules;

(*  Title:      Pure/RAW/ml_parse_tree_polyml-5.6.ML
    Author:     Makarius

Additional ML parse tree components for Poly/ML 5.6, or later.
*)

structure ML_Parse_Tree: ML_PARSE_TREE =
struct

fun completions (PolyML.PTcompletions x) = SOME x
  | completions _ = NONE;

fun breakpoint (PolyML.PTbreakPoint x) = SOME x
  | breakpoint _ = NONE;

end;