class RBS::AST::Comment

Attributes

location[R]
string[R]

Public Class Methods

new(string:, location:) click to toggle source
# File rbs-2.1.0/lib/rbs/ast/comment.rb, line 7
def initialize(string:, location:)
  @string = string
  @location = location
end

Public Instance Methods

==(other) click to toggle source
# File rbs-2.1.0/lib/rbs/ast/comment.rb, line 12
def ==(other)
  other.is_a?(Comment) && other.string == string
end
Also aliased as: eql?
eql?(other)
Alias for: ==
hash() click to toggle source
# File rbs-2.1.0/lib/rbs/ast/comment.rb, line 18
def hash
  self.class.hash ^ string.hash
end
to_json(state = _ = nil) click to toggle source
# File rbs-2.1.0/lib/rbs/ast/comment.rb, line 22
def to_json(state = _ = nil)
  { string: string, location: location }.to_json(state)
end