aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/top_printers.ml
diff options
context:
space:
mode:
authorGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-06-18 19:48:50 +0000
committerGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-06-18 19:48:50 +0000
commita3b4bde65a350bf3dc54ccec8f7608355c6a008a (patch)
tree46107f5a916af73f9c0051097ce73f2bdd3455b8 /dev/top_printers.ml
parent7a2701e6741fcf1e800e35b7721fc89abe40cbba (diff)
Proof-of-concept: moved four easy-to-handle generic arguments to
their own file, Stdarg. This required a little trick to correctly handle wit_* naming. We use a dynamic table to remember exactly where those arguments come from. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16587 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'dev/top_printers.ml')
-rw-r--r--dev/top_printers.ml4
1 files changed, 0 insertions, 4 deletions
diff --git a/dev/top_printers.ml b/dev/top_printers.ml
index 4857b16cc..939e9422a 100644
--- a/dev/top_printers.ml
+++ b/dev/top_printers.ml
@@ -351,11 +351,7 @@ let pploc x = let (l,r) = Loc.unloc x in
(* extendable tactic arguments *)
let rec pr_argument_type = function
(* Basic types *)
- | BoolArgType -> str"bool"
- | IntArgType -> str"int"
| IntOrVarArgType -> str"int-or-var"
- | StringArgType -> str"string"
- | PreIdentArgType -> str"pre-ident"
| IntroPatternArgType -> str"intro-pattern"
| IdentArgType true -> str"ident"
| IdentArgType false -> str"pattern_ident"