123456789_123456789_123456789_123456789_123456789_

Exception: RBS::NoTypeFoundError

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, BaseError, StandardError
Instance Chain:
self, BaseError, StandardError
Inherits: RBS::BaseError
Defined in: lib/rbs/errors.rb

Class Method Summary

Instance Attribute Summary

Constructor Details

.new(type_name:, location:) ⇒ NoTypeFoundError

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 114

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

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

Class Method Details

.check!(type_name, env:, location:)

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 121

def self.check!(type_name, env:, location:)
  dic = case
        when type_name.class?
          env.class_decls
        when type_name.alias?
          env.alias_decls
        when type_name.interface?
          env.interface_decls
        else
          raise
        end

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

  type_name
end

Instance Attribute Details

#location (readonly)

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 112

attr_reader :location

#type_name (readonly)

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 111

attr_reader :type_name