Sha256: 5a4bef208cfddb8341c8919e533cea89c37b795eecfe8d53b4ca3fe13bd6c1e5

Contents?: true

Size: 405 Bytes

Versions: 1

Compression:

Stored size: 405 Bytes

Contents

module Mutant
  class Mutator
    class Node

      # Mutation emitter to handle local variable nodes
      class LocalVariable < self

        handle(:lvar)

      private

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

      end # LocalVariable
    end # Node
  end # Mutator
end # Mutant

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mutant-0.3.0.beta19 lib/mutant/mutator/node/lvar.rb