Change variable interpolation into simpler to read statement

This commit is contained in:
Dan Kubb 2013-07-23 00:23:03 -07:00
parent 1d18ce5a7a
commit e15fd87a93

View file

@ -39,7 +39,7 @@ module Mutant
def mutate_name
prefix = MAP.fetch(node.type)
Mutator::Util::Symbol.each(name, self) do |name|
emit_name("#{prefix}#{name}")
emit_name(prefix + name.to_s)
end
end