node.c: indent [ci skip

* node.c (dump_node): adjust indent.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52077 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-10-08 01:44:37 +00:00
parent f15ac6c8d6
commit 77ac4a50f1

36
node.c
View File

@ -149,8 +149,8 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node)
ANN("example: until x == 1; foo; end"); ANN("example: until x == 1; foo; end");
loop: loop:
F_CUSTOM1(nd_state, "begin-end-while?", { F_CUSTOM1(nd_state, "begin-end-while?", {
A_INT((int)node->nd_state); A_INT((int)node->nd_state);
A((node->nd_state == 1) ? " (while-end)" : " (begin-end-while)"); A((node->nd_state == 1) ? " (while-end)" : " (begin-end-while)");
}); });
F_NODE(nd_cond, "condition"); F_NODE(nd_cond, "condition");
LAST_NODE; LAST_NODE;
@ -351,11 +351,11 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node)
F_ID(nd_next->nd_vid, "reader"); F_ID(nd_next->nd_vid, "reader");
F_ID(nd_next->nd_aid, "writer"); F_ID(nd_next->nd_aid, "writer");
F_CUSTOM1(nd_next->nd_mid, "operator", { F_CUSTOM1(nd_next->nd_mid, "operator", {
switch (node->nd_next->nd_mid) { switch (node->nd_next->nd_mid) {
case 0: A("0 (||)"); break; case 0: A("0 (||)"); break;
case 1: A("1 (&&)"); break; case 1: A("1 (&&)"); break;
default: A_ID(node->nd_next->nd_mid); default: A_ID(node->nd_next->nd_mid);
} }
}); });
LAST_NODE; LAST_NODE;
F_NODE(nd_value, "rvalue"); F_NODE(nd_value, "rvalue");
@ -501,11 +501,11 @@ dump_node(VALUE buf, VALUE indent, int comment, 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[0] = '$';
name[1] = (char)node->nd_nth; name[1] = (char)node->nd_nth;
name[2] = '\0'; name[2] = '\0';
A(name); A(name);
}); });
break; break;
@ -871,13 +871,13 @@ dump_node(VALUE buf, VALUE indent, int comment, NODE *node)
ANN("new scope"); ANN("new scope");
ANN("format: [nd_tbl]: local table, [nd_args]: arguments, [nd_body]: body"); ANN("format: [nd_tbl]: local table, [nd_args]: arguments, [nd_body]: body");
F_CUSTOM1(nd_tbl, "local table", { F_CUSTOM1(nd_tbl, "local table", {
ID *tbl = node->nd_tbl; ID *tbl = node->nd_tbl;
int i; int i;
int size = tbl ? (int)*tbl++ : 0; int size = tbl ? (int)*tbl++ : 0;
if (size == 0) A("(empty)"); if (size == 0) A("(empty)");
for (i = 0; i < size; i++) { for (i = 0; i < size; i++) {
A_ID(tbl[i]); if (i < size - 1) A(","); A_ID(tbl[i]); if (i < size - 1) A(",");
} }
}); });
F_NODE(nd_args, "arguments"); F_NODE(nd_args, "arguments");
LAST_NODE; LAST_NODE;