summaryrefslogtreecommitdiff
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
commit2e0e02d358de4689bfaa5431507479df7ecbfd26 (patch)
tree1e99915ecaf3a0bf07cfea648aa5748c78ab180f /parse.y
parenta3a6ba958429dd6baa7916a0dbcbd0865376d07a (diff)
* parse.y (op_tbl): remove duplication to avoid symbol aliases.
git-svn-id: svn+ssh://ci.ruby-lang.org/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 d4535c5929..85e2852659 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, "<<"},