Class: RBS::AST::Declarations::Global
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: []) ⇒ Global
# File 'lib/rbs/ast/declarations.rb', line 392
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 390
attr_reader :annotations
#comment (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 389
attr_reader :comment
#location (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 388
attr_reader :location
#name (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 386
attr_reader :name
#type (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 387
attr_reader :type
Instance Method Details
#==(other) Also known as: #eql?
[ GitHub ]#eql?(other)
Alias for #==.
# File 'lib/rbs/ast/declarations.rb', line 406
alias eql? ==