зеркало из https://github.com/github/ruby.git
node.c (dump_node): trivial refactoring
This commit is contained in:
Родитель
c400165afa
Коммит
5a7b4dba26
4
node.c
4
node.c
|
@ -677,10 +677,8 @@ dump_node(VALUE buf, VALUE indent, int comment, const NODE * node)
|
||||||
ANN("format: $[nd_nth]");
|
ANN("format: $[nd_nth]");
|
||||||
ANN("example: $&, $`, $', $+");
|
ANN("example: $&, $`, $', $+");
|
||||||
F_CUSTOM1(nd_nth, "variable") {
|
F_CUSTOM1(nd_nth, "variable") {
|
||||||
char name[3];
|
char name[3] = "$ ";
|
||||||
name[0] = '$';
|
|
||||||
name[1] = (char)node->nd_nth;
|
name[1] = (char)node->nd_nth;
|
||||||
name[2] = '\0';
|
|
||||||
A(name);
|
A(name);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче