In Files

  • rbs-1.0.4/lib/rbs/ast/annotation.rb

Parent

Class/Module Index [+]

Quicksearch

RBS::AST::Annotation

Attributes

location[R]
string[R]

Public Class Methods

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

Public Instance Methods

==(other) click to toggle source
 
               # File rbs-1.0.4/lib/rbs/ast/annotation.rb, line 12
def ==(other)
  other.is_a?(Annotation) && other.string == string
end
            
Also aliased as: eql?
eql?(other) click to toggle source
Alias for: ==
hash() click to toggle source
 
               # File rbs-1.0.4/lib/rbs/ast/annotation.rb, line 18
def hash
  self.class.hash ^ string.hash
end
            
to_json(*a) click to toggle source
 
               # File rbs-1.0.4/lib/rbs/ast/annotation.rb, line 22
def to_json(*a)
  { string: string, location: location }.to_json(*a)
end