clang-format: [JS] Support arrays of object-type literals.
authorDaniel Jasper <djasper@google.com>
Tue, 22 Dec 2015 15:48:35 +0000 (15:48 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 22 Dec 2015 15:48:35 +0000 (15:48 +0000)
commitb542f9f1442569d6247877ba8bfab51008544e9f
tree5e0e49ce6dc41364c4e79803a86b8df3117a438f
parente2deb59fa3e1e13991b0fe370781d92913767717
clang-format: [JS] Support arrays of object-type literals.

Before:
  interface I {
    o: {}
    [];
  }

After:
  interface I {
    o: {}[];
  }

llvm-svn: 256247
clang/lib/Format/UnwrappedLineParser.cpp
clang/unittests/Format/FormatTestJS.cpp