Class: RBS::Definition::Method::TypeDef
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/rbs/definition.rb |
Class Method Summary
Instance Attribute Summary
- #annotations readonly
- #defined_in readonly
- #implemented_in readonly
- #member readonly
- #member_annotations readonly
- #overload? ⇒ Boolean readonly
- #overload_annotations readonly
- #type readonly
Instance Method Summary
Constructor Details
.new(type:, member:, defined_in:, implemented_in:, overload_annotations: []) ⇒ TypeDef
# File 'lib/rbs/definition.rb', line 40
def initialize(type:, member:, defined_in:, implemented_in:, overload_annotations: []) @type = type @member = member @defined_in = defined_in @implemented_in = implemented_in @member_annotations = [] @overload_annotations = [] @annotations = [] end
Instance Attribute Details
#annotations (readonly)
[ GitHub ]# File 'lib/rbs/definition.rb', line 38
attr_reader :annotations
#defined_in (readonly)
[ GitHub ]# File 'lib/rbs/definition.rb', line 34
attr_reader :defined_in
#implemented_in (readonly)
[ GitHub ]# File 'lib/rbs/definition.rb', line 35
attr_reader :implemented_in
#member (readonly)
[ GitHub ]# File 'lib/rbs/definition.rb', line 33
attr_reader :member
#member_annotations (readonly)
[ GitHub ]# File 'lib/rbs/definition.rb', line 36
attr_reader :member_annotations
#overload? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'lib/rbs/definition.rb', line 75
def overload? case mem = member when AST::Members::MethodDefinition mem.overloading? else false end end
#overload_annotations (readonly)
[ GitHub ]# File 'lib/rbs/definition.rb', line 37
attr_reader :overload_annotations
#type (readonly)
[ GitHub ]# File 'lib/rbs/definition.rb', line 32
attr_reader :type
Instance Method Details
#==(other) Also known as: #eql?
[ GitHub ]# File 'lib/rbs/definition.rb', line 50
def ==(other) other.is_a?(TypeDef) && other.type == type && other.member == member && other.defined_in == defined_in && other.implemented_in == implemented_in end
#comment
[ GitHub ]# File 'lib/rbs/definition.rb', line 64
def comment member.comment end
#each_annotation(&block)
[ GitHub ]# File 'lib/rbs/definition.rb', line 84
def each_annotation(&block) if block member_annotations.each(&block) overload_annotations.each(&block) else enum_for :each_annotation end end
#eql?(other)
Alias for #==.
# File 'lib/rbs/definition.rb', line 58
alias eql? ==
#hash
[ GitHub ]# File 'lib/rbs/definition.rb', line 60
def hash self.class.hash ^ type.hash ^ member.hash ^ defined_in.hash ^ implemented_in.hash end
#update(type: self.type, member: self.member, defined_in: self.defined_in, implemented_in: self.implemented_in)
[ GitHub ]# File 'lib/rbs/definition.rb', line 68
def update(type: self.type, member: self.member, defined_in: self.defined_in, implemented_in: self.implemented_in) TypeDef.new(type: type, member: member, defined_in: defined_in, implemented_in: implemented_in).tap do |type_def| type_def.overload_annotations.replace(self.overload_annotations) type_def.member_annotations.replace(self.member_annotations) end end