Add noop mutator for Rubinius::AST::Self

This commit is contained in:
Markus Schirp 2012-07-31 22:03:36 +02:00
parent f318a7a68e
commit 9c08fad7ea

View file

@ -0,0 +1,21 @@
module Mutant
class Mutator
# Mutator for Rubinius::AST::Self
class Self < Mutator
handle(Rubinius::AST::Self)
private
# Emit mutations
#
# @return [undefined]
#
# @api private
#
def dispatch
# noop
end
end
end
end