1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
parent 2d0c17d4fb
commit 4d6de2f7c4
2 changed files with 7 additions and 2 deletions

View file

@ -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.

View file

@ -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);