free_mutant/lib/mutant/mutator/node/literal/symbol.rb
Markus Schirp 6b2e2a8bb0 Initial round of refactoring
* Remove some RBX only nodes
* Register parser types
* Remove all occurences of ::Rubinius when loading libraries
2013-06-14 21:11:54 +02:00

27 lines
508 B
Ruby

module Mutant
class Mutator
class Node
class Literal < self
# Mutator for symbol literals
class Symbol < self
handle(:sym)
private
# Emit mutatns
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_nil
emit_new { new_self(('s'+Random.hex_string).to_sym) }
end
end # Symbol
end # Literal
end # Node
end # Mutator
end # Mutant