src/Pure/ML-Systems/ml_parse_tree_polyml-5.6.ML
author immler
Tue, 22 Dec 2015 21:58:27 +0100
changeset 61915 e9812a95d108
parent 61794 4c232a2ddeab
permissions -rw-r--r--
theory for type of bounded linear functions; differentiation under the integral sign

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