]> granicus.if.org Git - clang/commit
clang-format: [JS] Fix spacing in destructuring assignments.
authorDaniel Jasper <djasper@google.com>
Thu, 19 May 2016 07:18:07 +0000 (07:18 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 19 May 2016 07:18:07 +0000 (07:18 +0000)
commit76a6b3e0e1e6dc805aa670d42142ae2bd5008967
tree2413254732978c72d8bc6fac18787f635da35f83
parentb9b27cd4beecd968271978d1bd5b380fcb2e8a31
clang-format: [JS] Fix spacing in destructuring assignments.

Before:
  const[a, b, c] = [1, 2, 3];

After:
  const [a, b, c] = [1, 2, 3];

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@270029 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Format/TokenAnnotator.cpp
unittests/Format/FormatTestJS.cpp