class RBS::NonregularTypeAliasError

Attributes

diagnostic[R]
location[R]

Public Class Methods

new(diagnostic:, location:) click to toggle source
Calls superclass method
# File rbs-2.7.0/lib/rbs/errors.rb, line 441
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