aboutsummaryrefslogtreecommitdiff
path: root/ide/interface.mli
diff options
context:
space:
mode:
authorMaxime Dénès2017-09-22 11:46:33 +0200
committerMaxime Dénès2017-09-22 11:46:33 +0200
commit06a723190858da8ed3f30736f22398aa7822c959 (patch)
tree805ad45a4492a880dbf6008906eeaff807388ad0 /ide/interface.mli
parent63b3b3f307053fd055355d8a669456c988d083aa (diff)
parent569e8f7601ee1484f8373320a102fa2ab026078c (diff)
Merge PR #1055: Remove STM vernaculars
Diffstat (limited to 'ide/interface.mli')
-rw-r--r--ide/interface.mli5
1 files changed, 5 insertions, 0 deletions
diff --git a/ide/interface.mli b/ide/interface.mli
index 1939a8427c..a5d98946f3 100644
--- a/ide/interface.mli
+++ b/ide/interface.mli
@@ -229,6 +229,9 @@ type print_ast_rty = Xml_datatype.xml
type annotate_sty = string
type annotate_rty = Xml_datatype.xml
+type wait_sty = unit
+type wait_rty = unit
+
type handler = {
add : add_sty -> add_rty;
edit_at : edit_at_sty -> edit_at_rty;
@@ -248,6 +251,8 @@ type handler = {
handle_exn : handle_exn_sty -> handle_exn_rty;
init : init_sty -> init_rty;
quit : quit_sty -> quit_rty;
+ (* for internal use (fake_id) only, do not use *)
+ wait : wait_sty -> wait_rty;
(* Retrocompatibility stuff *)
interp : interp_sty -> interp_rty;
}