class RBS::AST::Declarations::Interface

Attributes

annotations[R]
comment[R]
location[R]
members[R]
name[R]
type_params[R]

Public Class Methods

new(name:, type_params:, members:, annotations:, location:, comment:) click to toggle source
# File rbs-3.1.0/lib/rbs/ast/declarations.rb, line 233
def initialize(name:, type_params:, members:, annotations:, location:, comment:)
  @name = name
  @type_params = type_params
  @members = members
  @annotations = annotations
  @location = location
  @comment = comment
end

Public Instance Methods

==(other) click to toggle source
# File rbs-3.1.0/lib/rbs/ast/declarations.rb, line 242
def ==(other)
  other.is_a?(Interface) &&
    other.name == name &&
    other.type_params == type_params &&
    other.members == members
end
Also aliased as: eql?
eql?(other)
Alias for: ==
hash() click to toggle source
# File rbs-3.1.0/lib/rbs/ast/declarations.rb, line 251
def hash
  self.class.hash ^ type_params.hash ^ members.hash
end
to_json(state = _ = nil) click to toggle source
# File rbs-3.1.0/lib/rbs/ast/declarations.rb, line 255
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