Exception: RBS::NoSelfTypeFoundError

Inherits:
DefinitionError show all
Defined in:
lib/rbs/errors.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type_name:, location:) ⇒ NoSelfTypeFoundError

Returns a new instance of NoSelfTypeFoundError.



179
180
181
182
183
184
# File 'lib/rbs/errors.rb', line 179

def initialize(type_name:, location:)
  @type_name = type_name
  @location = location

  super "#{Location.to_string location}: Could not find self type: #{type_name}"
end

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



177
178
179
# File 'lib/rbs/errors.rb', line 177

def location
  @location
end

#type_nameObject (readonly)

Returns the value of attribute type_name.



176
177
178
# File 'lib/rbs/errors.rb', line 176

def type_name
  @type_name
end

Class Method Details

.check!(self_type, env:) ⇒ Object



186
187
188
189
190
191
192
193
194
195
196
197
198
199
# File 'lib/rbs/errors.rb', line 186

def self.check!(self_type, env:)
  type_name = self_type.name

  dic = case
        when type_name.class?
          env.class_decls
        when type_name.interface?
          env.interface_decls
        else
          raise
        end

  dic.key?(type_name) or raise new(type_name: type_name, location: self_type.location)
end