* parse.y (nodetype, nodeline): static. these functions are for

debugging, and not intend to be public.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33883 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2011-11-28 03:49:00 +00:00
Родитель 2d0c17d4fb
Коммит 4d6de2f7c4
2 изменённых файлов: 7 добавлений и 2 удалений

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

@ -1,3 +1,8 @@
Mon Nov 28 12:47:19 2011 NAKAMURA Usaku <usa@ruby-lang.org>
* parse.y (nodetype, nodeline): static. these functions are for
debugging, and not intend to be public.
Mon Nov 28 12:37:54 2011 NAKAMURA Usaku <usa@ruby-lang.org>
* gc.c (initial_params): static. it seems to be forgetten at r33501.

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

@ -7952,13 +7952,13 @@ node_newnode(struct parser_params *parser, enum node_type type, VALUE a0, VALUE
return n;
}
enum node_type
static enum node_type
nodetype(NODE *node) /* for debug */
{
return (enum node_type)nd_type(node);
}
int
static int
nodeline(NODE *node)
{
return nd_line(node);