Sha256: f2d3952c7e9c9eff74ae6217234587e41b7270ec45408298173ecebd76c3a4ad

Contents?: true

Size: 381 Bytes

Versions: 6

Compression:

Stored size: 381 Bytes

Contents

module Mutant
  class Mutator
    class Node

      # Mutator for Rubinius::AST::When nodes
      class When < self

        handle(Rubinius::AST::When)

      private

        # Emit mutations
        #
        # @return [undefined]
        #
        # @api private
        #
        def dispatch
          emit_attribute_mutations(:body)
        end

      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mutant-0.2.20 lib/mutant/mutator/node/when.rb
mutant-0.2.17 lib/mutant/mutator/node/when.rb
mutant-0.2.16 lib/mutant/mutator/node/when.rb
mutant-0.2.15 lib/mutant/mutator/node/when.rb
mutant-0.2.14 lib/mutant/mutator/node/when.rb
mutant-0.2.13 lib/mutant/mutator/node/when.rb