This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang-tools-extra.
from 2c5f5d22 [clangd] Stop marshalling/requiring FormattingOptions. We nev [...] new e449717c [clangd] Revamp textDocument/onTypeFormatting.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: clangd/CMakeLists.txt | 1 + clangd/ClangdLSPServer.cpp | 8 +- clangd/ClangdServer.cpp | 26 +-- clangd/ClangdServer.h | 7 +- clangd/Format.cpp | 377 +++++++++++++++++++++++++++++++++++++ clangd/Format.h | 56 ++++++ clangd/test/formatting.test | 31 +-- clangd/test/initialize-params.test | 2 +- clangd/unittests/CMakeLists.txt | 1 + clangd/unittests/FormatTests.cpp | 308 ++++++++++++++++++++++++++++++ 10 files changed, 774 insertions(+), 43 deletions(-) create mode 100644 clangd/Format.cpp create mode 100644 clangd/Format.h create mode 100644 clangd/unittests/FormatTests.cpp