From 44998bf29b7852b15e48aea8f58d980e65d0a944 Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Sat, 5 Jan 2013 00:41:05 +0100 Subject: [PATCH] Remove unused file --- lib/mutant/mutator/node/arguments.rb | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 lib/mutant/mutator/node/arguments.rb diff --git a/lib/mutant/mutator/node/arguments.rb b/lib/mutant/mutator/node/arguments.rb deleted file mode 100644 index 7b2e6477..00000000 --- a/lib/mutant/mutator/node/arguments.rb +++ /dev/null @@ -1,25 +0,0 @@ -module Mutant - class Mutator - class Node - - # Mutator for arguments - class Arguments < self - - handle(Rubinius::AST::ActualArguments) - - private - - # Emit mutations - # - # @return [undefined] - # - # @api private - # - def dispatch - emit_attribute_mutations(:array) - end - - end - end - end -end