Class: RBS::AST::Declarations::Extension

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_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

#annotationsObject (readonly)

Returns the value of attribute annotations.



305
306
307
# File 'lib/rbs/ast/declarations.rb', line 305

def annotations
  @annotations
end

#commentObject (readonly)

Returns the value of attribute comment.



307
308
309
# File 'lib/rbs/ast/declarations.rb', line 307

def comment
  @comment
end

#extension_nameObject (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

#locationObject (readonly)

Returns the value of attribute location.



306
307
308
# File 'lib/rbs/ast/declarations.rb', line 306

def location
  @location
end

#membersObject (readonly)

Returns the value of attribute members.



304
305
306
# File 'lib/rbs/ast/declarations.rb', line 304

def members
  @members
end

#nameObject (readonly)

Returns the value of attribute name.



301
302
303
# File 'lib/rbs/ast/declarations.rb', line 301

def name
  @name
end

#type_paramsObject (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

#hashObject



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