Class: Steep::Errors::ElseOnExhaustiveCase
- Inherits:
-
Base
- Object
- Base
- Steep::Errors::ElseOnExhaustiveCase
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
472
473
474
475
476
|
# File 'lib/steep/errors.rb', line 472
def initialize(node:, type:)
def to_s
"#{location_to_str}: ElseOnExhaustiveCase: type=#{type}"
end
end
|
Instance Method Details
#to_s ⇒ Object
473
474
475
|
# File 'lib/steep/errors.rb', line 473
def to_s
"#{location_to_str}: ElseOnExhaustiveCase: type=#{type}"
end
|