Class: RBS::Types::ClassSingleton
- Inherits:
-
Object
- Object
- RBS::Types::ClassSingleton
- Includes:
- EmptyEachType, NoFreeVariables, NoSubst
- Defined in:
- lib/rbs/types.rb
Instance Attribute Summary collapse
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #==(other) ⇒ Object (also: #eql?)
- #hash ⇒ Object
-
#initialize(name:, location:) ⇒ ClassSingleton
constructor
A new instance of ClassSingleton.
- #map_type_name ⇒ Object
- #to_json(state = _ = nil) ⇒ Object
- #to_s(level = 0) ⇒ Object
Methods included from EmptyEachType
Methods included from NoSubst
Methods included from NoFreeVariables
Constructor Details
#initialize(name:, location:) ⇒ ClassSingleton
Returns a new instance of ClassSingleton.
171 172 173 174 |
# File 'lib/rbs/types.rb', line 171 def initialize(name:, location:) @name = name @location = location end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
169 170 171 |
# File 'lib/rbs/types.rb', line 169 def location @location end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
168 169 170 |
# File 'lib/rbs/types.rb', line 168 def name @name end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
176 177 178 |
# File 'lib/rbs/types.rb', line 176 def ==(other) other.is_a?(ClassSingleton) && other.name == name end |
#hash ⇒ Object
182 183 184 |
# File 'lib/rbs/types.rb', line 182 def hash self.class.hash ^ name.hash end |
#map_type_name ⇒ Object
199 200 201 202 203 204 |
# File 'lib/rbs/types.rb', line 199 def map_type_name ClassSingleton.new( name: yield(name, location, self), location: location ) end |
#to_json(state = _ = nil) ⇒ Object
189 190 191 |
# File 'lib/rbs/types.rb', line 189 def to_json(state = _ = nil) { class: :class_singleton, name: name, location: location }.to_json(state) end |
#to_s(level = 0) ⇒ Object
193 194 195 |
# File 'lib/rbs/types.rb', line 193 def to_s(level = 0) "singleton(#{name})" end |