Sha256: fecfcbc8e59a93ac9f1e2c909ab5c5d6ac69959509282626bbc6e64c5b62357e

Contents?: true

Size: 383 Bytes

Versions: 3

Compression:

Stored size: 383 Bytes

Contents

module Mutant
  class Mutator
    class Node
      class While < self

        handle(Rubinius::AST::While)

      private

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

      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mutant-0.2.12 lib/mutant/mutator/node/while.rb
mutant-0.2.11 lib/mutant/mutator/node/while.rb
mutant-0.2.9 lib/mutant/mutator/node/while.rb