class RuboCop::Cop::Metrics::BlockNesting

def on_new_investigation

def on_new_investigation
  return if processed_source.blank?
  max = cop_config['Max']
  check_nesting_level(processed_source.ast, max, 0)
end