Sha256: 3607842c05c7e886dd54240b7a449aa10aca1fb6586eec911fe958222c1464ab

Contents?: true

Size: 1.22 KB

Versions: 21

Compression:

Stored size: 1.22 KB

Contents

# encoding: utf-8

module Mutant
  class Mutator
    class Node

      # Mutator for case nodes
      class Case < self

        handle(:case)

        children :condition

      private

        # Emit mutations
        #
        # @return [undefined]
        #
        # @api private
        #
        def dispatch
          emit_condition_mutations
          emit_when_mutations
          emit_else_mutations
          emit_nil
        end

        # Emit when mutations
        #
        # @return [undefined]
        #
        # @api private
        #
        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]
        #
        # @api private
        #
        def emit_else_mutations
          else_branch = children.last
          else_index = children.length - 1
          if else_branch
            mutate_child(else_index)
            emit_child_update(else_index, nil)
          end
        end

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

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
mutant-0.5.9 lib/mutant/mutator/node/case.rb
mutant-0.5.8 lib/mutant/mutator/node/case.rb
mutant-0.5.7 lib/mutant/mutator/node/case.rb
mutant-0.5.6 lib/mutant/mutator/node/case.rb
mutant-0.5.5 lib/mutant/mutator/node/case.rb
mutant-0.5.4 lib/mutant/mutator/node/case.rb
mutant-0.5.3 lib/mutant/mutator/node/case.rb
mutant-0.5.2 lib/mutant/mutator/node/case.rb
mutant-0.5.1 lib/mutant/mutator/node/case.rb
mutant-0.5.0 lib/mutant/mutator/node/case.rb
mutant-0.3.6 lib/mutant/mutator/node/case.rb
mutant-0.3.5 lib/mutant/mutator/node/case.rb
mutant-0.3.4 lib/mutant/mutator/node/case.rb
mutant-0.3.3 lib/mutant/mutator/node/case.rb
mutant-0.3.2 lib/mutant/mutator/node/case.rb
mutant-0.3.1 lib/mutant/mutator/node/case.rb
mutant-0.3.0 lib/mutant/mutator/node/case.rb
mutant-0.3.0.rc5 lib/mutant/mutator/node/case.rb
mutant-0.3.0.rc4 lib/mutant/mutator/node/case.rb
mutant-0.3.0.rc3 lib/mutant/mutator/node/case.rb