src/Pure/RAW/ml_parse_tree_polyml-5.6.ML
author wenzelm
Mon, 15 Feb 2016 14:55:44 +0100
changeset 62337 d3996d5873dd
parent 61925 ab52f183f020
permissions -rw-r--r--
proper syntax;

(*  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;