]> granicus.if.org Git - clang/commit
clang-format: [JS] space between pseudo keywords and template literals.
authorMartin Probst <martin@probst.io>
Mon, 3 Jul 2017 14:29:13 +0000 (14:29 +0000)
committerMartin Probst <martin@probst.io>
Mon, 3 Jul 2017 14:29:13 +0000 (14:29 +0000)
commit71d3b5cd916106005ef23467e3f6c7fbca7bc499
treefd8b90b7ad407a7248ecece059e8183fdaa4c5a9
parent0305311a4e50b9a1d54a9a1d050d93754f26f9cf
clang-format: [JS] space between pseudo keywords and template literals.

Summary:
Before:
    yield`foo`;

After:
    yield `foo`;

Reviewers: djasper

Subscribers: klimek

Differential Revision: https://reviews.llvm.org/D34938

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