class RBS::AST::Declarations::Module

Attributes

annotations[R]
comment[R]
location[R]
members[R]
name[R]
self_types[R]
type_params[R]

Public Class Methods

new(name:, type_params:, members:, self_types:, annotations:, location:, comment:) click to toggle source
# File rbs-2.8.2/lib/rbs/ast/declarations.rb, line 185
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

Public Instance Methods

==(other) click to toggle source
# File rbs-2.8.2/lib/rbs/ast/declarations.rb, line 195
def ==(other)
  other.is_a?(Module) &&
    other.name == name &&
    other.type_params == type_params &&
    other.self_types == self_types &&
    other.members == members
end
Also aliased as: eql?
eql?(other)
Alias for: ==
hash() click to toggle source
# File rbs-2.8.2/lib/rbs/ast/declarations.rb, line 205
def hash
  self.class.hash ^ name.hash ^ type_params.hash ^ self_types.hash ^ members.hash
end
to_json(state = _ = nil) click to toggle source
# File rbs-2.8.2/lib/rbs/ast/declarations.rb, line 209
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