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(methods) ⇒ Object
70 71 72 73 74 75 76 |
# File 'lib/appmap/class_map.rb', line 70 def build_from_methods(methods) root = Types::Root.new methods.each do |method| add_function root, method end root.children.map(&:to_h) end |