free_mutant/lib/mutant/mutator/node/kwbegin.rb

29 lines
402 B
Ruby
Raw Normal View History

2013-11-03 23:51:55 -05:00
# encoding: utf-8
module Mutant
class Mutator
class Node
# Kwbegin mutator
class Kwbegin < Generic
handle(:kwbegin)
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
super
emit_nil
end
end # Kwbegin
end # Node
end # Mutator
end # Mutant