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:
parent
2d0c17d4fb
commit
4d6de2f7c4
2 changed files with 7 additions and 2 deletions
|
@ -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>
|
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.
|
* gc.c (initial_params): static. it seems to be forgetten at r33501.
|
||||||
|
|
4
parse.y
4
parse.y
|
@ -7952,13 +7952,13 @@ node_newnode(struct parser_params *parser, enum node_type type, VALUE a0, VALUE
|
||||||
return n;
|
return n;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum node_type
|
static enum node_type
|
||||||
nodetype(NODE *node) /* for debug */
|
nodetype(NODE *node) /* for debug */
|
||||||
{
|
{
|
||||||
return (enum node_type)nd_type(node);
|
return (enum node_type)nd_type(node);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static int
|
||||||
nodeline(NODE *node)
|
nodeline(NODE *node)
|
||||||
{
|
{
|
||||||
return nd_line(node);
|
return nd_line(node);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue