Skip to content

Commit 19c7de0

Browse files
committedApr 26, 2017
clang-format: [JS] prevent wraps before class members.
Summary: In JavaScript/TypeScript, class member definitions that use modifiers can be subject to Automatic Semicolon Insertion (ASI). For example, "class X { get \n foo }" defines a property called "get" and a property called "foo", both with no type annotation. This change prevents wrapping after the modifier keywords (visibility modifiers, static, get and set) to prevent accidental ASI. Reviewers: djasper, bkramer Subscribers: klimek, cfe-commits Differential Revision: https://reviews.llvm.org/D32531 llvm-svn: 301397
1 parent e6a7708 commit 19c7de0

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed
 

‎clang/lib/Format/FormatToken.h

+4
Original file line numberDiff line numberDiff line change
@@ -617,10 +617,12 @@ struct AdditionalKeywords {
617617
kw_finally = &IdentTable.get("finally");
618618
kw_from = &IdentTable.get("from");
619619
kw_function = &IdentTable.get("function");
620+
kw_get = &IdentTable.get("get");
620621
kw_import = &IdentTable.get("import");
621622
kw_is = &IdentTable.get("is");
622623
kw_let = &IdentTable.get("let");
623624
kw_module = &IdentTable.get("module");
625+
kw_set = &IdentTable.get("set");
624626
kw_type = &IdentTable.get("type");
625627
kw_var = &IdentTable.get("var");
626628
kw_yield = &IdentTable.get("yield");
@@ -675,10 +677,12 @@ struct AdditionalKeywords {
675677
IdentifierInfo *kw_finally;
676678
IdentifierInfo *kw_from;
677679
IdentifierInfo *kw_function;
680+
IdentifierInfo *kw_get;
678681
IdentifierInfo *kw_import;
679682
IdentifierInfo *kw_is;
680683
IdentifierInfo *kw_let;
681684
IdentifierInfo *kw_module;
685+
IdentifierInfo *kw_set;
682686
IdentifierInfo *kw_type;
683687
IdentifierInfo *kw_var;
684688
IdentifierInfo *kw_yield;

‎clang/lib/Format/TokenAnnotator.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -2543,7 +2543,11 @@ bool TokenAnnotator::canBreakBefore(const AnnotatedLine &Line,
25432543
if (NonComment &&
25442544
NonComment->isOneOf(tok::kw_return, tok::kw_continue, tok::kw_break,
25452545
tok::kw_throw, Keywords.kw_interface,
2546-
Keywords.kw_type))
2546+
Keywords.kw_type, tok::kw_static, tok::kw_public,
2547+
tok::kw_private, tok::kw_protected,
2548+
Keywords.kw_abstract,
2549+
Keywords.kw_get,
2550+
Keywords.kw_set))
25472551
return false; // Otherwise a semicolon is inserted.
25482552
if (Left.is(TT_JsFatArrow) && Right.is(tok::l_brace))
25492553
return false;

‎clang/unittests/Format/FormatTestJS.cpp

+19
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,25 @@ TEST_F(FormatTestJS, MethodsInObjectLiterals) {
318318
"};");
319319
}
320320

321+
TEST_F(FormatTestJS, GettersSettersVisibilityKeywords) {
322+
// Don't break after "protected"
323+
verifyFormat("class X {\n"
324+
" protected get getter():\n"
325+
" number {\n"
326+
" return 1;\n"
327+
" }\n"
328+
"}",
329+
getGoogleJSStyleWithColumns(12));
330+
// Don't break after "get"
331+
verifyFormat("class X {\n"
332+
" protected get someReallyLongGetterName():\n"
333+
" number {\n"
334+
" return 1;\n"
335+
" }\n"
336+
"}",
337+
getGoogleJSStyleWithColumns(40));
338+
}
339+
321340
TEST_F(FormatTestJS, SpacesInContainerLiterals) {
322341
verifyFormat("var arr = [1, 2, 3];");
323342
verifyFormat("f({a: 1, b: 2, c: 3});");

0 commit comments

Comments
 (0)
Please sign in to comment.