module RBS::AST::Members::Var

Attributes

comment[R]
location[R]
name[R]
type[R]

Public Class Methods

new(name:, type:, location:, comment:) click to toggle source
# File rbs-2.8.2/lib/rbs/ast/members.rb, line 91
def initialize(name:, type:, location:, comment:)
  @name = name
  @type = type
  @location = location
  @comment = comment
end

Public Instance Methods

==(other) click to toggle source
# File rbs-2.8.2/lib/rbs/ast/members.rb, line 98
def ==(other)
  other.is_a?(self.class) && other.name == name && other.type == type
end
Also aliased as: eql?
eql?(other)
Alias for: ==
hash() click to toggle source
# File rbs-2.8.2/lib/rbs/ast/members.rb, line 104
def hash
  name.hash ^ type.hash
end