Exception: RBS::NonregularTypeAliasError
- Inherits:
-
LoadingError
- Object
- StandardError
- ErrorBase
- LoadingError
- RBS::NonregularTypeAliasError
- Defined in:
- lib/rbs/errors.rb
Instance Attribute Summary collapse
-
#diagnostic ⇒ Object
readonly
Returns the value of attribute diagnostic.
-
#location ⇒ Object
readonly
Returns the value of attribute location.
Instance Method Summary collapse
-
#initialize(diagnostic:, location:) ⇒ NonregularTypeAliasError
constructor
A new instance of NonregularTypeAliasError.
Constructor Details
#initialize(diagnostic:, location:) ⇒ NonregularTypeAliasError
Returns a new instance of NonregularTypeAliasError.
439 440 441 442 443 444 |
# File 'lib/rbs/errors.rb', line 439 def initialize(diagnostic:, location:) @diagnostic = diagnostic @location = location super "#{Location.to_string location}: Nonregular generic type alias is prohibited: #{diagnostic.type_name}, #{diagnostic.nonregular_type}" end |
Instance Attribute Details
#diagnostic ⇒ Object (readonly)
Returns the value of attribute diagnostic.
436 437 438 |
# File 'lib/rbs/errors.rb', line 436 def diagnostic @diagnostic end |
#location ⇒ Object (readonly)
Returns the value of attribute location.
437 438 439 |
# File 'lib/rbs/errors.rb', line 437 def location @location end |