free_mutant/lib/mutant/context.rb
Tim Chambers fe72c94b94 Fix miscellaneous typos
Mostly in comments and documentation, but one method name was corrected to match documentation.
2014-08-07 09:00:31 -07:00

25 lines
491 B
Ruby

module Mutant
# An abstract context where mutations can be applied to.
class Context
include Adamantium::Flat, AbstractType, Concord::Public.new(:source_path)
# Return root ast node
#
# @param [Parser::AST::Node] node
#
# @return [Parser::AST::Node]
#
# @api private
#
abstract_method :root
# Return identification
#
# @return [String]
#
# @api private
#
abstract_method :identification
end # Context
end # Mutant