aboutsummaryrefslogtreecommitdiffhomepage
path: root/grammar
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-02-24 10:26:56 +0100
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2016-02-24 10:31:17 +0100
commitd96bf1b1ec79fa93787d23e1c42f803d74b49321 (patch)
tree96f23cdf57def01387e8ad7155ba5305bb3ec132 /grammar
parentee162ba3b28fccca0a2b3ea4b1e0811006840570 (diff)
Removing the METAIDENT token, as it is not used anymore.
METAIDENT were idents of the form $foobar, only used in quotations. Note that it removes two dollars in the Coq codebase! Guess I'm absolved for the $(...) syntax.
Diffstat (limited to 'grammar')
-rw-r--r--grammar/q_util.ml41
1 files changed, 0 insertions, 1 deletions
diff --git a/grammar/q_util.ml4 b/grammar/q_util.ml4
index d668e3d39..c6e2e9966 100644
--- a/grammar/q_util.ml4
+++ b/grammar/q_util.ml4
@@ -59,7 +59,6 @@ let mlexpr_of_ident id =
let mlexpr_of_token = function
| Tok.KEYWORD s -> <:expr< Tok.KEYWORD $mlexpr_of_string s$ >>
-| Tok.METAIDENT s -> <:expr< Tok.METAIDENT $mlexpr_of_string s$ >>
| Tok.PATTERNIDENT s -> <:expr< Tok.PATTERNIDENT $mlexpr_of_string s$ >>
| Tok.IDENT s -> <:expr< Tok.IDENT $mlexpr_of_string s$ >>
| Tok.FIELD s -> <:expr< Tok.FIELD $mlexpr_of_string s$ >>