Class: Steep::Errors::FallbackAny
- Inherits:
-
Base
- Object
- Base
- Steep::Errors::FallbackAny
show all
- Defined in:
- lib/steep/errors.rb
Instance Attribute Summary
Attributes inherited from Base
#node
Instance Method Summary
collapse
Methods inherited from Base
#location_to_str, #print_to
Constructor Details
401
402
403
|
# File 'lib/steep/errors.rb', line 401
def initialize(node:)
@node = node
end
|
Instance Method Details
#to_s ⇒ Object
405
406
407
|
# File 'lib/steep/errors.rb', line 405
def to_s
"#{location_to_str}: FallbackAny"
end
|