clang-format: [JS] Fix space when for is used as regular identifier.
authorDaniel Jasper <djasper@google.com>
Tue, 1 Nov 2016 06:22:54 +0000 (06:22 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 1 Nov 2016 06:22:54 +0000 (06:22 +0000)
commit4d67dd77a1a0109cce42ab4e7650051449075e1d
tree961306224377651f311f08c5b09fffc738fb12c9
parentb848eaf52263f64c6b7b7f2bba11c17bf00316bf
clang-format: [JS] Fix space when for is used as regular identifier.

Before:
  x.for () = 1;

After:
  x.for() = 1;

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