]> granicus.if.org Git - clang/commit
clang-format: [JS] Support alternative operator names as identifiers.
authorDaniel Jasper <djasper@google.com>
Thu, 4 Sep 2014 18:23:42 +0000 (18:23 +0000)
committerDaniel Jasper <djasper@google.com>
Thu, 4 Sep 2014 18:23:42 +0000 (18:23 +0000)
commitbb235c67bc3e99d34c48c776c013f16c293f6000
tree1c68254f568345bc7838a3210fc396d77ba3f514
parentac0e79e22b0eddc1dbbb5ecbea240f059e6be25c
clang-format: [JS] Support alternative operator names as identifiers.

Before:
  not. and . or . not_eq = 1;

After:
  not.and.or.not_eq = 1;

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@217179 91177308-0d34-0410-b5e6-96231b3b80d8
include/clang/Format/Format.h
lib/Format/Format.cpp
tools/clang-format/ClangFormat.cpp
unittests/Format/FormatTestJS.cpp