aboutsummaryrefslogtreecommitdiffstats
path: root/debug.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-21 11:15:15 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-21 11:15:15 +0000
commitbb7a2d40ff6190f819feb3d9eef0caaffec1a3f9 (patch)
treee50ce2d744f47f485bc2d1a4bb7eae57f5a9ed87 /debug.c
parentdf896a05608e4041c36488c60218f06ca74830b9 (diff)
downloadruby-bb7a2d40ff6190f819feb3d9eef0caaffec1a3f9.tar.gz
* compile.c, parse.y, eval.c, intern.h, iseq.c, lex.c, node.h,
proc.c, vm.c, vm_macro.def, vm_macro.def, yarvcore.c, yarvcore.h, debug.c, debug.h: merge half-baked-1.9 changes. The biggest change is to change node structure around NODE_SCOPE, NODE_ARGS. Every scope (method/class/block) has own NODE_SCOPE node and NODE_ARGS represents more details of arguments information. I'll write a document about detail of node structure. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12117 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/debug.c b/debug.c
index 3e8b143caa..7dca05b5db 100644
--- a/debug.c
+++ b/debug.c
@@ -54,6 +54,17 @@ ruby_debug_id(int level, int debug_level, char *header, ID id)
return id;
}
+NODE *
+ruby_debug_node(int level, int debug_level, char *header, NODE *node)
+{
+ if (level < debug_level) {
+ fprintf(stderr, "DBG> %s: %s\n", header, ruby_node_name(nd_type(node)));
+ fflush(stderr);
+ }
+ return node;
+}
+
+
void
ruby_debug_gc_check_func(void)
{