Class: RBS::AST::Declarations::AliasDecl
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Subclasses:
|
|
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
- #new_name readonly
- #old_name readonly
Instance Method Summary
- #==(other) (also: #eql?)
-
#eql?(other)
Alias for #==.
- #hash
Constructor Details
.new(new_name:, old_name:, location:, comment:, annotations: []) ⇒ AliasDecl
# File 'lib/rbs/ast/declarations.rb', line 426
def initialize(new_name:, old_name:, location:, comment:, annotations: []) @new_name = new_name @old_name = old_name @location = location @comment = comment @annotations = annotations end
Instance Attribute Details
#annotations (readonly)
[ GitHub ]#comment (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 424
attr_reader :new_name, :old_name, :location, :comment, :annotations
#location (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 424
attr_reader :new_name, :old_name, :location, :comment, :annotations
#new_name (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 424
attr_reader :new_name, :old_name, :location, :comment, :annotations
#old_name (readonly)
[ GitHub ]# File 'lib/rbs/ast/declarations.rb', line 424
attr_reader :new_name, :old_name, :location, :comment, :annotations
Instance Method Details
#==(other) Also known as: #eql?
[ GitHub ]#eql?(other)
Alias for #==.
# File 'lib/rbs/ast/declarations.rb', line 440
alias eql? ==