Remove method duplicated in parent class

This commit is contained in:
Dan Kubb 2013-09-07 23:57:20 -07:00
parent 610ab6e2d3
commit 6429bdc532

View file

@ -6,23 +6,6 @@ module Mutant
# Abstract mutator for literal AST nodes
class Literal < self
include AbstractType
private
# Emit a new node with wrapping class for each entry in values
#
# @param [Array] values
#
# @return [undefined]
#
# @api private
#
def emit_values(values)
values.each do |value|
emit_self(value)
end
end
end # Literal
end # Node
end # Mutator