зеркало из https://github.com/github/ruby.git
node.c: fix SEGV of `->(a:){}` when --dump=parsetree
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61655 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
f3aa3cd825
Коммит
933a3eb07e
5
node.c
5
node.c
|
@ -378,8 +378,13 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node)
|
|||
ANN("format: [nd_vid](current dvar) = [nd_value]");
|
||||
ANN("example: 1.times { x = foo }");
|
||||
F_ID(nd_vid, "local variable");
|
||||
if (node->nd_value == NODE_SPECIAL_REQUIRED_KEYWORD) {
|
||||
F_MSG(nd_value, "rvalue", "NODE_SPECIAL_REQUIRED_KEYWORD (required keyword argument)");
|
||||
}
|
||||
else {
|
||||
LAST_NODE;
|
||||
F_NODE(nd_value, "rvalue");
|
||||
}
|
||||
return;
|
||||
case NODE_IASGN:
|
||||
ANN("instance variable assignment");
|
||||
|
|
Загрузка…
Ссылка в новой задаче