Exception: RBS::NoTypeFoundError

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

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from DetailedMessageable

#detailed_message

Constructor Details

#initialize(type_name:, location:) ⇒ NoTypeFoundError

Returns a new instance of NoTypeFoundError.



132
133
134
135
136
137
# File 'lib/rbs/errors.rb', line 132

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

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

Instance Attribute Details

#locationObject (readonly)

Returns the value of attribute location.



130
131
132
# File 'lib/rbs/errors.rb', line 130

def location
  @location
end

#type_nameObject (readonly)

Returns the value of attribute type_name.



129
130
131
# File 'lib/rbs/errors.rb', line 129

def type_name
  @type_name
end

Class Method Details

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



139
140
141
142
# File 'lib/rbs/errors.rb', line 139

def self.check!(type_name, env:, location:)
  env.type_name?(type_name) or raise new(type_name: type_name, location: location)
  type_name
end