src/Pure/ML-Systems/ml_parse_tree.ML
changeset 60744 4eba53a0ac3d
parent 60731 4ac4b314d93c
equal deleted inserted replaced
60743:37d624a8b128 60744:4eba53a0ac3d
     5 *)
     5 *)
     6 
     6 
     7 signature ML_PARSE_TREE =
     7 signature ML_PARSE_TREE =
     8 sig
     8 sig
     9   val completions: PolyML.ptProperties -> string list option
     9   val completions: PolyML.ptProperties -> string list option
    10   val break_point: PolyML.ptProperties -> bool Unsynchronized.ref option
    10   val breakpoint: PolyML.ptProperties -> bool Unsynchronized.ref option
    11 end;
    11 end;
    12 
    12 
    13 structure ML_Parse_Tree: ML_PARSE_TREE =
    13 structure ML_Parse_Tree: ML_PARSE_TREE =
    14 struct
    14 struct
    15 
    15 
    16 fun completions _ = NONE;
    16 fun completions _ = NONE;
    17 fun break_point _ = NONE;
    17 fun breakpoint _ = NONE;
    18 
    18 
    19 end;
    19 end;