Class: Mutant::Subject

Inherits:
Object
  • Object
show all
Includes:
AbstractType, Adamantium::Flat, Enumerable
Defined in:
lib/mutant/subject.rb,
lib/mutant/subject/method.rb,
lib/mutant/subject/method/instance.rb,
lib/mutant/subject/method/singleton.rb

Overview

Subject of a mutation

Direct Known Subclasses

Method

Defined Under Namespace

Classes: Method

Instance Method Summary collapse

Instance Method Details

#expressionExpression

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return match expression

Returns:



101
# File 'lib/mutant/subject.rb', line 101

abstract_method :expression

#identificationString

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return subject identification

Returns:

  • (String)


56
57
58
# File 'lib/mutant/subject.rb', line 56

def identification
  "#{expression.syntax}:#{source_path}:#{source_line}"
end

#match_expressionsEnumerable<Expression>

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return match expressions

Returns:



109
110
111
# File 'lib/mutant/subject.rb', line 109

def match_expressions
  [expression].concat(context.match_expressions)
end

#mutationsEnumerable<Mutation>

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return mutations

Returns:



13
14
15
16
17
# File 'lib/mutant/subject.rb', line 13

def mutations
  mutations = []
  generate_mutations(mutations)
  mutations
end

#original_rootParser::AST::Node

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return root AST node for original AST ndoe

Returns:

  • (Parser::AST::Node)


90
91
92
# File 'lib/mutant/subject.rb', line 90

def original_root
  root(node)
end

#prepareself

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Prepare the subject for the insertion of mutation

Returns:

  • (self)


36
37
38
# File 'lib/mutant/subject.rb', line 36

def prepare
  self
end

#root(node) ⇒ Parser::AST::Node

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return root AST for node

Parameters:

  • node (Parser::AST::Node)

Returns:

  • (Parser::AST::Node)


80
81
82
# File 'lib/mutant/subject.rb', line 80

def root(node)
  context.root(node)
end

#sourceString

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return source representation of ast

Returns:

  • (String)


67
68
69
# File 'lib/mutant/subject.rb', line 67

def source
  Unparser.unparse(node)
end

#source_lineFixnum

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return source line

Returns:

  • (Fixnum)


46
47
48
# File 'lib/mutant/subject.rb', line 46

def source_line
  node.location.expression.line
end

#source_pathString

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Return source path

Returns:

  • (String)


26
27
28
# File 'lib/mutant/subject.rb', line 26

def source_path
  context.source_path
end