Class: RBS::DefinitionBuilder::MethodBuilder::Methods
- Inherits:
-
Object
- Object
- RBS::DefinitionBuilder::MethodBuilder::Methods
- Defined in:
- lib/rbs/definition_builder/method_builder.rb
Defined Under Namespace
Classes: Definition, Sorter
Instance Attribute Summary collapse
-
#methods ⇒ Object
readonly
Returns the value of attribute methods.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
- #each ⇒ Object
-
#initialize(type:) ⇒ Methods
constructor
A new instance of Methods.
- #validate! ⇒ Object
Constructor Details
#initialize(type:) ⇒ Methods
Returns a new instance of Methods.
22 23 24 25 |
# File 'lib/rbs/definition_builder/method_builder.rb', line 22 def initialize(type:) @type = type @methods = {} end |
Instance Attribute Details
#methods ⇒ Object (readonly)
Returns the value of attribute methods.
20 21 22 |
# File 'lib/rbs/definition_builder/method_builder.rb', line 20 def methods @methods end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
19 20 21 |
# File 'lib/rbs/definition_builder/method_builder.rb', line 19 def type @type end |
Instance Method Details
#each ⇒ Object
41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/rbs/definition_builder/method_builder.rb', line 41 def each if block_given? Sorter.new(methods).each_strongly_connected_component do |scc| if scc.size > 1 raise RecursiveAliasDefinitionError.new(type: type, defs: scc) end yield scc[0] end else enum_for :each end end |
#validate! ⇒ Object
27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/rbs/definition_builder/method_builder.rb', line 27 def validate! methods.each_value do |defn| if defn.originals.size > 1 raise DuplicatedMethodDefinitionError.new( type: type, method_name: defn.name, members: defn.originals ) end end self end |