Class wrapping multiple Parser::Errors.
# File voodoo/parser.rb, line 94 def message if @message == nil msg = "Multiple errors:\n\n" @errors.each do |error| msg << error.input_name << ":" if error.input_name msg << "#{error.start_line}: " << error.message if error.text != nil msg << "\n\n #{error.text.gsub("\n", "\n ")}" end msg << "\n" end @message = msg end @message end
Generated with the Darkfish Rdoc Generator 2.