author | wenzelm |
Mon, 15 Feb 2016 14:55:44 +0100 | |
changeset 62337 | d3996d5873dd |
parent 62058 | 1cfd5d604937 |
permissions | -rw-r--r-- |
(* Title: Pure/RAW/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;