src/Pure/ML-Systems/ml_parse_tree_polyml-5.5.3.ML
author wenzelm
Fri, 25 Sep 2015 20:37:59 +0200
changeset 61268 abe08fb15a12
parent 60744 4eba53a0ac3d
permissions -rw-r--r--
moved remaining display.ML to more_thm.ML;

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

Additional ML parse tree components for Poly/ML 5.5.3, 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;