Print node id and location by ruby_debug_print_node

This commit is contained in:
yui-knk 2024-01-05 21:30:42 +09:00 коммит произвёл Yuichiro Kaneko
Родитель 7f9c174102
Коммит da23f8fe1a
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -147,8 +147,10 @@ NODE *
ruby_debug_print_node(int level, int debug_level, const char *header, const NODE *node)
{
if (level < debug_level) {
fprintf(stderr, "DBG> %s: %s (%u)\n", header,
ruby_node_name(nd_type(node)), nd_line(node));
fprintf(stderr, "DBG> %s: %s (id: %d, line: %d, location: (%d,%d)-(%d,%d))\n",
header, ruby_node_name(nd_type(node)), nd_node_id(node), nd_line(node),
nd_first_lineno(node), nd_first_column(node),
nd_last_lineno(node), nd_last_column(node));
}
return (NODE *)node;
}