free_mutant/lib/mutant/context.rb

18 lines
328 B
Ruby
Raw Normal View History

module Mutant
# An abstract context where mutations can be appied to.
class Context
include Veritas::Immutable
extend Abstract
# Return root ast for mutated node
#
# @param [Rubinius::AST::Node] node
#
# @return [Rubinis::AST::Script]
#
# @api private
#
abstract :root
end
end