module RuboCop::Cop::MultilineLiteralBraceLayout

def closing_brace_on_same_line?(node)

against implicit and empty literals.
This method depends on the fact that we have guarded
def closing_brace_on_same_line?(node)
  node.loc.end.line == children(node).last.last_line
end