free_mutant/lib/mutant/mutator/node/super.rb
Markus Schirp eb6ea9a74f Metric driven code refactoring
Break some classes, rename stuff etc.
2013-01-04 22:16:03 +01:00

55 lines
1.1 KiB
Ruby

module Mutant
class Mutator
class Node
# Mutator for super without parantheses
class ZSuper < self
handle(Rubinius::AST::ZSuper)
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_node(Rubinius::AST::Super, new(Rubinius::AST::ActualArguments))
end
end
# Mutator for super with parantheses
class Super < self
handle(Rubinius::AST::Super)
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_node(Rubinius::AST::ZSuper)
emit_without_block
emit_attribute_mutations(:block) if node.block
emit_attribute_mutations(:arguments)
end
# Emit without block mutation
#
# @return [undefined]
#
# @api private
#
def emit_without_block
dup = dup_node
dup.block = nil
emit(dup)
end
end
end
end
end