undoc_params(method)
Determines which parameters in method were not documented. Returns a total parameter count and an Array of undocumented methods.
# File lib/rdoc/stats.rb, line 417 def undoc_params method @formatter ||= RDoc::Markup::ToTtOnly.new params = method.param_list return 0, [] if params.empty? document = parse method.comment tts = document.accept @formatter undoc = params - tts [params.length, undoc] end