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
- #annotations readonly
- #comment readonly
- #location readonly
- #name readonly
- #type readonly
Instance Method Summary
- #==(other) (also: #eql?)
-
#eql?(other)
Alias for #==.
- #hash
- #to_json(state = _ = nil)
Constructor Details
.new(name:, type:, location:, comment:, annotations: []) ⇒ Constant
# 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 ]#eql?(other)
Alias for #==.
# File 'lib/rbs/ast/declarations.rb', line 368
alias eql? ==