author | wenzelm |
Wed, 12 Aug 2015 13:53:51 +0200 | |
changeset 60916 | a6e2a667b0a8 |
parent 60744 | 4eba53a0ac3d |
permissions | -rw-r--r-- |
(* Title: Pure/ML/ml_parse_tree.ML Author: Makarius Additional ML parse tree components for Poly/ML. *) signature ML_PARSE_TREE = sig val completions: PolyML.ptProperties -> string list option val breakpoint: PolyML.ptProperties -> bool Unsynchronized.ref option end; structure ML_Parse_Tree: ML_PARSE_TREE = struct fun completions _ = NONE; fun breakpoint _ = NONE; end;