summaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-18 05:50:37 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-18 05:50:37 +0000
commit19d6d4b15682561c3f7c59e7fed029455d3e7753 (patch)
tree1e99915ecaf3a0bf07cfea648aa5748c78ab180f /parse.y
parent806cc716daa6414e284b859d3e520dcb34133ffc (diff)
downloadruby-19d6d4b15682561c3f7c59e7fed029455d3e7753.tar.gz
ruby-19d6d4b15682561c3f7c59e7fed029455d3e7753.tar.xz
ruby-19d6d4b15682561c3f7c59e7fed029455d3e7753.zip
* parse.y (op_tbl): remove duplication to avoid symbol aliases.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y6
1 files changed, 0 insertions, 6 deletions
diff --git a/parse.y b/parse.y
index d4535c592..85e285265 100644
--- a/parse.y
+++ b/parse.y
@@ -8583,8 +8583,6 @@ static const struct {
{tPOW, "**"},
{tUPLUS, "+@"},
{tUMINUS, "-@"},
- {tUPLUS, "+(unary)"},
- {tUMINUS, "-(unary)"},
{'|', "|"},
{'^', "^"},
{'&', "&"},
@@ -8600,11 +8598,7 @@ static const struct {
{tMATCH, "=~"},
{tNMATCH, "!~"},
{'~', "~"},
- {'~', "~(unary)"},
- {'~', "~@"},
{'!', "!"},
- {'!', "!(unary)"},
- {'!', "!@"},
{tAREF, "[]"},
{tASET, "[]="},
{tLSHFT, "<<"},