Method: YARD::CodeObjects::MethodObject#name
- Defined in:
- lib/yard/code_objects/method_object.rb
#name(prefix = false) ⇒ String, Symbol
Returns the name of the object.
175 176 177 |
# File 'lib/yard/code_objects/method_object.rb', line 175 def name(prefix = false) prefix ? (sep == ISEP ? "#{sep}#{super}" : super.to_s) : super end |