free_mutant/lib/mutant/mutator/node/literal.rb
2013-09-07 23:57:46 -07:00

12 lines
231 B
Ruby

# encoding: utf-8
module Mutant
class Mutator
class Node
# Abstract mutator for literal AST nodes
class Literal < self
include AbstractType
end # Literal
end # Node
end # Mutator
end # Mutant