class RBS::Definition::Method
Attributes
accessibility[R]
alias_of[R]
defs[R]
extra_annotations[R]
super_method[R]
Public Class Methods
new(super_method:, defs:, accessibility:, annotations: [], alias_of:)
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 81 def initialize(super_method:, defs:, accessibility:, annotations: [], alias_of:) @super_method = super_method @defs = defs @accessibility = accessibility @extra_annotations = annotations @alias_of = alias_of end
Public Instance Methods
==(other)
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 89 def ==(other) other.is_a?(Method) && other.super_method == super_method && other.defs == defs && other.accessibility == accessibility && other.annotations == annotations && other.alias_of == alias_of end
Also aliased as: eql?
annotations()
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 126 def annotations @annotations ||= @extra_annotations + defs.flat_map {|d| d.annotations } end
comments()
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 122 def comments @comments ||= defs.map(&:comment).compact.uniq end
defined_in()
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 104 def defined_in @defined_in ||= begin last_def = defs.last or raise last_def.defined_in end end
hash()
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 100 def hash self.class.hash ^ super_method.hash ^ defs.hash ^ accessibility.hash ^ annotations.hash ^ alias_of.hash end
implemented_in()
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 111 def implemented_in @implemented_in ||= begin last_def = defs.last or raise last_def.implemented_in end end
map_method_type() { |type| ... }
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 169 def map_method_type(&block) self.class.new( super_method: super_method, defs: defs.map {|defn| defn.update(type: yield(defn.type)) }, accessibility: @accessibility, alias_of: alias_of ) end
map_type(&block)
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 151 def map_type(&block) self.class.new( super_method: super_method&.map_type(&block), defs: defs.map {|defn| defn.update(type: defn.type.map_type(&block)) }, accessibility: @accessibility, alias_of: alias_of ) end
map_type_bound(&block)
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 160 def map_type_bound(&block) self.class.new( super_method: super_method&.map_type_bound(&block), defs: defs.map {|defn| defn.update(type: defn.type.map_type_bound(&block)) }, accessibility: @accessibility, alias_of: alias_of ) end
members()
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 130 def members @members ||= defs.map(&:member).uniq end
method_types()
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 118 def method_types @method_types ||= defs.map(&:type) end
private?()
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 138 def private? @accessibility == :private end
public?()
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 134 def public? @accessibility == :public end
sub(s)
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 142 def sub(s) self.class.new( super_method: super_method&.sub(s), defs: defs.map {|defn| defn.update(type: defn.type.sub(s)) }, accessibility: @accessibility, alias_of: alias_of ) end
update(super_method: self.super_method, defs: self.defs, accessibility: self.accessibility, alias_of: self.alias_of, annotations: self.annotations)
click to toggle source
# File rbs-3.4.0/lib/rbs/definition.rb, line 178 def update(super_method: self.super_method, defs: self.defs, accessibility: self.accessibility, alias_of: self.alias_of, annotations: self.annotations) self.class.new( super_method: super_method, defs: defs, accessibility: accessibility, alias_of: alias_of, annotations: annotations ) end