]> granicus.if.org Git - clang/commitdiff
clang-format: [JS] post-fix non-null assertion operator.
authorMartin Probst <martin@probst.io>
Mon, 13 Jun 2016 00:49:54 +0000 (00:49 +0000)
committerMartin Probst <martin@probst.io>
Mon, 13 Jun 2016 00:49:54 +0000 (00:49 +0000)
Summary:
Do not insert whitespace preceding the "!" postfix operator. This is an
incomplete fix, but should cover common usage.

Reviewers: djasper

Subscribers: cfe-commits, klimek

Differential Revision: http://reviews.llvm.org/D21204

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@272524 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Format/TokenAnnotator.cpp
unittests/Format/FormatTestJS.cpp

index b469cfad2bbc6cc1cc08d5f0dcc6d40c04561e0b..13bda71127ffc56caf509033fee58d0e32ec42f0 100644 (file)
@@ -2126,6 +2126,11 @@ bool TokenAnnotator::spaceRequiredBefore(const AnnotatedLine &Line,
       // locations that should have whitespace following are identified by the
       // above set of follower tokens.
       return false;
+    // Postfix non-null assertion operator, as in `foo!.bar()`.
+    if (Right.is(tok::exclaim) && (Left.isOneOf(tok::identifier, tok::r_paren,
+                                                tok::r_square, tok::r_brace) ||
+                                   Left.Tok.isLiteral()))
+      return false;
   } else if (Style.Language == FormatStyle::LK_Java) {
     if (Left.is(tok::r_square) && Right.is(tok::l_brace))
       return true;
index 3d9677922cffdfc6e838147a42c09bbf7823f21e..ffcc34d971f63be53744e9a3798c66469bc6cb39 100644 (file)
@@ -1293,5 +1293,14 @@ TEST_F(FormatTestJS, SupportShebangLines) {
                "var x   =  hello();");
 }
 
+TEST_F(FormatTestJS, NonNullAssertionOperator) {
+  verifyFormat("let x = foo!.bar();\n");
+  verifyFormat("let x = foo ? bar! : baz;\n");
+  verifyFormat("let x = !foo;\n");
+  verifyFormat("let x = foo[0]!;\n");
+  verifyFormat("let x = (foo)!;\n");
+  verifyFormat("let x = {foo: 1}!;\n");
+}
+
 } // end namespace tooling
 } // end namespace clang