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(*a) ⇒ 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.
163 164 165 166 |
# File 'lib/rbs/types.rb', line 163 def initialize(name:, location:) @name = name @location = location end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
161 162 163 |
# File 'lib/rbs/types.rb', line 161 def location @location end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
160 161 162 |
# File 'lib/rbs/types.rb', line 160 def name @name end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
168 169 170 |
# File 'lib/rbs/types.rb', line 168 def ==(other) other.is_a?(ClassSingleton) && other.name == name end |
#hash ⇒ Object
174 175 176 |
# File 'lib/rbs/types.rb', line 174 def hash self.class.hash ^ name.hash end |
#map_type_name ⇒ Object
191 192 193 194 195 196 |
# File 'lib/rbs/types.rb', line 191 def map_type_name ClassSingleton.new( name: yield(name, location, self), location: location ) end |
#to_json(*a) ⇒ Object
181 182 183 |
# File 'lib/rbs/types.rb', line 181 def to_json(*a) { class: :class_singleton, name: name, location: location }.to_json(*a) end |
#to_s(level = 0) ⇒ Object
185 186 187 |
# File 'lib/rbs/types.rb', line 185 def to_s(level = 0) "singleton(#{name})" end |