blob: 211b34e139589e65d96519e91705b78d20f362c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2010 *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
(** * Interface of CoqIde calls to Coq *)
type 'a menu = 'a * (string * string) list
type goals =
| Message of string
| Goals of ((string menu) list * string menu) list
type 'a call
type raw = bool
type verbose = bool
(** Running a command (given as a string).
- The 1st flag indicates whether to use "raw" mode
(less sanity checks, no impact on the undo stack).
Suitable e.g. for queries, or for the Set/Unset
of display options that coqide performs all the time.
- The 2nd flag controls the verbosity.
- The returned string contains the messages produced
by this command, but not the updated goals (they are
to be fetch by a separated [current_goals]). *)
val interp : raw * verbose * string -> string call
(** Backtracking by a certain number of phrases. *)
val rewind : int -> unit call
(** Fetching the list of current goals *)
val goals : goals call
(** The status, for instance "Ready in SomeSection, proving Foo" *)
val status : string call
(** Is a directory part of Coq's loadpath ? *)
val inloadpath : string -> bool call
(** Create a "match" template for a given inductive type.
For each branch of the match, we list the constructor name
followed by enough pattern variables. *)
val mkcases : string -> string list list call
(** * Coq answers to CoqIde *)
type location = (int * int) option (* start and end of the error *)
type 'a value =
| Good of 'a
| Fail of (location * string)
(** * The structure that coqtop should implement *)
type handler = {
interp : raw * verbose * string -> string;
rewind : int -> unit;
goals : unit -> goals;
status : unit -> string;
inloadpath : string -> bool;
mkcases : string -> string list list;
}
val abstract_eval_call :
handler -> (exn -> location * string) ->
'a call -> 'a value
(** * Debug printing *)
val pr_call : 'a call -> string
val pr_value : 'a value -> string
val pr_full_value : 'a call -> 'a value -> string
|