summaryrefslogtreecommitdiff
path: root/template/id.h.tmpl
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-21 13:17:54 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-21 13:17:54 +0000
commit1b4d0c76de494b8bdbcf83db6f0d0950d4ccc64a (patch)
treeeb20644bc712d3a0b244c54d6c38146b44200a30 /template/id.h.tmpl
parent7427390cadb47a77f9f0389e0bf477bb9b86ec70 (diff)
* template/id.h.tmpl, id.h (enum ruby_method_ids): added some IDs.
* debug.c (dummy_gdb_enums): added enum ruby_method_ids. * .gdbinit (rp): improved output of Symbol. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23511 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'template/id.h.tmpl')
-rw-r--r--template/id.h.tmpl7
1 files changed, 7 insertions, 0 deletions
diff --git a/template/id.h.tmpl b/template/id.h.tmpl
index dd0afab27d..fccb5cf059 100644
--- a/template/id.h.tmpl
+++ b/template/id.h.tmpl
@@ -63,6 +63,12 @@ enum ruby_method_ids {
<%=token%> = <%=value%>,
% end
#endif
+ idDot2 = tDOT2,
+ idDot3 = tDOT3,
+ idUPlus = tUPLUS,
+ idUMinus = tUMINUS,
+ idPow = tPOW,
+ idCmp = tCMP,
idPLUS = '+',
idMINUS = '-',
idMULT = '*',
@@ -79,6 +85,7 @@ enum ruby_method_ids {
idNot = '!',
idBackquote = '`',
idEqTilde = tMATCH,
+ idNeqTilde = tNMATCH,
idAREF = tAREF,
idASET = tASET,
idLAST_TOKEN = tLAST_TOKEN >> ID_SCOPE_SHIFT,