Skip to content

Commit 2083f31

Browse files
committedMay 9, 2017
clang-format: [JS] keep triple slash directives intact.
Summary: TypeScript uses triple slash directives of the form: /// <reference path="..."/> For various non-source instructions that should not be wrapped. Reference: https://www.typescriptlang.org/docs/handbook/triple-slash-directives.html Reviewers: djasper Subscribers: cfe-commits, klimek Differential Revision: https://reviews.llvm.org/D32997 llvm-svn: 302523
1 parent 7aedf33 commit 2083f31

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed
 

‎clang/lib/Format/Format.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -637,9 +637,10 @@ FormatStyle getGoogleStyle(FormatStyle::LanguageKind Language) {
637637
GoogleStyle.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty;
638638
GoogleStyle.AlwaysBreakBeforeMultilineStrings = false;
639639
GoogleStyle.BreakBeforeTernaryOperators = false;
640-
// taze:, @tag followed by { for a lot of JSDoc tags, and @see, which is
641-
// commonly followed by overlong URLs.
642-
GoogleStyle.CommentPragmas = "(taze:|(@[A-Za-z_0-9-]+[ \\t]*{)|@see)";
640+
// taze:, triple slash directives (`/// <...`), @tag followed by { for a lot
641+
// of JSDoc tags, and @see, which is commonly followed by overlong URLs.
642+
GoogleStyle.CommentPragmas =
643+
"(taze:|^/[ \t]*<|(@[A-Za-z_0-9-]+[ \\t]*{)|@see)";
643644
GoogleStyle.MaxEmptyLinesToKeep = 3;
644645
GoogleStyle.NamespaceIndentation = FormatStyle::NI_All;
645646
GoogleStyle.SpacesInContainerLiterals = false;

‎clang/unittests/Format/FormatTestJS.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -1785,6 +1785,7 @@ TEST_F(FormatTestJS, ImportComments) {
17851785
verifyFormat("import {x} from 'x'; // from some location",
17861786
getGoogleJSStyleWithColumns(25));
17871787
verifyFormat("// taze: x from 'location'", getGoogleJSStyleWithColumns(10));
1788+
verifyFormat("/// <reference path=\"some/location\" />", getGoogleJSStyleWithColumns(10));
17881789
}
17891790

17901791
TEST_F(FormatTestJS, Exponentiation) {

0 commit comments

Comments
 (0)
Please sign in to comment.