aboutsummaryrefslogtreecommitdiffhomepage
path: root/toplevel/g_toplevel.ml4
blob: d5d558b9bf4598e1fd4a14d6d8f9d2e88531d545 (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
(************************************************************************)
(*         *   The Coq Proof Assistant / The Coq Development Team       *)
(*  v      *   INRIA, CNRS and contributors - Copyright 1999-2018       *)
(* <O___,, *       (see CREDITS file for the list of authors)           *)
(*   \VV/  **************************************************************)
(*    //   *    This file is distributed under the terms of the         *)
(*         *     GNU Lesser General Public License Version 2.1          *)
(*         *     (see LICENSE file for the text of the license)         *)
(************************************************************************)

open Pcoq
open Pcoq.Prim
open Vernacexpr

(* Vernaculars specific to the toplevel *)
type vernac_toplevel =
  | VernacBacktrack of int * int * int
  | VernacDrop
  | VernacQuit
  | VernacControl of vernac_control

module Toplevel_ : sig
  val vernac_toplevel : vernac_toplevel CAst.t Gram.entry
end = struct
  let gec_vernac s = Gram.entry_create ("toplevel:" ^ s)
  let vernac_toplevel = gec_vernac "vernac_toplevel"
end

open Toplevel_

GEXTEND Gram
  GLOBAL: vernac_toplevel;
  vernac_toplevel: FIRST
    [ [ IDENT "Drop"; "." -> CAst.make VernacDrop
      | IDENT "Quit"; "." -> CAst.make VernacQuit
      | IDENT "Backtrack"; n = natural ; m = natural ; p = natural; "." ->
        CAst.make (VernacBacktrack (n,m,p))
      | cmd = main_entry ->
              match cmd with
              | None -> raise Stm.End_of_input
              | Some (loc,c) -> CAst.make ~loc (VernacControl c)
      ]
    ]
  ;
END

let parse_toplevel pa = Pcoq.Gram.entry_parse vernac_toplevel pa