123456789_123456789_123456789_123456789_123456789_

Class: RBS::AST::Declarations::Module

Relationships & Source Files
Namespace Children
Classes:
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, Base
Instance Chain:
Inherits: RBS::AST::Declarations::Base
Defined in: lib/rbs/ast/declarations.rb

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(name:, type_params:, members:, self_types:, annotations:, location:, comment:) ⇒ Module

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 197

def initialize(name:, type_params:, members:, self_types:, annotations:, location:, comment:)
  @name = name
  @type_params = type_params
  @self_types = self_types
  @members = members
  @annotations = annotations
  @location = location
  @comment = comment
end

Instance Attribute Details

#annotations (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 193

attr_reader :annotations

#comment (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 195

attr_reader :comment

#location (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 192

attr_reader :location

#members (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 191

attr_reader :members

#name (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 189

attr_reader :name

#self_types (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 194

attr_reader :self_types

#type_params (readonly)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 190

attr_reader :type_params

Instance Method Details

#==(other) Also known as: #eql?

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 220

def ==(other)
  other.is_a?(Module) &&
    other.name == name &&
    other.type_params == type_params &&
    other.self_types == self_types &&
    other.members == members
end

#eql?(other)

Alias for #==.

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 228

alias eql? ==

#hash

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 230

def hash
  self.class.hash ^ name.hash ^ type_params.hash ^ self_types.hash ^ members.hash
end

#to_json(state = _ = nil)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 234

def to_json(state = _ = nil)
  {
    declaration: :module,
    name: name,
    type_params: type_params,
    members: members,
    self_types: self_types,
    annotations: annotations,
    location: location,
    comment: comment
  }.to_json(state)
end

#update(name: self.name, type_params: self.type_params, members: self.members, self_types: self.self_types, annotations: self.annotations, location: self.location, comment: self.comment)

[ GitHub ]

  
# File 'lib/rbs/ast/declarations.rb', line 207

def update(name: self.name, type_params: self.type_params, members: self.members, self_types: self.self_types, annotations: self.annotations, location: self.location, comment: self.comment)
  self.class.new(
    name: name,
    type_params: type_params,
    members: members,
    self_types: self_types,
    annotations: annotations,
    location: location,
    comment: comment
  )
end