lib/inch/code_object/proxy/base.rb in inch-0.4.7 vs lib/inch/code_object/proxy/base.rb in inch-0.4.8

- old
+ new

@@ -50,11 +50,12 @@ # @return [Boolean] if the current object is an alias for something else def alias? !aliased_object.nil? end - # @return [CodeObject::Proxy::Base] the object the current object is an alias of + # @return [CodeObject::Proxy::Base] the object the current object is an + # alias of def aliased_object object_lookup.find(self[:aliased_object_fullname]) end # @return [Boolean] +true+ if the object has an @api tag @@ -168,10 +169,11 @@ # @return [Boolean] +true+ if the object was tagged not to be documented def nodoc? self[:nodoc?] end - # @return [CodeObject::Proxy::Base,nil] the parent of the current object or +nil+ + # @return [CodeObject::Proxy::Base,nil] the parent of the current object + # or +nil+ def parent object_lookup.find(self[:parent_fullname]) end def private?