Class: Mutant::Mutator::Node::Define::Instance

Inherits:
Mutant::Mutator::Node::Define show all
Defined in:
lib/mutant/mutator/node/define.rb

Overview

Mutator for instance method defines

Constant Summary

Constants inherited from Mutant::Mutator::Node

TAUTOLOGY

Constants included from AST::Nodes

AST::Nodes::N_EMPTY, AST::Nodes::N_EMPTY_SUPER, AST::Nodes::N_FALSE, AST::Nodes::N_INFINITY, AST::Nodes::N_NAN, AST::Nodes::N_NEGATIVE_INFINITY, AST::Nodes::N_NIL, AST::Nodes::N_RAISE, AST::Nodes::N_SELF, AST::Nodes::N_TRUE, AST::Nodes::N_ZSUPER

Constants inherited from Mutant::Mutator

REGISTRY

Instance Attribute Summary

Attributes inherited from Mutant::Mutator

#input, #parent

Instance Method Summary collapse

Methods included from AST::NamedChildren

included

Methods inherited from Mutant::Mutator

each

Instance Method Details

#dispatchObject



71
72
73
74
# File 'lib/mutant/mutator/node/define.rb', line 71

def dispatch
  super()
  emit_remove_method
end

#emit_remove_methodundefined

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.

Remove an instance method

Returns:

  • (undefined)


81
82
83
# File 'lib/mutant/mutator/node/define.rb', line 81

def emit_remove_method
  emit(s(:send, nil, :remove_method, s(:sym, name)))
end