Method: YARD::CLI::Stats#all_objects

Defined in:
lib/yard/cli/stats.rb

#all_objectsArray<CodeObjects::Base>

Returns all the parsed objects in the registry, removing any objects that are not visible (private, protected) depending on the arguments passed to the command.

Returns:

  • (Array<CodeObjects::Base>)

    all the parsed objects in the registry, removing any objects that are not visible (private, protected) depending on the arguments passed to the command.

Since:

  • 0.6.0


96
97
98
# File 'lib/yard/cli/stats.rb', line 96

def all_objects
  @all_objects ||= run_verifier Registry.all
end