module RuboCop::Cop::SpaceBeforePunctuation

def space_missing?(token1, token2)

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