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

Inherits:
Base
  • Object
show all
Defined in:
lib/rbs/ast/declarations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name:, type:, location:, comment:) ⇒ Constant

Returns a new instance of Constant.



353
354
355
356
357
358
# File 'lib/rbs/ast/declarations.rb', line 353

def initialize(name:, type:, location:, comment:)
  @name = name
  @type = type
  @location = location
  @comment = comment
end

Instance Attribute Details

#commentObject (readonly)

Returns the value of attribute comment.



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

def comment
  @comment
end

#locationObject (readonly)

Returns the value of attribute location.



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

def location
  @location
end

#nameObject (readonly)

Returns the value of attribute name.



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

def name
  @name
end

#typeObject (readonly)

Returns the value of attribute type.



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

def type
  @type
end

Instance Method Details

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



360
361
362
363
364
# File 'lib/rbs/ast/declarations.rb', line 360

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

#hashObject



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

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

#to_json(state = _ = nil) ⇒ Object



372
373
374
375
376
377
378
379
380
# File 'lib/rbs/ast/declarations.rb', line 372

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