Class: Mutant::Mutation

Inherits:
Object
  • Object
show all
Includes:
AbstractType, Adamantium::Flat
Defined in:
lib/mutant/mutation.rb,
lib/mutant/mutation/evil.rb,
lib/mutant/mutation/neutral.rb

Overview

Represent a mutated node with its subject

Direct Known Subclasses

Evil, Neutral

Defined Under Namespace

Classes: Evil, Neutral

Instance Method Summary collapse

Instance Method Details

#codeString

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 mutation code

Returns:

  • (String)


66
67
68
# File 'lib/mutant/mutation.rb', line 66

def code
  sha1[0..4]
end

#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 identification

Returns:

  • (String)


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

def identification
  "#{subject.identification}:#{code}"
end

#insertself

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.

Insert mutated node

FIXME: Cache subject visibility in a better way! Ideally dont mutate it

implicitly. Also subject.public? should NOT be a public interface it
is a detail of method mutations.

Returns:

  • (self)


44
45
46
47
48
# File 'lib/mutant/mutation.rb', line 44

def insert
  subject.public?
  Loader::Eval.call(root, subject)
  self
end

#original_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 original source

Returns:

  • (String)


88
89
90
# File 'lib/mutant/mutation.rb', line 88

def original_source
  subject.source
end

#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 mutated root node

Returns:

  • (Parser::AST::Node)


15
16
17
# File 'lib/mutant/mutation.rb', line 15

def root
  subject.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

Returns:

  • (String)


77
78
79
# File 'lib/mutant/mutation.rb', line 77

def source
  Unparser.unparse(node)
end

#success?true, false

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.

Test if killer is successful

Parameters:

Returns:

  • (true)

    if killer is successful

  • (false)

    otherwise



32
# File 'lib/mutant/mutation.rb', line 32

abstract_method :success?