class RBS::DefinitionBuilder::MethodBuilder::Methods::Sorter
Attributes
methods
[R]
Hash[Symbol, Definition]
Public Class Methods
Public Instance Methods
(Definition) { (Definition) → void } → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/definition_builder/method_builder.rb, line 76 def tsort_each_child(defn) if (member = defn.original).is_a?(AST::Members::Alias) if old = methods[member.old_name] yield old end end end
() { (Definition) → void } → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/definition_builder/method_builder.rb, line 72 def tsort_each_node(&block) methods.each_value(&block) end