Sha256: ca1382f6a36a5dce6b15e4518249bc23d7bf4e0626930340b4e5bf87398d37f6

Contents?: true

Size: 1.47 KB

Versions: 19

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

module Mutant
  class Mutator
    class Node
      # Mutator for arguments node
      class Arguments < self

        handle(:args)

      private

        def dispatch
          emit_argument_presence
          emit_argument_mutations
          emit_mlhs_expansion
        end

        def emit_argument_presence
          emit_type

          Util::Array::Presence.call(children).each do |children|
            unless children.one? && n_mlhs?(children.first)
              emit_type(*children)
            end
          end
        end

        def emit_argument_mutations
          children.each_with_index do |child, index|
            Mutator.mutate(child).each do |mutant|
              next if invalid_argument_replacement?(mutant, index)
              emit_child_update(index, mutant)
            end
          end
        end

        def invalid_argument_replacement?(mutant, index)
          n_arg?(mutant) && children[0...index].any?(&method(:n_optarg?))
        end

        def emit_mlhs_expansion
          mlhs_childs_with_index.each do |child, index|
            dup_children = children.dup
            dup_children.delete_at(index)
            dup_children.insert(index, *child)
            emit_type(*dup_children)
          end
        end

        def mlhs_childs_with_index
          children.each_with_index.select do |child,|
            n_mlhs?(child)
          end
        end

      end # Arguments
    end # Node
  end # Mutator
end # Mutant

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
mutant-0.11.3 lib/mutant/mutator/node/arguments.rb
mutant-0.11.2 lib/mutant/mutator/node/arguments.rb
mutant-0.11.1 lib/mutant/mutator/node/arguments.rb
mutant-0.11.0 lib/mutant/mutator/node/arguments.rb
mutant-0.10.35 lib/mutant/mutator/node/arguments.rb
mutant-0.10.34 lib/mutant/mutator/node/arguments.rb
mutant-0.10.33 lib/mutant/mutator/node/arguments.rb
mutant-0.10.32 lib/mutant/mutator/node/arguments.rb
mutant-0.10.31 lib/mutant/mutator/node/arguments.rb
mutant-0.10.30 lib/mutant/mutator/node/arguments.rb
mutant-0.10.29 lib/mutant/mutator/node/arguments.rb
mutant-0.10.28 lib/mutant/mutator/node/arguments.rb
mutant-0.10.27 lib/mutant/mutator/node/arguments.rb
mutant-0.10.26 lib/mutant/mutator/node/arguments.rb
mutant-0.10.25 lib/mutant/mutator/node/arguments.rb
mutant-0.10.24 lib/mutant/mutator/node/arguments.rb
mutant-0.10.23 lib/mutant/mutator/node/arguments.rb
mutant-0.10.22 lib/mutant/mutator/node/arguments.rb
mutant-0.10.21 lib/mutant/mutator/node/arguments.rb