summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-24 08:25:11 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-24 08:25:11 +0000
commit3fa061cd57021964a8536c34719729c7161fe38b (patch)
treef9d4ee9c755661da3bd9c5259de641522f0dd7b4 /parse.y
parent79255ac86cb86832fca4b5a326b2e5bf54d68d36 (diff)
parse.y: fix token
* parse.y (paren_args): fix separator token at `foo::bar()` in ripper. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index 84b414d21a..c72aacf9b4 100644
--- a/parse.y
+++ b/parse.y
@@ -3663,7 +3663,7 @@ method_call : fcall paren_args
$$ = NEW_CALL($1, $3, $5);
nd_set_line($$, $<num>4);
/*%
- $$ = dispatch3(call, $1, ripper_id2sym('.'), $3);
+ $$ = dispatch3(call, $1, ripper_id2sym(idCOLON2), $3);
$$ = method_optarg($$, $5);
%*/
}
@@ -10979,7 +10979,7 @@ ripper_id2sym(ID id)
const char *name;
char buf[8];
- if (id <= 256) {
+ if (ISASCII(id)) {
buf[0] = (char)id;
buf[1] = '\0';
return ID2SYM(rb_intern2(buf, 1));