Exception: RBS::NoTypeFoundError

Inherits:
StandardError
  • Object
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:) ⇒ NoTypeFoundError

Returns a new instance of NoTypeFoundError.



88
89
90
91
92
93
# File 'lib/rbs/errors.rb', line 88

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.



86
87
88
# File 'lib/rbs/errors.rb', line 86

def location
  @location
end

#type_nameObject (readonly)

Returns the value of attribute type_name.



85
86
87
# File 'lib/rbs/errors.rb', line 85

def type_name
  @type_name
end

Class Method Details

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



95
96
97
98
99
100
# File 'lib/rbs/errors.rb', line 95

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

  type_name
end