Add a shorthand for ruby_debug_print_node

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

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

@ -155,6 +155,12 @@ ruby_debug_print_node(int level, int debug_level, const char *header, const NODE
return (NODE *)node; return (NODE *)node;
} }
void
ruby_debug_print_n(const NODE *node)
{
ruby_debug_print_node(0, 1, "", node);
}
void void
ruby_debug_breakpoint(void) ruby_debug_breakpoint(void)
{ {