Class: RBS::AST::Declarations::Interface
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
Base
|
|
Instance Chain:
self,
MixinHelper ,
Base
|
|
Inherits: |
RBS::AST::Declarations::Base
|
Defined in: | lib/rbs/ast/declarations.rb |
Class Method Summary
Instance Attribute Summary
- #annotations readonly
- #comment readonly
- #location readonly
- #members readonly
- #name readonly
- #type_params readonly
Instance Method Summary
- #==(other) (also: #eql?)
-
#eql?(other)
Alias for #==.
- #hash
- #to_json(state = _ = nil)
- #update(name: self.name, type_params: self.type_params, members: self.members, annotations: self.annotations, location: self.location, comment: self.comment)
MixinHelper
- Included
Constructor Details
.new(name:, type_params:, members:, annotations:, location:, comment:) ⇒ Interface
# File 'lib/rbs/ast/declarations.rb', line 258
def initialize(name:, type_params:, members:, annotations:, location:, comment:) @name = name @type_params = type_params @members = members @annotations = annotations @location = location @comment = comment end
Instance Attribute Details
#annotations (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 252
attr_reader :annotations
#comment (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 254
attr_reader :comment
#location (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 253
attr_reader :location
#members (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 251
attr_reader :members
#name (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 249
attr_reader :name
#type_params (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 250
attr_reader :type_params
Instance Method Details
#==(other) Also known as: #eql?
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 278
def ==(other) other.is_a?(Interface) && other.name == name && other.type_params == type_params && other.members == members end
#eql?(other)
Alias for #==.
# File 'lib/rbs/ast/declarations.rb', line 285
alias eql? ==
#hash
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 287
def hash self.class.hash ^ type_params.hash ^ members.hash end
#to_json(state = _ = nil)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 291
def to_json(state = _ = nil) { declaration: :interface, name: name, type_params: type_params, members: members, annotations: annotations, location: location, comment: comment }.to_json(state) end
#update(name: self.name, type_params: self.type_params, members: self.members, annotations: self.annotations, location: self.location, comment: self.comment)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 267
def update(name: self.name, type_params: self.type_params, members: self.members, annotations: self.annotations, location: self.location, comment: self.comment) self.class.new( name: name, type_params: type_params, members: members, annotations: annotations, location: location, comment: comment ) end