Class: RBS::DefinitionBuilder::MethodBuilder::Methods

Inherits:
Object
  • Object
show all
Defined in:
lib/rbs/definition_builder/method_builder.rb

Defined Under Namespace

Classes: Definition, Sorter

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#methodsObject (readonly)

Returns the value of attribute methods.



20
21
22
# File 'lib/rbs/definition_builder/method_builder.rb', line 20

def methods
  @methods
end

#typeObject (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

#eachObject



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