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
- #location readonly
- #type_name readonly
Constructor Details
.new(type_name:, location:) ⇒ NoTypeFoundError
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