| author | wenzelm |
| Wed, 20 Jan 2016 15:22:18 +0100 | |
| changeset 62213 | c56c2d50dd6d |
| 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;