parse.y: endless_method_name should allow `==`.

e.g. `def ==(v) = true`. The issue is reported by @shuujii
parent 386b53e6
......@@ -1212,6 +1212,9 @@ endless_method_name(parser_state *p, node *defn)
const char *name = mrb_sym_name_len(p->mrb, sym, &len);
if (len > 1 && name[len-1] == '=') {
for (int i=0; i<len-1; i++) {
if (!identchar(name[i])) return;
}
yyerror(p, "setter method cannot be defined by endless method definition");
}
}
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment