# encoding: utf-8 module Mutant class Mutator class Node # Mutation emitter to handle noop nodes class Noop < self handle(:block_pass, :cbase) private # Emit mutations # # @return [undefined] # # @api private # def dispatch # noop end end # Noop end # Node end # Mutator end # Mutant