Class: AppMap::ClassMap
- Inherits:
-
Object
- Object
- AppMap::ClassMap
- Defined in:
- lib/appmap/class_map.rb
Defined Under Namespace
Modules: HasChildren, Types
Class Method Summary collapse
Class Method Details
.build_from_methods(config, methods) ⇒ Object
71 72 73 74 75 76 77 78 |
# File 'lib/appmap/class_map.rb', line 71 def build_from_methods(config, methods) root = Types::Root.new methods.each do |method| package = package_for_method(config.packages, method) add_function root, package.path, method end root.children.map(&:to_h) end |