free_mutant/lib/mutant/mutator/literal/dynamic.rb
Markus Schirp 75e6a229f8 Create namespace for literal mutations
* Do not follow rubinius names anymore.
  An explict declaration now declares a mutator handles
  specific AST node.

* Has a nice impact on metrics.
2012-07-31 19:45:46 +02:00

21 lines
327 B
Ruby

module Mutant
class Mutator
class Literal
# Abstract mutations on dynamic literals
class Dynamic < Literal
private
# Emit mutants
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_nil
end
end
end
end
end