module Mutant class Mutator class Node # Mutator for loop control keywords class Break < Generic handle(:break) private # Emit mutations # # @return [undefined] # # @api private # def dispatch super emit_singletons children.each_index(&method(:delete_child)) end end # Break end # Node end # Mutator end # Mutant