Exception: RBS::InvalidVarianceAnnotationError
- Inherits:
-
StandardError
- Object
- StandardError
- RBS::InvalidVarianceAnnotationError
- Defined in:
- lib/rbs/errors.rb
Instance Attribute Summary collapse
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#param ⇒ Object
readonly
Returns the value of attribute param.
-
#type_name ⇒ Object
readonly
Returns the value of attribute type_name.
Instance Method Summary collapse
-
#initialize(type_name:, param:, location:) ⇒ InvalidVarianceAnnotationError
constructor
A new instance of InvalidVarianceAnnotationError.
Constructor Details
#initialize(type_name:, param:, location:) ⇒ InvalidVarianceAnnotationError
Returns a new instance of InvalidVarianceAnnotationError.
309 310 311 312 313 314 315 |
# File 'lib/rbs/errors.rb', line 309 def initialize(type_name:, param:, location:) @type_name = type_name @param = param @location = location super "#{Location.to_string location}: Type parameter variance error: #{param.name} is #{param.variance} but used as incompatible variance" end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
307 308 309 |
# File 'lib/rbs/errors.rb', line 307 def location @location end |
#param ⇒ Object (readonly)
Returns the value of attribute param.
306 307 308 |
# File 'lib/rbs/errors.rb', line 306 def param @param end |
#type_name ⇒ Object (readonly)
Returns the value of attribute type_name.
305 306 307 |
# File 'lib/rbs/errors.rb', line 305 def type_name @type_name end |