aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-01-24 07:52:41 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-01-24 07:52:41 +0000
commitf852ce8969fc93f8330b25ac49a45b47d83805d6 (patch)
treef8e70ebac48fc680b5aa3f00bb451541cd3a98f2 /parse.y
parent48a9947a2f0bd22880c0b587fd869b18f32909b1 (diff)
downloadruby-f852ce8969fc93f8330b25ac49a45b47d83805d6.tar.gz
parse.y (parser_yylex): remove wrong warning
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57414 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y4
1 files changed, 0 insertions, 4 deletions
diff --git a/parse.y b/parse.y
index 8f6b8ee800..009ee673c7 100644
--- a/parse.y
+++ b/parse.y
@@ -8536,10 +8536,6 @@ parser_yylex(struct parser_params *parser)
}
else if (IS_SPCARG(-1)) {
c = tLPAREN_ARG;
- if (lex_state == EXPR_ARG) {
- rb_warning0("parentheses after method name and a space is interpreted as "
- "an argument list, not a parenthesed argument");
- }
}
else if (IS_lex_state(EXPR_ENDFN) && space_seen && !lambda_beginning_p()) {
rb_warning0("parentheses after method name is interpreted as "