diff options
author | Daniel Jasper <djasper@google.com> | 2015-06-02 15:31:37 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2015-06-02 15:31:37 +0000 |
commit | 1feab0f95ea0202f95a555a86f5dd60db4a8a5c8 (patch) | |
tree | 88879d8c065059459f7b63fc92661c52c6c511bb | |
parent | f85028359dd5a25deadc497de3c314612b1f404a (diff) | |
download | bcm5719-llvm-1feab0f95ea0202f95a555a86f5dd60db4a8a5c8.tar.gz bcm5719-llvm-1feab0f95ea0202f95a555a86f5dd60db4a8a5c8.zip |
clang-format: Don't try to detect C++ lambdas in other languages.
llvm-svn: 238845
-rw-r--r-- | clang/lib/Format/UnwrappedLineParser.cpp | 4 | ||||
-rw-r--r-- | clang/unittests/Format/FormatTestJS.cpp | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/clang/lib/Format/UnwrappedLineParser.cpp b/clang/lib/Format/UnwrappedLineParser.cpp index 83cbe7642cb..826b40d3f83 100644 --- a/clang/lib/Format/UnwrappedLineParser.cpp +++ b/clang/lib/Format/UnwrappedLineParser.cpp @@ -911,6 +911,10 @@ void UnwrappedLineParser::parseStructuralElement() { } bool UnwrappedLineParser::tryToParseLambda() { + if (Style.Language != FormatStyle::LK_Cpp) { + nextToken(); + return false; + } // FIXME: This is a dirty way to access the previous token. Find a better // solution. if (!Line->Tokens.empty() && diff --git a/clang/unittests/Format/FormatTestJS.cpp b/clang/unittests/Format/FormatTestJS.cpp index a18d35b034a..6550863244f 100644 --- a/clang/unittests/Format/FormatTestJS.cpp +++ b/clang/unittests/Format/FormatTestJS.cpp @@ -266,6 +266,8 @@ TEST_F(FormatTestJS, ArrayLiterals) { " bbbbbbbbbbbbbbbbbbbbbbbbbbb,\n" " ccccccccccccccccccccccccccc\n" "]);"); + + verifyFormat("someFunction([], {a: a});"); } TEST_F(FormatTestJS, FunctionLiterals) { |