summaryrefslogtreecommitdiff
path: root/plugins/quote/g_quote.ml4
blob: fdc5c2bbda64aaca8f735862a664748676e52329 (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
(************************************************************************)
(*  v      *   The Coq Proof Assistant  /  The Coq Development Team     *)
(* <O___,, *   INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2016     *)
(*   \VV/  **************************************************************)
(*    //   *      This file is distributed under the terms of the       *)
(*         *       GNU Lesser General Public License Version 2.1        *)
(************************************************************************)

(*i camlp4deps: "grammar/grammar.cma" i*)

open Names
open Misctypes
open Tacexpr
open Geninterp
open Quote

DECLARE PLUGIN "quote_plugin"

let loc = Loc.ghost
let cont = (loc, Id.of_string "cont")
let x = (loc, Id.of_string "x")

let make_cont (k : glob_tactic_expr) (c : Constr.t) =
  let c = Tacinterp.Value.of_constr c in
  let tac = TacCall (loc, ArgVar cont, [Reference (ArgVar x)]) in
  let tac = TacLetIn (false, [(cont, Tacexp k)], TacArg (loc, tac)) in
  let ist = { lfun = Id.Map.singleton (snd x) c; extra = TacStore.empty; } in
  Tacinterp.eval_tactic_ist ist tac

TACTIC EXTEND quote
  [ "quote" ident(f) ] -> [ quote f [] ]
| [ "quote" ident(f) "[" ne_ident_list(lc) "]"] -> [ quote f lc ]
| [ "quote" ident(f) "in" constr(c) "using" tactic(k) ] ->
  [ gen_quote (make_cont k) c f [] ]
| [ "quote" ident(f) "[" ne_ident_list(lc) "]"
    "in" constr(c) "using" tactic(k) ] ->
  [ gen_quote (make_cont k) c f lc ]
END