22 lines
305 B
Ruby
22 lines
305 B
Ruby
![]() |
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
|