Skip to content

Commit 38828fa

Browse files
committed
* node.c: node management added. Currently, only pretty-dumper is
implemented. [ruby-dev:39853] * ruby.c: --dump=parsetree and --dump=parsetree_with_comment options added. This is just for debug or research purpose. Note that the compatibility of these options are not supported at all. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26053 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent c9c095f commit 38828fa

File tree

4 files changed

+942
-1
lines changed

4 files changed

+942
-1
lines changed

ChangeLog

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
Wed Dec 9 22:57:04 2009 Yusuke Endoh <mame@tsg.ne.jp>
2+
3+
* node.c: node management added. Currently, only pretty-dumper is
4+
implemented. [ruby-dev:39853]
5+
6+
* ruby.c: --dump=parsetree and --dump=parsetree_with_comment options
7+
added. This is just for debug or research purpose. Note that the
8+
compatibility of these options are not supported at all.
9+
110
Wed Dec 9 09:50:35 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
211

312
* string.c (rb_str_justify): fixed the case a fill size is a

common.mk

+3
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ COMMONOBJS = array.$(OBJEXT) \
4747
io.$(OBJEXT) \
4848
marshal.$(OBJEXT) \
4949
math.$(OBJEXT) \
50+
node.$(OBJEXT) \
5051
numeric.$(OBJEXT) \
5152
object.$(OBJEXT) \
5253
pack.$(OBJEXT) \
@@ -559,6 +560,8 @@ main.$(OBJEXT): {$(VPATH)}main.c $(RUBY_H_INCLUDES) {$(VPATH)}debug.h \
559560
marshal.$(OBJEXT): {$(VPATH)}marshal.c $(RUBY_H_INCLUDES) {$(VPATH)}io.h \
560561
$(ENCODING_H_INCLUDES) {$(VPATH)}util.h
561562
math.$(OBJEXT): {$(VPATH)}math.c $(RUBY_H_INCLUDES)
563+
node.$(OBJEXT): {$(VPATH)}node.c $(RUBY_H_INCLUDES) \
564+
$(VM_CORE_H_INCLUDES)
562565
numeric.$(OBJEXT): {$(VPATH)}numeric.c $(RUBY_H_INCLUDES) \
563566
{$(VPATH)}util.h $(ENCODING_H_INCLUDES)
564567
object.$(OBJEXT): {$(VPATH)}object.c $(RUBY_H_INCLUDES) {$(VPATH)}util.h

0 commit comments

Comments
 (0)