src/Pure/ML-Systems/ml_parse_tree_polyml-5.5.3.ML
changeset 61794 4c232a2ddeab
parent 61793 4c9e1e5a240e
child 61795 16901b0392c6
equal deleted inserted replaced
61793:4c9e1e5a240e 61794:4c232a2ddeab
     1 (*  Title:      Pure/ML/ml_parse_tree_polyml-5.5.3.ML
       
     2     Author:     Makarius
       
     3 
       
     4 Additional ML parse tree components for Poly/ML 5.5.3, or later.
       
     5 *)
       
     6 
       
     7 structure ML_Parse_Tree: ML_PARSE_TREE =
       
     8 struct
       
     9 
       
    10 fun completions (PolyML.PTcompletions x) = SOME x
       
    11   | completions _ = NONE;
       
    12 
       
    13 fun breakpoint (PolyML.PTbreakPoint x) = SOME x
       
    14   | breakpoint _ = NONE;
       
    15 
       
    16 end;