summaryrefslogtreecommitdiffstats
path: root/clang/unittests/Format
diff options
context:
space:
mode:
authorMartin Probst <martin@probst.io>2016-08-19 14:35:01 +0000
committerMartin Probst <martin@probst.io>2016-08-19 14:35:01 +0000
commite1e12a73d74ce73c6e2c5994a598f6bb3bdb4bcc (patch)
tree895bfe6008b195bc8ebd66b972bf8f4499196957 /clang/unittests/Format
parent66dd6797e81f80a89c204eb9fb3d2c266e3665af (diff)
downloadbcm5719-llvm-e1e12a73d74ce73c6e2c5994a598f6bb3bdb4bcc.tar.gz
bcm5719-llvm-e1e12a73d74ce73c6e2c5994a598f6bb3bdb4bcc.zip
clang-format: [JS] handle object literals with casts.
Summary: E.g. `{a: 1} as b`. Reviewers: djasper Subscribers: cfe-commits, klimek Differential Revision: https://reviews.llvm.org/D23714 llvm-svn: 279250
Diffstat (limited to 'clang/unittests/Format')
-rw-r--r--clang/unittests/Format/FormatTestJS.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/unittests/Format/FormatTestJS.cpp b/clang/unittests/Format/FormatTestJS.cpp
index 2819383a358..838caffc708 100644
--- a/clang/unittests/Format/FormatTestJS.cpp
+++ b/clang/unittests/Format/FormatTestJS.cpp
@@ -1218,6 +1218,7 @@ TEST_F(FormatTestJS, CastSyntax) {
" 1, //\n"
" 2\n"
"];");
+ verifyFormat("var x = [{x: 1} as type];");
}
TEST_F(FormatTestJS, TypeArguments) {
OpenPOWER on IntegriCloud