clang-format: [JS] Try not to break in container literals.
authorDaniel Jasper <djasper@google.com>
Thu, 27 Nov 2014 15:24:48 +0000 (15:24 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 27 Nov 2014 15:24:48 +0000 (15:24 +0000)
commit4087432f8b74f9f738604a064c37825dba57b7d1
treeb8cdf63b44a7a07ee4d61163249a1334f066ed02
parent0d86c7623f6d0a338366b6e0ebdf9bd78c616278
clang-format: [JS] Try not to break in container literals.

Before:
  var obj = {
    fooooooooo:
        function(x) { return x.zIsTooLongForOneLineWithTheDeclarationLine(); }
  };

After:
  var obj = {
    fooooooooo: function(x) {
      return x.zIsTooLongForOneLineWithTheDeclarationLine();
    }
  };

llvm-svn: 222892
clang/lib/Format/TokenAnnotator.cpp
clang/unittests/Format/FormatTestJS.cpp