From 9926abb91fc8eda6d5a40dd59b73d498eabb81d2 Mon Sep 17 00:00:00 2001 From: Martin Probst Date: Tue, 1 Aug 2017 17:42:16 +0000 Subject: clang-format: [JS] no whitespace between typeof operator and l_paren. llvm-svn: 309713 --- clang/unittests/Format/FormatTestJS.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'clang/unittests/Format/FormatTestJS.cpp') diff --git a/clang/unittests/Format/FormatTestJS.cpp b/clang/unittests/Format/FormatTestJS.cpp index 02d608eadfe..06f096a1d62 100644 --- a/clang/unittests/Format/FormatTestJS.cpp +++ b/clang/unittests/Format/FormatTestJS.cpp @@ -263,6 +263,7 @@ TEST_F(FormatTestJS, ReservedWordsParenthesized) { // All of these are statements using the keyword, not function calls. verifyFormat("throw (x + y);\n" "await (await x).y;\n" + "typeof (x) === 'string';\n" "void (0);\n" "delete (x.y);\n" "return (x);\n"); -- cgit v1.2.3