diff options
author | Daniel Jasper <djasper@google.com> | 2016-02-03 05:33:44 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2016-02-03 05:33:44 +0000 |
commit | 8737930cac339ea658edec2be0c53170192a7845 (patch) | |
tree | e4e77af3e12a58731afb2289ba6661662f8dcc4c /clang/unittests/Format/FormatTestJS.cpp | |
parent | 305bf59335e741fca9e1b9394900cdcd2ca98664 (diff) | |
download | bcm5719-llvm-8737930cac339ea658edec2be0c53170192a7845.tar.gz bcm5719-llvm-8737930cac339ea658edec2be0c53170192a7845.zip |
clang-format: [JS/TypeScript] Support "enum" as an optional property name, too.
Before:
enum?: string
[];
After:
enum?: string[];
llvm-svn: 259628
Diffstat (limited to 'clang/unittests/Format/FormatTestJS.cpp')
-rw-r--r-- | clang/unittests/Format/FormatTestJS.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/unittests/Format/FormatTestJS.cpp b/clang/unittests/Format/FormatTestJS.cpp index 58070411f1f..7f25d5921b3 100644 --- a/clang/unittests/Format/FormatTestJS.cpp +++ b/clang/unittests/Format/FormatTestJS.cpp @@ -804,6 +804,7 @@ TEST_F(FormatTestJS, InterfaceDeclarations) { verifyFormat("interface I {\n" " x: string;\n" " enum: string[];\n" + " enum?: string[];\n" "}\n" "var y;"); // Ensure that state is reset after parsing the interface. |