Method: Inch::CodeObject::Proxy::Base#children

Defined in:
lib/inch/code_object/proxy/base.rb

#childrenArray

Returns the children of the current object.

Returns:

  • (Array)

    the children of the current object



52
53
54
55
56
# File 'lib/inch/code_object/proxy/base.rb', line 52

def children
  @children ||= self[:children_fullnames].map do |fullname|
    object_lookup.find(fullname)
  end
end