Sha256: ece4130b3b852d9fea40d0168a5a798003270992d6921112057a3bad299dc255

Contents?: true

Size: 1.13 KB

Versions: 13

Compression:

Stored size: 1.13 KB

Contents

# frozen_string_literal: true

module Mutant
  class Mutator
    class Node
      # Mutator for rescue nodes
      class Rescue < self

        handle :rescue

        children :body

        define_named_child(:else_body, -1)

        RESCUE_INDICES = (1..-2)

      private

        def dispatch
          mutate_body
          mutate_rescue_bodies
          mutate_else_body
        end

        def mutate_rescue_bodies
          children_indices(RESCUE_INDICES).each do |index|
            mutate_child(index)
            resbody_body = AST::Meta::Resbody.new(node: children.fetch(index)).body
            emit_concat(resbody_body) if resbody_body
          end
        end

        def emit_concat(child)
          if body
            emit(s(:begin, body, child))
          else
            emit(child)
          end
        end

        def mutate_body
          return unless body
          emit_body_mutations
          emit(body)
        end

        def mutate_else_body
          return unless else_body
          emit_else_body_mutations
          emit_concat(else_body)
        end

      end # Rescue
    end # Node
  end # Mutator
end # Mutant

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
mutant-0.12.4 lib/mutant/mutator/node/rescue.rb
mutant-0.12.3 lib/mutant/mutator/node/rescue.rb
mutant-0.12.2 lib/mutant/mutator/node/rescue.rb
mutant-0.12.0 lib/mutant/mutator/node/rescue.rb
mutant-0.11.34 lib/mutant/mutator/node/rescue.rb
mutant-0.11.33 lib/mutant/mutator/node/rescue.rb
mutant-0.11.32 lib/mutant/mutator/node/rescue.rb
mutant-0.11.31 lib/mutant/mutator/node/rescue.rb
mutant-0.11.30 lib/mutant/mutator/node/rescue.rb
mutant-0.11.29 lib/mutant/mutator/node/rescue.rb
mutant-0.11.28 lib/mutant/mutator/node/rescue.rb
mutant-0.11.27 lib/mutant/mutator/node/rescue.rb
mutant-0.11.26 lib/mutant/mutator/node/rescue.rb