summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/-test-/ast/ast.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/-test-/ast/ast.c b/ext/-test-/ast/ast.c
index b5be606499..f608af911e 100644
--- a/ext/-test-/ast/ast.c
+++ b/ext/-test-/ast/ast.c
@@ -179,7 +179,8 @@ dump_array(rb_ast_t *ast, NODE *node)
static VALUE
node_children(rb_ast_t *ast, NODE *node)
{
- switch (nd_type(node)) {
+ enum node_type type = nd_type(node);
+ switch (type) {
case NODE_BLOCK:
return dump_block(ast, node);
case NODE_IF:
@@ -227,7 +228,6 @@ node_children(rb_ast_t *ast, NODE *node)
andor:
{
VALUE ary = rb_ary_new();
- enum node_type type = nd_type(node);
while (1) {
rb_ary_push(ary, NEW_CHILD(ast, node->nd_1st));
@@ -417,7 +417,7 @@ node_children(rb_ast_t *ast, NODE *node)
break;
}
- rb_bug("dump_node: unknown node: %s", ruby_node_name(nd_type(node)));
+ rb_bug("node_children: unknown node: %s", ruby_node_name(type));
}
static VALUE