summaryrefslogtreecommitdiff
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
commit7bf450d0c30e2617fae9c54e977615f68dfac86e (patch)
treef8e70ebac48fc680b5aa3f00bb451541cd3a98f2 /parse.y
parente22aa95141085813f65144d41466682a55004915 (diff)
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 "