Class: RBS::Types::ClassSingleton

Inherits:
Object
  • Object
show all
Includes:
EmptyEachType, NoFreeVariables, NoSubst
Defined in:
lib/rbs/types.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from EmptyEachType

#each_type, #map_type

Methods included from NoSubst

#sub

Methods included from NoFreeVariables

#free_variables

Constructor Details

#initialize(name:, location:) ⇒ ClassSingleton

Returns a new instance of ClassSingleton.



169
170
171
172
# File 'lib/rbs/types.rb', line 169

def initialize(name:, location:)
  @name = name
  @location = location
end

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



167
168
169
# File 'lib/rbs/types.rb', line 167

def location
  @location
end

#nameObject (readonly)

Returns the value of attribute name.



166
167
168
# File 'lib/rbs/types.rb', line 166

def name
  @name
end

Instance Method Details

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



174
175
176
# File 'lib/rbs/types.rb', line 174

def ==(other)
  other.is_a?(ClassSingleton) && other.name == name
end

#hashObject



180
181
182
# File 'lib/rbs/types.rb', line 180

def hash
  self.class.hash ^ name.hash
end

#map_type_nameObject



197
198
199
200
201
202
# File 'lib/rbs/types.rb', line 197

def map_type_name
  ClassSingleton.new(
    name: yield(name, location, self),
    location: location
  )
end

#to_json(state = _ = nil) ⇒ Object



187
188
189
# File 'lib/rbs/types.rb', line 187

def to_json(state = _ = nil)
  { class: :class_singleton, name: name, location: location }.to_json(state)
end

#to_s(level = 0) ⇒ Object



191
192
193
# File 'lib/rbs/types.rb', line 191

def to_s(level = 0)
  "singleton(#{name})"
end