Exception: RBS::RecursiveAliasDefinitionError

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type:, defs:) ⇒ RecursiveAliasDefinitionError

Returns a new instance of RecursiveAliasDefinitionError.



367
368
369
370
371
372
# File 'lib/rbs/errors.rb', line 367

def initialize(type:, defs:)
  @type = type
  @defs = defs

  super "#{Location.to_string location}: Recursive aliases in #{type}: #{defs.map(&:name).join(", ")}"
end

Instance Attribute Details

#defsObject (readonly)

Returns the value of attribute defs.



365
366
367
# File 'lib/rbs/errors.rb', line 365

def defs
  @defs
end

#typeObject (readonly)

Returns the value of attribute type.



364
365
366
# File 'lib/rbs/errors.rb', line 364

def type
  @type
end

Instance Method Details

#locationObject



374
375
376
377
378
# File 'lib/rbs/errors.rb', line 374

def location
  first_def = defs.first or raise
  original = first_def.original or raise
  original.location
end