Class: Steep::Errors::UnexpectedSuper

Inherits:
Base
  • Object
show all
Defined in:
lib/steep/errors.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#node

Instance Method Summary collapse

Methods inherited from Base

#location_to_str, #print_to

Constructor Details

#initialize(node:, method:) ⇒ UnexpectedSuper

Returns a new instance of UnexpectedSuper.



335
336
337
338
# File 'lib/steep/errors.rb', line 335

def initialize(node:, method:)
  super(node: node)
  @method = method
end

Instance Attribute Details

#methodObject (readonly)

Returns the value of attribute method.



333
334
335
# File 'lib/steep/errors.rb', line 333

def method
  @method
end

Instance Method Details

#to_sObject



340
341
342
# File 'lib/steep/errors.rb', line 340

def to_s
  "#{location_to_str}: UnexpectedSuper: method=#{method}"
end