src/Pure/ML-Systems/ml_parse_tree_polyml-5.6.ML
author haftmann
Mon, 07 Dec 2015 10:49:08 +0100
changeset 61823 5daa82ba4078
parent 61794 4c232a2ddeab
permissions -rw-r--r--
clarified terminology

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