# File lib/heckle.rb, line 556
  def should_heckle?(exp)
    return false unless method == method_name
    return false if node_count[exp] <= mutation_count[exp]
    key = exp.first.to_sym

    mutatees.include?(key) && mutatees[key].include?(exp) && !already_mutated?
  end