Sha256: 594bbf626716bb0b56bcba5ba37f8676332250ae4b1522890becb86763fb0216

Contents?: true

Size: 1.12 KB

Versions: 17

Compression:

Stored size: 1.12 KB

Contents

# frozen_string_literal: true

module Mutant
  class Mutator
    class Node

      # Mutator for case nodes
      class Case < self

        handle(:case)

        children :condition

      private

        # Emit mutations
        #
        # @return [undefined]
        def dispatch
          emit_singletons
          emit_condition_mutations if condition
          emit_when_mutations
          emit_else_mutations
        end

        # Emit when mutations
        #
        # @return [undefined]
        def emit_when_mutations
          indices = children.each_index.drop(1).take(children.length - 2)
          one = indices.one?
          indices.each do |index|
            mutate_child(index)
            delete_child(index) unless one
          end
        end

        # Emit else mutations
        #
        # @return [undefined]
        def emit_else_mutations
          else_branch = children.last
          else_index = children.length - 1
          return unless else_branch
          mutate_child(else_index)
          emit_child_update(else_index, nil)
        end

      end # Case
    end # Node
  end # Mutator
end # Mutant

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
mutant-0.9.8 lib/mutant/mutator/node/case.rb
mutant-0.9.7 lib/mutant/mutator/node/case.rb
mutant-0.9.6 lib/mutant/mutator/node/case.rb
mutant-0.9.5 lib/mutant/mutator/node/case.rb
mutant-0.9.4 lib/mutant/mutator/node/case.rb
mutant-0.9.3 lib/mutant/mutator/node/case.rb
mutant-0.9.2 lib/mutant/mutator/node/case.rb
mutant-0.9.1 lib/mutant/mutator/node/case.rb
mutant-0.9.0 lib/mutant/mutator/node/case.rb
mutant-0.8.24 lib/mutant/mutator/node/case.rb
mutant-0.8.23 lib/mutant/mutator/node/case.rb
mutant-0.8.22 lib/mutant/mutator/node/case.rb
mutant-0.8.21 lib/mutant/mutator/node/case.rb
mutant-0.8.20 lib/mutant/mutator/node/case.rb
mutant-0.8.19 lib/mutant/mutator/node/case.rb
mutant-0.8.18 lib/mutant/mutator/node/case.rb
mutant-0.8.17 lib/mutant/mutator/node/case.rb