123456789_123456789_123456789_123456789_123456789_

Class: RBS::AST::Declarations::Constant

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Base
Instance Chain:
self, Base
Inherits: RBS::AST::Declarations::Base
Defined in: lib/rbs/ast/declarations.rb

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(name:, type:, location:, comment:, annotations: []) ⇒ Constant

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 354

def initialize(name:, type:, location:, comment:, annotations: [])
  @name = name
  @type = type
  @location = location
  @comment = comment
  @annotations = annotations || []
end

Instance Attribute Details

#annotations (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 352

attr_reader :annotations

#comment (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 351

attr_reader :comment

#location (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 350

attr_reader :location

#name (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 348

attr_reader :name

#type (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 349

attr_reader :type

Instance Method Details

#==(other) Also known as: #eql?

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 362

def ==(other)
  other.is_a?(Constant) &&
    other.name == name &&
    other.type == type
end

#eql?(other)

Alias for #==.

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 368

alias eql? ==

#hash

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 370

def hash
  self.class.hash ^ name.hash ^ type.hash
end

#to_json(state = _ = nil)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 374

def to_json(state = _ = nil)
  {
    declaration: :constant,
    name: name,
    type: type,
    location: location,
    comment: comment
  }.to_json(state)
end