Remove orphaned file

This commit is contained in:
Markus Schirp 2014-05-10 14:19:35 +00:00
parent a488045b49
commit 9e0fe8b03b

View file

@ -1,27 +0,0 @@
# encoding: utf-8
module Mutant
class Mutator
class Node
class Literal
# Abstract mutations on dynamic literals
class Dynamic < self
include AbstractType
private
# Emit mutants
#
# @return [undefined]
#
# @api private
#
def dispatch
emit_nil
end
end # Dynamic
end # Literal
end # Node
end # Mutator
end # Mutant