lib/inch/language/ruby/provider/yard/object/namespace_object.rb in inch-0.5.0.rc5 vs lib/inch/language/ruby/provider/yard/object/namespace_object.rb in inch-0.5.0.rc6
- old
+ new
@@ -6,10 +6,11 @@
module Object
# a namespace object can have methods and other namespace objects
# inside itself (e.g. classes and modules)
class NamespaceObject < Base
def attributes
- object.class_attributes.values + object.instance_attributes.values
+ object.class_attributes.values +
+ object.instance_attributes.values
end
def children_fullnames
children.map(&:fullname)
end