Add noop mutator for Rubinius::AST::Self
This commit is contained in:
parent
f318a7a68e
commit
9c08fad7ea
1 changed files with 21 additions and 0 deletions
21
lib/mutant/mutator/self.rb
Normal file
21
lib/mutant/mutator/self.rb
Normal 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
|
Loading…
Reference in a new issue