[PATCH] D70377: clang-format: [JS] tests for async wrapping.
Martin Probst via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Jan 16 02:26:52 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG736a3802124b: clang-format: [JS] tests for async wrapping. (authored by mprobst).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70377/new/
https://reviews.llvm.org/D70377
Files:
clang/unittests/Format/FormatTestJS.cpp
Index: clang/unittests/Format/FormatTestJS.cpp
===================================================================
--- clang/unittests/Format/FormatTestJS.cpp
+++ clang/unittests/Format/FormatTestJS.cpp
@@ -737,6 +737,22 @@
" function a() {\n"
" return 1;\n"
"} \n");
+ // clang-format must not insert breaks between async and function, otherwise
+ // automatic semicolon insertion may trigger (in particular in a class body).
+ verifyFormat("async function\n"
+ "hello(\n"
+ " myparamnameiswaytooloooong) {\n"
+ "}",
+ "async function hello(myparamnameiswaytooloooong) {}",
+ getGoogleJSStyleWithColumns(10));
+ verifyFormat("class C {\n"
+ " async hello(\n"
+ " myparamnameiswaytooloooong) {\n"
+ " }\n"
+ "}",
+ "class C {\n"
+ " async hello(myparamnameiswaytooloooong) {} }",
+ getGoogleJSStyleWithColumns(10));
verifyFormat("async function* f() {\n"
" yield fetch(x);\n"
"}");
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D70377.238435.patch
Type: text/x-patch
Size: 1155 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200116/eccdccb7/attachment.bin>
More information about the cfe-commits
mailing list