summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-24 12:58:54 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-24 12:58:54 +0000
commit8afbb0e6ef724533eff907c064f2eefe00ab2038 (patch)
treeb61c8b6e2e55c14116daff5916e2fbc5cce578a3 /parse.y
parentec9ec2643085486afacc268e330e4a595f898e4b (diff)
* parse.y: Remove +(binary) and -(binary) special cases [Feature #9048]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43413 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 0 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index 4be8c27928..a2174ca4dd 100644
--- a/parse.y
+++ b/parse.y
@@ -10147,8 +10147,6 @@ static const struct {
} op_tbl[] = {
{tDOT2, ".."},
{tDOT3, "..."},
- {'+', "+(binary)"},
- {'-', "-(binary)"},
{tPOW, "**"},
{tDSTAR, "**"},
{tUPLUS, "+@"},