aboutsummaryrefslogtreecommitdiffhomepage
path: root/tactics/tacinterp.ml
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-04-27 13:55:46 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2009-04-27 13:55:46 +0000
commit94affd965c1554d2ad10654e9832fcdb2a024daf (patch)
tree6501b61d51db4a7e346fbaf390c847847f48d4e9 /tactics/tacinterp.ml
parentf90fde30288f67b167b68bfd32363eaa20644c5f (diff)
- Fixed a little bug in previous commit (bad failure in case of unknown entry).
- Added support for list of intropattern in Tactic Notation. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12109 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tactics/tacinterp.ml')
-rw-r--r--tactics/tacinterp.ml8
1 files changed, 8 insertions, 0 deletions
diff --git a/tactics/tacinterp.ml b/tactics/tacinterp.ml
index 5342f961d..88692a13c 100644
--- a/tactics/tacinterp.ml
+++ b/tactics/tacinterp.ml
@@ -2420,6 +2420,10 @@ and interp_atomic ist gl = function
let wit = wit_list0 (globwit_ident_gen b) in
let mk_ident x = value_of_ident (interp_fresh_ident ist gl x) in
VList (List.map mk_ident (out_gen wit x))
+ | List0ArgType IntroPatternArgType ->
+ let wit = wit_list0 globwit_intro_pattern in
+ let mk_ipat x = VIntroPattern (snd (interp_intro_pattern ist gl x)) in
+ VList (List.map mk_ipat (out_gen wit x))
| List1ArgType ConstrArgType ->
let wit = wit_list1 globwit_constr in
VList (List.map (mk_constr_value ist gl) (out_gen wit x))
@@ -2436,6 +2440,10 @@ and interp_atomic ist gl = function
let wit = wit_list1 (globwit_ident_gen b) in
let mk_ident x = value_of_ident (interp_fresh_ident ist gl x) in
VList (List.map mk_ident (out_gen wit x))
+ | List1ArgType IntroPatternArgType ->
+ let wit = wit_list1 globwit_intro_pattern in
+ let mk_ipat x = VIntroPattern (snd (interp_intro_pattern ist gl x)) in
+ VList (List.map mk_ipat (out_gen wit x))
| StringArgType | BoolArgType
| QuantHypArgType | RedExprArgType
| OpenConstrArgType _ | ConstrWithBindingsArgType