clang-format: [JS] Contract fewer functions to a single line.
authorDaniel Jasper <djasper@google.com>
Thu, 27 Nov 2014 15:37:42 +0000 (15:37 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 27 Nov 2014 15:37:42 +0000 (15:37 +0000)
commit41368e9e073dc419f62ae016b079a7b0288e4977
tree99332c1fd7df1053872a0642f4749cf2cf03aca5
parent4087432f8b74f9f738604a064c37825dba57b7d1
clang-format: [JS] Contract fewer functions to a single line.

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

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

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