module RuboCop::Cop::SpaceBeforePunctuation

def each_missing_space(tokens)

def each_missing_space(tokens)
  tokens.each_cons(2) do |token1, token2|
    next unless kind(token2)
    next unless space_missing?(token1, token2)
    next if space_required_after?(token1)
    pos_before_punctuation = range_between(token1.end_pos, token2.begin_pos)
    yield token2, pos_before_punctuation
  end
end

def on_new_investigation

def on_new_investigation
  each_missing_space(processed_source.sorted_tokens) do |token, pos_before|
    add_offense(pos_before, message: format(MSG, token: kind(token))) do |corrector|
      PunctuationCorrector.remove_space(corrector, pos_before)
    end
  end
end

def space_missing?(token1, token2)

def space_missing?(token1, token2)
  same_line?(token1, token2) && token2.begin_pos > token1.end_pos
end

def space_required_after?(token)

def space_required_after?(token)
  token.left_curly_brace? && space_required_after_lcurly?
end

def space_required_after_lcurly?

def space_required_after_lcurly?
  cfg = config.for_cop('Layout/SpaceInsideBlockBraces')
  style = cfg['EnforcedStyle'] || 'space'
  style == 'space'
end