new(top_level, file_name, content, options, stats)
public
Creates a new Parser storing top_level,
file_name, content, options and stats
in instance variables.
Usually invoked by super
# File lib/rdoc/parser.rb, line 194
def initialize(top_level, file_name, content, options, stats)
@top_level = top_level
@file_name = file_name
@content = content
@options = options
@stats = stats
@preprocess = RDoc::Markup::PreProcess.new @file_name, @options.rdoc_include
@preprocess.options = @options
end