clang-format: [JS] Fix incorrect space when "as" is used as identifier.
authorDaniel Jasper <djasper@google.com>
Tue, 1 Nov 2016 06:23:10 +0000 (06:23 +0000)
committerDaniel Jasper <djasper@google.com>
Tue, 1 Nov 2016 06:23:10 +0000 (06:23 +0000)
commitb559b43802d040888f5cf4931d05fc12a18c8e81
tree9c90d476143dffa89ff3e86adb9679998dbb5fd8
parent3ade3be2a1e97fdac987638cf9470930f61f49d5
clang-format: [JS] Fix incorrect space when "as" is used as identifier.

Before:
  aaaaa.as ();

After:
  aaaaa.as();

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