src/Pure/PIDE/isabelle_markup.ML
changeset 48712 6b7a9bcc0bae
parent 48710 5b51ccdc8623
child 48751 dc3bbdda4bc8
equal deleted inserted replaced
48711:8d381fdef898 48712:6b7a9bcc0bae
   100   val promptN: string val prompt: Markup.T
   100   val promptN: string val prompt: Markup.T
   101   val reportN: string val report: Markup.T
   101   val reportN: string val report: Markup.T
   102   val no_reportN: string val no_report: Markup.T
   102   val no_reportN: string val no_report: Markup.T
   103   val badN: string val bad: Markup.T
   103   val badN: string val bad: Markup.T
   104   val functionN: string
   104   val functionN: string
   105   val ready: Properties.T
       
   106   val assign_execs: Properties.T
   105   val assign_execs: Properties.T
   107   val removed_versions: Properties.T
   106   val removed_versions: Properties.T
   108   val invoke_scala: string -> string -> Properties.T
   107   val invoke_scala: string -> string -> Properties.T
   109   val cancel_scala: string -> Properties.T
   108   val cancel_scala: string -> Properties.T
   110 end;
   109 end;
   303 
   302 
   304 (* protocol message functions *)
   303 (* protocol message functions *)
   305 
   304 
   306 val functionN = "function"
   305 val functionN = "function"
   307 
   306 
   308 val ready = [(functionN, "ready")];
       
   309 
       
   310 val assign_execs = [(functionN, "assign_execs")];
   307 val assign_execs = [(functionN, "assign_execs")];
   311 val removed_versions = [(functionN, "removed_versions")];
   308 val removed_versions = [(functionN, "removed_versions")];
   312 
   309 
   313 fun invoke_scala name id = [(functionN, "invoke_scala"), (Markup.nameN, name), (idN, id)];
   310 fun invoke_scala name id = [(functionN, "invoke_scala"), (Markup.nameN, name), (idN, id)];
   314 fun cancel_scala id = [(functionN, "cancel_scala"), (idN, id)];
   311 fun cancel_scala id = [(functionN, "cancel_scala"), (idN, id)];