52 lines
1.6 KiB
Ruby
52 lines
1.6 KiB
Ruby
module Mutant
|
|
class Mutator
|
|
class Node
|
|
# Mutator that does not do mutations on ast
|
|
class Noop < self
|
|
|
|
# Literal references to self do not need to be mutated?
|
|
handle(Rubinius::AST::Self)
|
|
|
|
# Currently unhandled node classes. Feel free to contribute your mutator!
|
|
handle(Rubinius::AST::ElementAssignment)
|
|
handle(Rubinius::AST::AttributeAssignment)
|
|
handle(Rubinius::AST::Not)
|
|
handle(Rubinius::AST::And)
|
|
handle(Rubinius::AST::Defined)
|
|
handle(Rubinius::AST::Super)
|
|
handle(Rubinius::AST::Match3)
|
|
handle(Rubinius::AST::ZSuper)
|
|
handle(Rubinius::AST::MultipleAssignment)
|
|
handle(Rubinius::AST::ScopedConstant)
|
|
handle(Rubinius::AST::LocalVariableAssignment)
|
|
handle(Rubinius::AST::LocalVariableAccess)
|
|
handle(Rubinius::AST::InstanceVariableAssignment)
|
|
handle(Rubinius::AST::InstanceVariableAccess)
|
|
handle(Rubinius::AST::GlobalVariableAssignment)
|
|
handle(Rubinius::AST::GlobalVariableAccess)
|
|
handle(Rubinius::AST::ToplevelConstant)
|
|
handle(Rubinius::AST::Ensure)
|
|
handle(Rubinius::AST::Rescue)
|
|
handle(Rubinius::AST::DynamicString)
|
|
handle(Rubinius::AST::DynamicSymbol)
|
|
handle(Rubinius::AST::DynamicRegex)
|
|
handle(Rubinius::AST::OpAssignOr19)
|
|
handle(Rubinius::AST::OpAssign1)
|
|
handle(Rubinius::AST::Or)
|
|
handle(Rubinius::AST::ConstantAccess)
|
|
|
|
private
|
|
|
|
# Emit mutations
|
|
#
|
|
# @return [undefined]
|
|
#
|
|
# @api private
|
|
#
|
|
def dispatch
|
|
# noop
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|