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

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

Defined Under Namespace

Classes: Sorter

Constant Summary collapse

Definition =
_ = Struct.new(:name, :type, :originals, :overloads, :accessibilities, keyword_init: true) do
  # @implements Definition

  def original
    originals.first
  end

  def accessibility
    accessibilities[0]
  end

  def self.empty(name:, type:)
    new(type: type, name: name, originals: [], overloads: [], accessibilities: [])
  end
end

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type:) ⇒ Methods

Returns a new instance of Methods.



24
25
26
27
# File 'lib/rbs/definition_builder/method_builder.rb', line 24

def initialize(type:)
  @type = type
  @methods = {}
end

Instance Attribute Details

#methodsObject (readonly)

Returns the value of attribute methods.



22
23
24
# File 'lib/rbs/definition_builder/method_builder.rb', line 22

def methods
  @methods
end

#typeObject (readonly)

Returns the value of attribute type.



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

def type
  @type
end

Instance Method Details

#eachObject



43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/rbs/definition_builder/method_builder.rb', line 43

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



29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/rbs/definition_builder/method_builder.rb', line 29

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