Class: RBS::AST::Declarations::Extension
- Defined in:
- lib/rbs/ast/declarations.rb
Instance Attribute Summary collapse
-
#annotations ⇒ Object
readonly
Returns the value of attribute annotations.
-
#comment ⇒ Object
readonly
Returns the value of attribute comment.
-
#extension_name ⇒ Object
readonly
Returns the value of attribute extension_name.
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#members ⇒ Object
readonly
Returns the value of attribute members.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#type_params ⇒ Object
readonly
Returns the value of attribute type_params.
Instance Method Summary collapse
- #==(other) ⇒ Object (also: #eql?)
- #hash ⇒ Object
-
#initialize(name:, type_params:, extension_name:, members:, annotations:, location:, comment:) ⇒ Extension
constructor
A new instance of Extension.
- #to_json(*a) ⇒ Object
Constructor Details
#initialize(name:, type_params:, extension_name:, members:, annotations:, location:, comment:) ⇒ Extension
Returns a new instance of Extension.
309 310 311 312 313 314 315 316 317 |
# File 'lib/rbs/ast/declarations.rb', line 309 def initialize(name:, type_params:, extension_name:, members:, annotations:, location:, comment:) @name = name @type_params = type_params @extension_name = extension_name @members = members @annotations = annotations @location = location @comment = comment end |
Instance Attribute Details
#annotations ⇒ Object (readonly)
Returns the value of attribute annotations.
305 306 307 |
# File 'lib/rbs/ast/declarations.rb', line 305 def annotations @annotations end |
#comment ⇒ Object (readonly)
Returns the value of attribute comment.
307 308 309 |
# File 'lib/rbs/ast/declarations.rb', line 307 def comment @comment end |
#extension_name ⇒ Object (readonly)
Returns the value of attribute extension_name.
303 304 305 |
# File 'lib/rbs/ast/declarations.rb', line 303 def extension_name @extension_name end |
#location ⇒ Object (readonly)
Returns the value of attribute location.
306 307 308 |
# File 'lib/rbs/ast/declarations.rb', line 306 def location @location end |
#members ⇒ Object (readonly)
Returns the value of attribute members.
304 305 306 |
# File 'lib/rbs/ast/declarations.rb', line 304 def members @members end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
301 302 303 |
# File 'lib/rbs/ast/declarations.rb', line 301 def name @name end |
#type_params ⇒ Object (readonly)
Returns the value of attribute type_params.
302 303 304 |
# File 'lib/rbs/ast/declarations.rb', line 302 def type_params @type_params end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
319 320 321 322 323 324 325 |
# File 'lib/rbs/ast/declarations.rb', line 319 def ==(other) other.is_a?(Extension) && other.name == name && other.type_params == type_params && other.extension_name == extension_name && other.members == members end |
#hash ⇒ Object
329 330 331 |
# File 'lib/rbs/ast/declarations.rb', line 329 def hash self.class.hash ^ name.hash ^ type_params.hash ^ extension_name.hash ^ members.hash end |
#to_json(*a) ⇒ Object
333 334 335 336 337 338 339 340 341 342 343 344 |
# File 'lib/rbs/ast/declarations.rb', line 333 def to_json(*a) { declaration: :extension, name: name, type_params: type_params, extension_name: extension_name, members: members, annotations: annotations, location: location, comment: comment }.to_json(*a) end |