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.
- #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.
150 151 152 153 |
# File 'lib/rbs/types.rb', line 150 def initialize(name:, location:) @name = name @location = location end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
148 149 150 |
# File 'lib/rbs/types.rb', line 148 def location @location end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
147 148 149 |
# File 'lib/rbs/types.rb', line 147 def name @name end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
155 156 157 |
# File 'lib/rbs/types.rb', line 155 def ==(other) other.is_a?(ClassSingleton) && other.name == name end |
#hash ⇒ Object
161 162 163 |
# File 'lib/rbs/types.rb', line 161 def hash self.class.hash ^ name.hash end |
#to_json(*a) ⇒ Object
168 169 170 |
# File 'lib/rbs/types.rb', line 168 def to_json(*a) { class: :class_singleton, name: name, location: location }.to_json(*a) end |
#to_s(level = 0) ⇒ Object
172 173 174 |
# File 'lib/rbs/types.rb', line 172 def to_s(level = 0) "singleton(#{name})" end |