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

Update to RDoc 2.1.0 r112

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18147 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2008-07-21 18:35:14 +00:00
parent c62db0676b
commit cd9e9c6deb
19 changed files with 460 additions and 285 deletions

View file

@ -18,10 +18,8 @@ class TestRdocParserC < Test::Unit::TestCase
@top_level = RDoc::TopLevel.new filename
@fn = filename
@options = RDoc::Options.new Hash.new
@stats = RDoc::Stats.new
@progress = StringIO.new
@options = RDoc::Options.new
@stats = RDoc::Stats.new 0
end
def teardown
@ -253,9 +251,7 @@ Init_Foo(void) {
end
def util_parser(content)
parser = RDoc::Parser::C.new @top_level, @fn, content, @options, @stats
parser.progress = @progress
parser
RDoc::Parser::C.new @top_level, @fn, content, @options, @stats
end
end