Class: Evilution::Mutator::Operator::InlineRescue

Inherits:
Base
  • Object
show all
Defined in:
lib/evilution/mutator/operator/inline_rescue.rb

Instance Attribute Summary

Attributes inherited from Base

#mutations

Instance Method Summary collapse

Methods inherited from Base

#call, clear_parse_cache!, #initialize, operator_name, parsed_tree_for

Constructor Details

This class inherits a constructor from Evilution::Mutator::Base

Instance Method Details

#visit_rescue_modifier_node(node) ⇒ Object



6
7
8
9
10
11
# File 'lib/evilution/mutator/operator/inline_rescue.rb', line 6

def visit_rescue_modifier_node(node)
  generate_rescue_removal(node)
  generate_nil_fallback(node)

  super
end