xref: /llvm-project/clang/unittests/Format/FormatTestJS.cpp (revision 7e0f25b28d56ee2c568c7bcdc3fcc90182800eab)
1 //===- unittest/Format/FormatTestJS.cpp - Formatting unit tests for JS ----===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #include "FormatTestUtils.h"
11 #include "clang/Format/Format.h"
12 #include "llvm/Support/Debug.h"
13 #include "gtest/gtest.h"
14 
15 #define DEBUG_TYPE "format-test"
16 
17 namespace clang {
18 namespace format {
19 
20 class FormatTestJS : public ::testing::Test {
21 protected:
22   static std::string format(llvm::StringRef Code, unsigned Offset,
23                             unsigned Length, const FormatStyle &Style) {
24     DEBUG(llvm::errs() << "---\n");
25     DEBUG(llvm::errs() << Code << "\n\n");
26     std::vector<tooling::Range> Ranges(1, tooling::Range(Offset, Length));
27     FormattingAttemptStatus Status;
28     tooling::Replacements Replaces =
29         reformat(Style, Code, Ranges, "<stdin>", &Status);
30     EXPECT_TRUE(Status.FormatComplete);
31     auto Result = applyAllReplacements(Code, Replaces);
32     EXPECT_TRUE(static_cast<bool>(Result));
33     DEBUG(llvm::errs() << "\n" << *Result << "\n\n");
34     return *Result;
35   }
36 
37   static std::string format(
38       llvm::StringRef Code,
39       const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_JavaScript)) {
40     return format(Code, 0, Code.size(), Style);
41   }
42 
43   static FormatStyle getGoogleJSStyleWithColumns(unsigned ColumnLimit) {
44     FormatStyle Style = getGoogleStyle(FormatStyle::LK_JavaScript);
45     Style.ColumnLimit = ColumnLimit;
46     return Style;
47   }
48 
49   static void verifyFormat(
50       llvm::StringRef Code,
51       const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_JavaScript)) {
52     std::string Result = format(test::messUp(Code), Style);
53     EXPECT_EQ(Code.str(), Result) << "Formatted:\n" << Result;
54   }
55 
56   static void verifyFormat(
57       llvm::StringRef Expected,
58       llvm::StringRef Code,
59       const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_JavaScript)) {
60     std::string Result = format(Code, Style);
61     EXPECT_EQ(Expected.str(), Result) << "Formatted:\n" << Result;
62   }
63 };
64 
65 TEST_F(FormatTestJS, BlockComments) {
66   verifyFormat("/* aaaaaaaaaaaaa */ aaaaaaaaaaaaaaaaaaaaaaaaaaa(\n"
67                "    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa);");
68   // Breaks after a single line block comment.
69   EXPECT_EQ("aaaaa = bbbb.ccccccccccccccc(\n"
70             "    /** @type_{!cccc.rrrrrrr.MMMMMMMMMMMM.LLLLLLLLLLL.lala} */\n"
71             "    mediaMessage);",
72             format("aaaaa = bbbb.ccccccccccccccc(\n"
73                    "    /** "
74                    "@type_{!cccc.rrrrrrr.MMMMMMMMMMMM.LLLLLLLLLLL.lala} */ "
75                    "mediaMessage);",
76                    getGoogleJSStyleWithColumns(70)));
77   // Breaks after a multiline block comment.
78   EXPECT_EQ(
79       "aaaaa = bbbb.ccccccccccccccc(\n"
80       "    /**\n"
81       "     * @type_{!cccc.rrrrrrr.MMMMMMMMMMMM.LLLLLLLLLLL.lala}\n"
82       "     */\n"
83       "    mediaMessage);",
84       format("aaaaa = bbbb.ccccccccccccccc(\n"
85              "    /**\n"
86              "     * @type_{!cccc.rrrrrrr.MMMMMMMMMMMM.LLLLLLLLLLL.lala}\n"
87              "     */ mediaMessage);",
88              getGoogleJSStyleWithColumns(70)));
89 }
90 
91 TEST_F(FormatTestJS, JSDocComments) {
92   // Break the first line of a multiline jsdoc comment.
93   EXPECT_EQ("/**\n"
94             " * jsdoc line 1\n"
95             " * jsdoc line 2\n"
96             " */",
97             format("/** jsdoc line 1\n"
98                    " * jsdoc line 2\n"
99                    " */",
100                    getGoogleJSStyleWithColumns(20)));
101   // Both break after '/**' and break the line itself.
102   EXPECT_EQ("/**\n"
103             " * jsdoc line long\n"
104             " * long jsdoc line 2\n"
105             " */",
106             format("/** jsdoc line long long\n"
107                    " * jsdoc line 2\n"
108                    " */",
109                    getGoogleJSStyleWithColumns(20)));
110   // Break a short first line if the ending '*/' is on a newline.
111   EXPECT_EQ("/**\n"
112             " * jsdoc line 1\n"
113             " */",
114             format("/** jsdoc line 1\n"
115                    " */", getGoogleJSStyleWithColumns(20)));
116   // Don't break the first line of a short single line jsdoc comment.
117   EXPECT_EQ("/** jsdoc line 1 */",
118             format("/** jsdoc line 1 */", getGoogleJSStyleWithColumns(20)));
119   // Don't break the first line of a single line jsdoc comment if it just fits
120   // the column limit.
121   EXPECT_EQ("/** jsdoc line 12 */",
122             format("/** jsdoc line 12 */", getGoogleJSStyleWithColumns(20)));
123   // Don't break after '/**' and before '*/' if there is no space between
124   // '/**' and the content.
125   EXPECT_EQ(
126       "/*** nonjsdoc long\n"
127       " * line */",
128       format("/*** nonjsdoc long line */", getGoogleJSStyleWithColumns(20)));
129   EXPECT_EQ(
130       "/**strange long long\n"
131       " * line */",
132       format("/**strange long long line */", getGoogleJSStyleWithColumns(20)));
133   // Break the first line of a single line jsdoc comment if it just exceeds the
134   // column limit.
135   EXPECT_EQ("/**\n"
136             " * jsdoc line 123\n"
137             " */",
138             format("/** jsdoc line 123 */", getGoogleJSStyleWithColumns(20)));
139   // Break also if the leading indent of the first line is more than 1 column.
140   EXPECT_EQ("/**\n"
141             " * jsdoc line 123\n"
142             " */",
143             format("/**  jsdoc line 123 */", getGoogleJSStyleWithColumns(20)));
144   // Break also if the leading indent of the first line is more than 1 column.
145   EXPECT_EQ("/**\n"
146             " * jsdoc line 123\n"
147             " */",
148             format("/**   jsdoc line 123 */", getGoogleJSStyleWithColumns(20)));
149   // Break after the content of the last line.
150   EXPECT_EQ("/**\n"
151             " * line 1\n"
152             " * line 2\n"
153             " */",
154             format("/**\n"
155                    " * line 1\n"
156                    " * line 2 */",
157                    getGoogleJSStyleWithColumns(20)));
158   // Break both the content and after the content of the last line.
159   EXPECT_EQ("/**\n"
160             " * line 1\n"
161             " * line long long\n"
162             " * long\n"
163             " */",
164             format("/**\n"
165                    " * line 1\n"
166                    " * line long long long */",
167                    getGoogleJSStyleWithColumns(20)));
168 
169   // The comment block gets indented.
170   EXPECT_EQ("function f() {\n"
171             "  /**\n"
172             "   * comment about\n"
173             "   * x\n"
174             "   */\n"
175             "  var x = 1;\n"
176             "}",
177             format("function f() {\n"
178                    "/** comment about x */\n"
179                    "var x = 1;\n"
180                    "}",
181                    getGoogleJSStyleWithColumns(20)));
182 
183   // Don't break the first line of a single line short jsdoc comment pragma.
184   EXPECT_EQ("/** @returns j */",
185             format("/** @returns j */",
186                    getGoogleJSStyleWithColumns(20)));
187 
188   // Break a single line long jsdoc comment pragma.
189   EXPECT_EQ("/**\n"
190             " * @returns {string} jsdoc line 12\n"
191             " */",
192             format("/** @returns {string} jsdoc line 12 */",
193                    getGoogleJSStyleWithColumns(20)));
194 
195   EXPECT_EQ("/**\n"
196             " * @returns {string} jsdoc line 12\n"
197             " */",
198             format("/** @returns {string} jsdoc line 12  */",
199                    getGoogleJSStyleWithColumns(20)));
200 
201   EXPECT_EQ("/**\n"
202             " * @returns {string} jsdoc line 12\n"
203             " */",
204             format("/** @returns {string} jsdoc line 12*/",
205                    getGoogleJSStyleWithColumns(20)));
206 
207   // Fix a multiline jsdoc comment ending in a comment pragma.
208   EXPECT_EQ("/**\n"
209             " * line 1\n"
210             " * line 2\n"
211             " * @returns {string} jsdoc line 12\n"
212             " */",
213             format("/** line 1\n"
214                    " * line 2\n"
215                    " * @returns {string} jsdoc line 12 */",
216                    getGoogleJSStyleWithColumns(20)));
217 
218   EXPECT_EQ("/**\n"
219             " * line 1\n"
220             " * line 2\n"
221             " *\n"
222             " * @returns j\n"
223             " */",
224             format("/** line 1\n"
225                    " * line 2\n"
226                    " *\n"
227                    " * @returns j */",
228                    getGoogleJSStyleWithColumns(20)));
229 }
230 
231 TEST_F(FormatTestJS, UnderstandsJavaScriptOperators) {
232   verifyFormat("a == = b;");
233   verifyFormat("a != = b;");
234 
235   verifyFormat("a === b;");
236   verifyFormat("aaaaaaa ===\n    b;", getGoogleJSStyleWithColumns(10));
237   verifyFormat("a !== b;");
238   verifyFormat("aaaaaaa !==\n    b;", getGoogleJSStyleWithColumns(10));
239   verifyFormat("if (a + b + c +\n"
240                "        d !==\n"
241                "    e + f + g)\n"
242                "  q();",
243                getGoogleJSStyleWithColumns(20));
244 
245   verifyFormat("a >> >= b;");
246 
247   verifyFormat("a >>> b;");
248   verifyFormat("aaaaaaa >>>\n    b;", getGoogleJSStyleWithColumns(10));
249   verifyFormat("a >>>= b;");
250   verifyFormat("aaaaaaa >>>=\n    b;", getGoogleJSStyleWithColumns(10));
251   verifyFormat("if (a + b + c +\n"
252                "        d >>>\n"
253                "    e + f + g)\n"
254                "  q();",
255                getGoogleJSStyleWithColumns(20));
256   verifyFormat("var x = aaaaaaaaaa ?\n"
257                "    bbbbbb :\n"
258                "    ccc;",
259                getGoogleJSStyleWithColumns(20));
260 
261   verifyFormat("var b = a.map((x) => x + 1);");
262   verifyFormat("return ('aaa') in bbbb;");
263   verifyFormat("var x = aaaaaaaaaaaaaaaaaaaaaaaaa() in\n"
264                "    aaaa.aaaaaa.aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;");
265   FormatStyle Style = getGoogleJSStyleWithColumns(80);
266   Style.AlignOperands = true;
267   verifyFormat("var x = aaaaaaaaaaaaaaaaaaaaaaaaa() in\n"
268                "        aaaa.aaaaaa.aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;",
269                Style);
270   Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All;
271   verifyFormat("var x = aaaaaaaaaaaaaaaaaaaaaaaaa()\n"
272                "            in aaaa.aaaaaa.aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;",
273                Style);
274 
275   // ES6 spread operator.
276   verifyFormat("someFunction(...a);");
277   verifyFormat("var x = [1, ...a, 2];");
278 }
279 
280 TEST_F(FormatTestJS, UnderstandsAmpAmp) {
281   verifyFormat("e && e.SomeFunction();");
282 }
283 
284 TEST_F(FormatTestJS, LiteralOperatorsCanBeKeywords) {
285   verifyFormat("not.and.or.not_eq = 1;");
286 }
287 
288 TEST_F(FormatTestJS, ReservedWords) {
289   // JavaScript reserved words (aka keywords) are only illegal when used as
290   // Identifiers, but are legal as IdentifierNames.
291   verifyFormat("x.class.struct = 1;");
292   verifyFormat("x.case = 1;");
293   verifyFormat("x.interface = 1;");
294   verifyFormat("x.for = 1;");
295   verifyFormat("x.of();");
296   verifyFormat("of(null);");
297   verifyFormat("import {of} from 'x';");
298   verifyFormat("x.in();");
299   verifyFormat("x.let();");
300   verifyFormat("x.var();");
301   verifyFormat("x.for();");
302   verifyFormat("x.as();");
303   verifyFormat("x.instanceof();");
304   verifyFormat("x.switch();");
305   verifyFormat("x.case();");
306   verifyFormat("x.delete();");
307   verifyFormat("x.throw();");
308   verifyFormat("x.throws();");
309   verifyFormat("x.if();");
310   verifyFormat("x = {\n"
311                "  a: 12,\n"
312                "  interface: 1,\n"
313                "  switch: 1,\n"
314                "};");
315   verifyFormat("var struct = 2;");
316   verifyFormat("var union = 2;");
317   verifyFormat("var interface = 2;");
318   verifyFormat("interface = 2;");
319   verifyFormat("x = interface instanceof y;");
320   verifyFormat("interface Test {\n"
321                "  x: string;\n"
322                "  switch: string;\n"
323                "  case: string;\n"
324                "  default: string;\n"
325                "}\n");
326 }
327 
328 TEST_F(FormatTestJS, ReservedWordsMethods) {
329   verifyFormat(
330       "class X {\n"
331       "  delete() {\n"
332       "    x();\n"
333       "  }\n"
334       "  interface() {\n"
335       "    x();\n"
336       "  }\n"
337       "  let() {\n"
338       "    x();\n"
339       "  }\n"
340       "}\n");
341 }
342 
343 TEST_F(FormatTestJS, ReservedWordsParenthesized) {
344   // All of these are statements using the keyword, not function calls.
345   verifyFormat("throw (x + y);\n"
346                "await (await x).y;\n"
347                "typeof (x) === 'string';\n"
348                "void (0);\n"
349                "delete (x.y);\n"
350                "return (x);\n");
351 }
352 
353 TEST_F(FormatTestJS, CppKeywords) {
354   // Make sure we don't mess stuff up because of C++ keywords.
355   verifyFormat("return operator && (aa);");
356   // .. or QT ones.
357   verifyFormat("slots: Slot[];");
358 }
359 
360 TEST_F(FormatTestJS, ES6DestructuringAssignment) {
361   verifyFormat("var [a, b, c] = [1, 2, 3];");
362   verifyFormat("const [a, b, c] = [1, 2, 3];");
363   verifyFormat("let [a, b, c] = [1, 2, 3];");
364   verifyFormat("var {a, b} = {a: 1, b: 2};");
365   verifyFormat("let {a, b} = {a: 1, b: 2};");
366 }
367 
368 TEST_F(FormatTestJS, ContainerLiterals) {
369   verifyFormat("var x = {\n"
370                "  y: function(a) {\n"
371                "    return a;\n"
372                "  }\n"
373                "};");
374   verifyFormat("return {\n"
375                "  link: function() {\n"
376                "    f();  //\n"
377                "  }\n"
378                "};");
379   verifyFormat("return {\n"
380                "  a: a,\n"
381                "  link: function() {\n"
382                "    f();  //\n"
383                "  }\n"
384                "};");
385   verifyFormat("return {\n"
386                "  a: a,\n"
387                "  link: function() {\n"
388                "    f();  //\n"
389                "  },\n"
390                "  link: function() {\n"
391                "    f();  //\n"
392                "  }\n"
393                "};");
394   verifyFormat("var stuff = {\n"
395                "  // comment for update\n"
396                "  update: false,\n"
397                "  // comment for modules\n"
398                "  modules: false,\n"
399                "  // comment for tasks\n"
400                "  tasks: false\n"
401                "};");
402   verifyFormat("return {\n"
403                "  'finish':\n"
404                "      //\n"
405                "      a\n"
406                "};");
407   verifyFormat("var obj = {\n"
408                "  fooooooooo: function(x) {\n"
409                "    return x.zIsTooLongForOneLineWithTheDeclarationLine();\n"
410                "  }\n"
411                "};");
412   // Simple object literal, as opposed to enum style below.
413   verifyFormat("var obj = {a: 123};");
414   // Enum style top level assignment.
415   verifyFormat("X = {\n  a: 123\n};");
416   verifyFormat("X.Y = {\n  a: 123\n};");
417   // But only on the top level, otherwise its a plain object literal assignment.
418   verifyFormat("function x() {\n"
419                "  y = {z: 1};\n"
420                "}");
421   verifyFormat("x = foo && {a: 123};");
422 
423   // Arrow functions in object literals.
424   verifyFormat("var x = {\n"
425                "  y: (a) => {\n"
426                "    return a;\n"
427                "  }\n"
428                "};");
429   verifyFormat("var x = {y: (a) => a};");
430 
431   // Methods in object literals.
432   verifyFormat("var x = {\n"
433                "  y(a: string): number {\n"
434                "    return a;\n"
435                "  }\n"
436                "};");
437   verifyFormat("var x = {\n"
438                "  y(a: string) {\n"
439                "    return a;\n"
440                "  }\n"
441                "};");
442 
443   // Computed keys.
444   verifyFormat("var x = {[a]: 1, b: 2, [c]: 3};");
445   verifyFormat("var x = {\n"
446                "  [a]: 1,\n"
447                "  b: 2,\n"
448                "  [c]: 3,\n"
449                "};");
450 
451   // Object literals can leave out labels.
452   verifyFormat("f({a}, () => {\n"
453                "  g();  //\n"
454                "});");
455 
456   // Keys can be quoted.
457   verifyFormat("var x = {\n"
458                "  a: a,\n"
459                "  b: b,\n"
460                "  'c': c,\n"
461                "};");
462 
463   // Dict literals can skip the label names.
464   verifyFormat("var x = {\n"
465                "  aaa,\n"
466                "  aaa,\n"
467                "  aaa,\n"
468                "};");
469   verifyFormat("return {\n"
470                "  a,\n"
471                "  b: 'b',\n"
472                "  c,\n"
473                "};");
474 }
475 
476 TEST_F(FormatTestJS, MethodsInObjectLiterals) {
477   verifyFormat("var o = {\n"
478                "  value: 'test',\n"
479                "  get value() {  // getter\n"
480                "    return this.value;\n"
481                "  }\n"
482                "};");
483   verifyFormat("var o = {\n"
484                "  value: 'test',\n"
485                "  set value(val) {  // setter\n"
486                "    this.value = val;\n"
487                "  }\n"
488                "};");
489   verifyFormat("var o = {\n"
490                "  value: 'test',\n"
491                "  someMethod(val) {  // method\n"
492                "    doSomething(this.value + val);\n"
493                "  }\n"
494                "};");
495   verifyFormat("var o = {\n"
496                "  someMethod(val) {  // method\n"
497                "    doSomething(this.value + val);\n"
498                "  },\n"
499                "  someOtherMethod(val) {  // method\n"
500                "    doSomething(this.value + val);\n"
501                "  }\n"
502                "};");
503 }
504 
505 TEST_F(FormatTestJS, GettersSettersVisibilityKeywords) {
506   // Don't break after "protected"
507   verifyFormat("class X {\n"
508                "  protected get getter():\n"
509                "      number {\n"
510                "    return 1;\n"
511                "  }\n"
512                "}",
513                getGoogleJSStyleWithColumns(12));
514   // Don't break after "get"
515   verifyFormat("class X {\n"
516                "  protected get someReallyLongGetterName():\n"
517                "      number {\n"
518                "    return 1;\n"
519                "  }\n"
520                "}",
521                getGoogleJSStyleWithColumns(40));
522 }
523 
524 TEST_F(FormatTestJS, SpacesInContainerLiterals) {
525   verifyFormat("var arr = [1, 2, 3];");
526   verifyFormat("f({a: 1, b: 2, c: 3});");
527 
528   verifyFormat("var object_literal_with_long_name = {\n"
529                "  a: 'aaaaaaaaaaaaaaaaaa',\n"
530                "  b: 'bbbbbbbbbbbbbbbbbb'\n"
531                "};");
532 
533   verifyFormat("f({a: 1, b: 2, c: 3});",
534                getChromiumStyle(FormatStyle::LK_JavaScript));
535   verifyFormat("f({'a': [{}]});");
536 }
537 
538 TEST_F(FormatTestJS, SingleQuotedStrings) {
539   verifyFormat("this.function('', true);");
540 }
541 
542 TEST_F(FormatTestJS, GoogScopes) {
543   verifyFormat("goog.scope(function() {\n"
544                "var x = a.b;\n"
545                "var y = c.d;\n"
546                "});  // goog.scope");
547   verifyFormat("goog.scope(function() {\n"
548                "// test\n"
549                "var x = 0;\n"
550                "// test\n"
551                "});");
552 }
553 
554 TEST_F(FormatTestJS, IIFEs) {
555   // Internal calling parens; no semi.
556   verifyFormat("(function() {\n"
557                "var a = 1;\n"
558                "}())");
559   // External calling parens; no semi.
560   verifyFormat("(function() {\n"
561                "var b = 2;\n"
562                "})()");
563   // Internal calling parens; with semi.
564   verifyFormat("(function() {\n"
565                "var c = 3;\n"
566                "}());");
567   // External calling parens; with semi.
568   verifyFormat("(function() {\n"
569                "var d = 4;\n"
570                "})();");
571 }
572 
573 TEST_F(FormatTestJS, GoogModules) {
574   verifyFormat("goog.module('this.is.really.absurdly.long');",
575                getGoogleJSStyleWithColumns(40));
576   verifyFormat("goog.require('this.is.really.absurdly.long');",
577                getGoogleJSStyleWithColumns(40));
578   verifyFormat("goog.provide('this.is.really.absurdly.long');",
579                getGoogleJSStyleWithColumns(40));
580   verifyFormat("var long = goog.require('this.is.really.absurdly.long');",
581                getGoogleJSStyleWithColumns(40));
582   verifyFormat("goog.forwardDeclare('this.is.really.absurdly.long');",
583                getGoogleJSStyleWithColumns(40));
584 
585   // These should be wrapped normally.
586   verifyFormat(
587       "var MyLongClassName =\n"
588       "    goog.module.get('my.long.module.name.followedBy.MyLongClassName');");
589   verifyFormat("function a() {\n"
590                "  goog.setTestOnly();\n"
591                "}\n",
592                "function a() {\n"
593                "goog.setTestOnly();\n"
594                "}\n");
595 }
596 
597 TEST_F(FormatTestJS, FormatsNamespaces) {
598   verifyFormat("namespace Foo {\n"
599                "  export let x = 1;\n"
600                "}\n");
601   verifyFormat("declare namespace Foo {\n"
602                "  export let x: number;\n"
603                "}\n");
604 }
605 
606 TEST_F(FormatTestJS, NamespacesMayNotWrap) {
607   verifyFormat("declare namespace foobarbaz {\n"
608                "}\n", getGoogleJSStyleWithColumns(18));
609   verifyFormat("declare module foobarbaz {\n"
610                "}\n", getGoogleJSStyleWithColumns(15));
611   verifyFormat("namespace foobarbaz {\n"
612                "}\n", getGoogleJSStyleWithColumns(10));
613   verifyFormat("module foobarbaz {\n"
614                "}\n", getGoogleJSStyleWithColumns(7));
615 }
616 
617 TEST_F(FormatTestJS, AmbientDeclarations) {
618   FormatStyle NineCols = getGoogleJSStyleWithColumns(9);
619   verifyFormat(
620       "declare class\n"
621       "    X {}",
622       NineCols);
623   verifyFormat(
624       "declare function\n"
625       "x();",  // TODO(martinprobst): should ideally be indented.
626       NineCols);
627   verifyFormat("declare function foo();\n"
628                "let x = 1;\n");
629   verifyFormat("declare function foo(): string;\n"
630                "let x = 1;\n");
631   verifyFormat("declare function foo(): {x: number};\n"
632                "let x = 1;\n");
633   verifyFormat("declare class X {}\n"
634                "let x = 1;\n");
635   verifyFormat("declare interface Y {}\n"
636                "let x = 1;\n");
637   verifyFormat(
638       "declare enum X {\n"
639       "}",
640       NineCols);
641   verifyFormat(
642       "declare let\n"
643       "    x: number;",
644       NineCols);
645 }
646 
647 TEST_F(FormatTestJS, FormatsFreestandingFunctions) {
648   verifyFormat("function outer1(a, b) {\n"
649                "  function inner1(a, b) {\n"
650                "    return a;\n"
651                "  }\n"
652                "  inner1(a, b);\n"
653                "}\n"
654                "function outer2(a, b) {\n"
655                "  function inner2(a, b) {\n"
656                "    return a;\n"
657                "  }\n"
658                "  inner2(a, b);\n"
659                "}");
660   verifyFormat("function f() {}");
661   verifyFormat("function aFunction() {}\n"
662                "(function f() {\n"
663                "  var x = 1;\n"
664                "}());\n");
665   verifyFormat("function aFunction() {}\n"
666                "{\n"
667                "  let x = 1;\n"
668                "  console.log(x);\n"
669                "}\n");
670 }
671 
672 TEST_F(FormatTestJS, GeneratorFunctions) {
673   verifyFormat("function* f() {\n"
674                "  let x = 1;\n"
675                "  yield x;\n"
676                "  yield* something();\n"
677                "  yield [1, 2];\n"
678                "  yield {a: 1};\n"
679                "}");
680   verifyFormat("function*\n"
681                "    f() {\n"
682                "}",
683                getGoogleJSStyleWithColumns(8));
684   verifyFormat("export function* f() {\n"
685                "  yield 1;\n"
686                "}\n");
687   verifyFormat("class X {\n"
688                "  * generatorMethod() {\n"
689                "    yield x;\n"
690                "  }\n"
691                "}");
692   verifyFormat("var x = {\n"
693                "  a: function*() {\n"
694                "    //\n"
695                "  }\n"
696                "}\n");
697 }
698 
699 TEST_F(FormatTestJS, AsyncFunctions) {
700   verifyFormat("async function f() {\n"
701                "  let x = 1;\n"
702                "  return fetch(x);\n"
703                "}");
704   verifyFormat("async function f() {\n"
705                "  return 1;\n"
706                "}\n"
707                "\n"
708                "function a() {\n"
709                "  return 1;\n"
710                "}\n",
711                "  async   function f() {\n"
712                "   return 1;\n"
713                "}\n"
714                "\n"
715                "   function a() {\n"
716                "  return   1;\n"
717                "}  \n");
718   verifyFormat("async function* f() {\n"
719                "  yield fetch(x);\n"
720                "}");
721   verifyFormat("export async function f() {\n"
722                "  return fetch(x);\n"
723                "}");
724   verifyFormat("let x = async () => f();");
725   verifyFormat("let x = async function() {\n"
726                "  f();\n"
727                "};");
728   verifyFormat("let x = async();");
729   verifyFormat("class X {\n"
730                "  async asyncMethod() {\n"
731                "    return fetch(1);\n"
732                "  }\n"
733                "}");
734   verifyFormat("function initialize() {\n"
735                "  // Comment.\n"
736                "  return async.then();\n"
737                "}\n");
738   verifyFormat("for await (const x of y) {\n"
739                "  console.log(x);\n"
740                "}\n");
741   verifyFormat("function asyncLoop() {\n"
742                "  for await (const x of y) {\n"
743                "    console.log(x);\n"
744                "  }\n"
745                "}\n");
746 }
747 
748 TEST_F(FormatTestJS, FunctionParametersTrailingComma) {
749   verifyFormat("function trailingComma(\n"
750                "    p1,\n"
751                "    p2,\n"
752                "    p3,\n"
753                ") {\n"
754                "  a;  //\n"
755                "}\n",
756                "function trailingComma(p1, p2, p3,) {\n"
757                "  a;  //\n"
758                "}\n");
759   verifyFormat("trailingComma(\n"
760                "    p1,\n"
761                "    p2,\n"
762                "    p3,\n"
763                ");\n",
764                "trailingComma(p1, p2, p3,);\n");
765   verifyFormat("trailingComma(\n"
766                "    p1  // hello\n"
767                ");\n",
768                "trailingComma(p1 // hello\n"
769                ");\n");
770 }
771 
772 TEST_F(FormatTestJS, ArrayLiterals) {
773   verifyFormat("var aaaaa: List<SomeThing> =\n"
774                "    [new SomeThingAAAAAAAAAAAA(), new SomeThingBBBBBBBBB()];");
775   verifyFormat("return [\n"
776                "  aaaaaaaaaaaaaaaaaaaaaaaaaaa, bbbbbbbbbbbbbbbbbbbbbbbbbbb,\n"
777                "  ccccccccccccccccccccccccccc\n"
778                "];");
779   verifyFormat("return [\n"
780                "  aaaa().bbbbbbbb('A'),\n"
781                "  aaaa().bbbbbbbb('B'),\n"
782                "  aaaa().bbbbbbbb('C'),\n"
783                "];");
784   verifyFormat("var someVariable = SomeFunction([\n"
785                "  aaaaaaaaaaaaaaaaaaaaaaaaaaa, bbbbbbbbbbbbbbbbbbbbbbbbbbb,\n"
786                "  ccccccccccccccccccccccccccc\n"
787                "]);");
788   verifyFormat("var someVariable = SomeFunction([\n"
789                "  [aaaaaaaaaaaaaaaaaaaaaa, bbbbbbbbbbbbbbbbbbbbbb],\n"
790                "]);",
791                getGoogleJSStyleWithColumns(51));
792   verifyFormat("var someVariable = SomeFunction(aaaa, [\n"
793                "  aaaaaaaaaaaaaaaaaaaaaaaaaaa, bbbbbbbbbbbbbbbbbbbbbbbbbbb,\n"
794                "  ccccccccccccccccccccccccccc\n"
795                "]);");
796   verifyFormat("var someVariable = SomeFunction(\n"
797                "    aaaa,\n"
798                "    [\n"
799                "      aaaaaaaaaaaaaaaaaaaaaaaaaa, bbbbbbbbbbbbbbbbbbbbbbbbbb,\n"
800                "      cccccccccccccccccccccccccc\n"
801                "    ],\n"
802                "    aaaa);");
803   verifyFormat("var aaaa = aaaaa ||  // wrap\n"
804                "    [];");
805 
806   verifyFormat("someFunction([], {a: a});");
807 
808   verifyFormat("var string = [\n"
809                "  'aaaaaa',\n"
810                "  'bbbbbb',\n"
811                "].join('+');");
812 }
813 
814 TEST_F(FormatTestJS, ColumnLayoutForArrayLiterals) {
815   verifyFormat("var array = [\n"
816                "  a, a, a, a, a, a, a, a, a, a, a, a, a, a, a,\n"
817                "  a, a, a, a, a, a, a, a, a, a, a, a, a, a, a,\n"
818                "];");
819   verifyFormat("var array = someFunction([\n"
820                "  a, a, a, a, a, a, a, a, a, a, a, a, a, a, a,\n"
821                "  a, a, a, a, a, a, a, a, a, a, a, a, a, a, a,\n"
822                "]);");
823 }
824 
825 TEST_F(FormatTestJS, FunctionLiterals) {
826   FormatStyle Style = getGoogleStyle(FormatStyle::LK_JavaScript);
827   Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline;
828   verifyFormat("doFoo(function() {});");
829   verifyFormat("doFoo(function() { return 1; });", Style);
830   verifyFormat("var func = function() {\n"
831                "  return 1;\n"
832                "};");
833   verifyFormat("var func =  //\n"
834                "    function() {\n"
835                "  return 1;\n"
836                "};");
837   verifyFormat("return {\n"
838                "  body: {\n"
839                "    setAttribute: function(key, val) { this[key] = val; },\n"
840                "    getAttribute: function(key) { return this[key]; },\n"
841                "    style: {direction: ''}\n"
842                "  }\n"
843                "};",
844                Style);
845   verifyFormat("abc = xyz ? function() {\n"
846                "  return 1;\n"
847                "} : function() {\n"
848                "  return -1;\n"
849                "};");
850 
851   verifyFormat("var closure = goog.bind(\n"
852                "    function() {  // comment\n"
853                "      foo();\n"
854                "      bar();\n"
855                "    },\n"
856                "    this, arg1IsReallyLongAndNeedsLineBreaks,\n"
857                "    arg3IsReallyLongAndNeedsLineBreaks);");
858   verifyFormat("var closure = goog.bind(function() {  // comment\n"
859                "  foo();\n"
860                "  bar();\n"
861                "}, this);");
862   verifyFormat("return {\n"
863                "  a: 'E',\n"
864                "  b: function() {\n"
865                "    return function() {\n"
866                "      f();  //\n"
867                "    };\n"
868                "  }\n"
869                "};");
870   verifyFormat("{\n"
871                "  var someVariable = function(x) {\n"
872                "    return x.zIsTooLongForOneLineWithTheDeclarationLine();\n"
873                "  };\n"
874                "}");
875   verifyFormat("someLooooooooongFunction(\n"
876                "    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,\n"
877                "    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,\n"
878                "    function(aaaaaaaaaaaaaaaaaaaaaaaaaaaaa) {\n"
879                "      // code\n"
880                "    });");
881 
882   verifyFormat("return {\n"
883                "  a: function SomeFunction() {\n"
884                "    // ...\n"
885                "    return 1;\n"
886                "  }\n"
887                "};");
888   verifyFormat("this.someObject.doSomething(aaaaaaaaaaaaaaaaaaaaaaaaaa)\n"
889                "    .then(goog.bind(function(aaaaaaaaaaa) {\n"
890                "      someFunction();\n"
891                "      someFunction();\n"
892                "    }, this), aaaaaaaaaaaaaaaaa);");
893 
894   verifyFormat("someFunction(goog.bind(function() {\n"
895                "  doSomething();\n"
896                "  doSomething();\n"
897                "}, this), goog.bind(function() {\n"
898                "  doSomething();\n"
899                "  doSomething();\n"
900                "}, this));");
901 
902   verifyFormat("SomeFunction(function() {\n"
903                "  foo();\n"
904                "  bar();\n"
905                "}.bind(this));");
906 
907   verifyFormat("SomeFunction((function() {\n"
908                "               foo();\n"
909                "               bar();\n"
910                "             }).bind(this));");
911 
912   // FIXME: This is bad, we should be wrapping before "function() {".
913   verifyFormat("someFunction(function() {\n"
914                "  doSomething();  // break\n"
915                "})\n"
916                "    .doSomethingElse(\n"
917                "        // break\n"
918                "    );");
919 
920   Style.ColumnLimit = 33;
921   verifyFormat("f({a: function() { return 1; }});", Style);
922   Style.ColumnLimit = 32;
923   verifyFormat("f({\n"
924                "  a: function() { return 1; }\n"
925                "});",
926                Style);
927 
928 }
929 
930 TEST_F(FormatTestJS, DontWrapEmptyLiterals) {
931   verifyFormat("(aaaaaaaaaaaaaaaaaaaaa.getData as jasmine.Spy)\n"
932                "    .and.returnValue(Observable.of([]));");
933   verifyFormat("(aaaaaaaaaaaaaaaaaaaaa.getData as jasmine.Spy)\n"
934                "    .and.returnValue(Observable.of({}));");
935   verifyFormat("(aaaaaaaaaaaaaaaaaaaaa.getData as jasmine.Spy)\n"
936                "    .and.returnValue(Observable.of(()));");
937 }
938 
939 TEST_F(FormatTestJS, InliningFunctionLiterals) {
940   FormatStyle Style = getGoogleStyle(FormatStyle::LK_JavaScript);
941   Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline;
942   verifyFormat("var func = function() {\n"
943                "  return 1;\n"
944                "};",
945                Style);
946   verifyFormat("var func = doSomething(function() { return 1; });", Style);
947   verifyFormat("var outer = function() {\n"
948                "  var inner = function() { return 1; }\n"
949                "};",
950                Style);
951   verifyFormat("function outer1(a, b) {\n"
952                "  function inner1(a, b) { return a; }\n"
953                "}",
954                Style);
955 
956   Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_All;
957   verifyFormat("var func = function() { return 1; };", Style);
958   verifyFormat("var func = doSomething(function() { return 1; });", Style);
959   verifyFormat(
960       "var outer = function() { var inner = function() { return 1; } };",
961       Style);
962   verifyFormat("function outer1(a, b) {\n"
963                "  function inner1(a, b) { return a; }\n"
964                "}",
965                Style);
966 
967   Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_None;
968   verifyFormat("var func = function() {\n"
969                "  return 1;\n"
970                "};",
971                Style);
972   verifyFormat("var func = doSomething(function() {\n"
973                "  return 1;\n"
974                "});",
975                Style);
976   verifyFormat("var outer = function() {\n"
977                "  var inner = function() {\n"
978                "    return 1;\n"
979                "  }\n"
980                "};",
981                Style);
982   verifyFormat("function outer1(a, b) {\n"
983                "  function inner1(a, b) {\n"
984                "    return a;\n"
985                "  }\n"
986                "}",
987                Style);
988 
989   Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty;
990   verifyFormat("var func = function() {\n"
991                "  return 1;\n"
992                "};",
993                Style);
994 }
995 
996 TEST_F(FormatTestJS, MultipleFunctionLiterals) {
997   FormatStyle Style = getGoogleStyle(FormatStyle::LK_JavaScript);
998   Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_All;
999   verifyFormat("promise.then(\n"
1000                "    function success() {\n"
1001                "      doFoo();\n"
1002                "      doBar();\n"
1003                "    },\n"
1004                "    function error() {\n"
1005                "      doFoo();\n"
1006                "      doBaz();\n"
1007                "    },\n"
1008                "    []);\n");
1009   verifyFormat("promise.then(\n"
1010                "    function success() {\n"
1011                "      doFoo();\n"
1012                "      doBar();\n"
1013                "    },\n"
1014                "    [],\n"
1015                "    function error() {\n"
1016                "      doFoo();\n"
1017                "      doBaz();\n"
1018                "    });\n");
1019   verifyFormat("promise.then(\n"
1020                "    [],\n"
1021                "    function success() {\n"
1022                "      doFoo();\n"
1023                "      doBar();\n"
1024                "    },\n"
1025                "    function error() {\n"
1026                "      doFoo();\n"
1027                "      doBaz();\n"
1028                "    });\n");
1029 
1030   verifyFormat("getSomeLongPromise()\n"
1031                "    .then(function(value) { body(); })\n"
1032                "    .thenCatch(function(error) {\n"
1033                "      body();\n"
1034                "      body();\n"
1035                "    });",
1036                Style);
1037   verifyFormat("getSomeLongPromise()\n"
1038                "    .then(function(value) {\n"
1039                "      body();\n"
1040                "      body();\n"
1041                "    })\n"
1042                "    .thenCatch(function(error) {\n"
1043                "      body();\n"
1044                "      body();\n"
1045                "    });");
1046 
1047   verifyFormat("getSomeLongPromise()\n"
1048                "    .then(function(value) { body(); })\n"
1049                "    .thenCatch(function(error) { body(); });",
1050                Style);
1051 
1052   verifyFormat("return [aaaaaaaaaaaaaaaaaaaaaa]\n"
1053                "    .aaaaaaa(function() {\n"
1054                "      //\n"
1055                "    })\n"
1056                "    .bbbbbb();");
1057 }
1058 
1059 TEST_F(FormatTestJS, ArrowFunctions) {
1060   verifyFormat("var x = (a) => {\n"
1061                "  return a;\n"
1062                "};");
1063   verifyFormat("var x = (a) => {\n"
1064                "  function y() {\n"
1065                "    return 42;\n"
1066                "  }\n"
1067                "  return a;\n"
1068                "};");
1069   verifyFormat("var x = (a: type): {some: type} => {\n"
1070                "  return a;\n"
1071                "};");
1072   verifyFormat("var x = (a) => a;");
1073   verifyFormat("return () => [];");
1074   verifyFormat("var aaaaaaaaaaaaaaaaaaaa = {\n"
1075                "  aaaaaaaaaaaaaaaaaaaaaaaaaaaa:\n"
1076                "      (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,\n"
1077                "       aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa) =>\n"
1078                "          aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,\n"
1079                "};");
1080   verifyFormat("var a = a.aaaaaaa(\n"
1081                "    (a: a) => aaaaaaaaaaaaaaaaaaaaaaaaa(bbbbbbbbb) &&\n"
1082                "        aaaaaaaaaaaaaaaaaaaaaaaaa(bbbbbbb));");
1083   verifyFormat("var a = a.aaaaaaa(\n"
1084                "    (a: a) => aaaaaaaaaaaaaaaaaaaaa(bbbbbbbbb) ?\n"
1085                "        aaaaaaaaaaaaaaaaaaaaa(bbbbbbb) :\n"
1086                "        aaaaaaaaaaaaaaaaaaaaa(bbbbbbb));");
1087 
1088   // FIXME: This is bad, we should be wrapping before "() => {".
1089   verifyFormat("someFunction(() => {\n"
1090                "  doSomething();  // break\n"
1091                "})\n"
1092                "    .doSomethingElse(\n"
1093                "        // break\n"
1094                "    );");
1095   verifyFormat("const f = (x: string|null): string|null => {\n"
1096                "  return x;\n"
1097                "}\n");
1098 }
1099 
1100 TEST_F(FormatTestJS, ReturnStatements) {
1101   verifyFormat("function() {\n"
1102                "  return [hello, world];\n"
1103                "}");
1104 }
1105 
1106 TEST_F(FormatTestJS, ForLoops) {
1107   verifyFormat("for (var i in [2, 3]) {\n"
1108                "}");
1109   verifyFormat("for (var i of [2, 3]) {\n"
1110                "}");
1111   verifyFormat("for (let {a, b} of x) {\n"
1112                "}");
1113   verifyFormat("for (let {a, b} of [x]) {\n"
1114                "}");
1115   verifyFormat("for (let [a, b] of [x]) {\n"
1116                "}");
1117   verifyFormat("for (let {a, b} in x) {\n"
1118                "}");
1119 }
1120 
1121 TEST_F(FormatTestJS, WrapRespectsAutomaticSemicolonInsertion) {
1122   // The following statements must not wrap, as otherwise the program meaning
1123   // would change due to automatic semicolon insertion.
1124   // See http://www.ecma-international.org/ecma-262/5.1/#sec-7.9.1.
1125   verifyFormat("return aaaaa;", getGoogleJSStyleWithColumns(10));
1126   verifyFormat("yield aaaaa;", getGoogleJSStyleWithColumns(10));
1127   verifyFormat("return /* hello! */ aaaaa;", getGoogleJSStyleWithColumns(10));
1128   verifyFormat("continue aaaaa;", getGoogleJSStyleWithColumns(10));
1129   verifyFormat("continue /* hello! */ aaaaa;", getGoogleJSStyleWithColumns(10));
1130   verifyFormat("break aaaaa;", getGoogleJSStyleWithColumns(10));
1131   verifyFormat("throw aaaaa;", getGoogleJSStyleWithColumns(10));
1132   verifyFormat("aaaaaaaaa++;", getGoogleJSStyleWithColumns(10));
1133   verifyFormat("aaaaaaaaa--;", getGoogleJSStyleWithColumns(10));
1134   verifyFormat("return [\n"
1135                "  aaa\n"
1136                "];",
1137                getGoogleJSStyleWithColumns(12));
1138   verifyFormat("class X {\n"
1139                "  readonly ratherLongField =\n"
1140                "      1;\n"
1141                "}",
1142                "class X {\n"
1143                "  readonly ratherLongField = 1;\n"
1144                "}",
1145                getGoogleJSStyleWithColumns(20));
1146   verifyFormat("const x = (5 + 9)\n"
1147                "const y = 3\n",
1148                "const x = (   5 +    9)\n"
1149                "const y = 3\n");
1150 }
1151 
1152 TEST_F(FormatTestJS, AutomaticSemicolonInsertionHeuristic) {
1153   verifyFormat("a\n"
1154                "b;",
1155                " a \n"
1156                " b ;");
1157   verifyFormat("a()\n"
1158                "b;",
1159                " a ()\n"
1160                " b ;");
1161   verifyFormat("a[b]\n"
1162                "c;",
1163                "a [b]\n"
1164                "c ;");
1165   verifyFormat("1\n"
1166                "a;",
1167                "1 \n"
1168                "a ;");
1169   verifyFormat("a\n"
1170                "1;",
1171                "a \n"
1172                "1 ;");
1173   verifyFormat("a\n"
1174                "'x';",
1175                "a \n"
1176                " 'x';");
1177   verifyFormat("a++\n"
1178                "b;",
1179                "a ++\n"
1180                "b ;");
1181   verifyFormat("a\n"
1182                "!b && c;",
1183                "a \n"
1184                " ! b && c;");
1185   verifyFormat("a\n"
1186                "if (1) f();",
1187                " a\n"
1188                " if (1) f();");
1189   verifyFormat("a\n"
1190                "class X {}",
1191                " a\n"
1192                " class X {}");
1193   verifyFormat("var a", "var\n"
1194                         "a");
1195   verifyFormat("x instanceof String", "x\n"
1196                                       "instanceof\n"
1197                                       "String");
1198   verifyFormat("function f(@Foo bar) {}", "function f(@Foo\n"
1199                                           "  bar) {}");
1200   verifyFormat("function f(@Foo(Param) bar) {}", "function f(@Foo(Param)\n"
1201                                                  "  bar) {}");
1202   verifyFormat("a = true\n"
1203                "return 1",
1204                "a = true\n"
1205                "  return   1");
1206   verifyFormat("a = 's'\n"
1207                "return 1",
1208                "a = 's'\n"
1209                "  return   1");
1210   verifyFormat("a = null\n"
1211                "return 1",
1212                "a = null\n"
1213                "  return   1");
1214   // Below "class Y {}" should ideally be on its own line.
1215   verifyFormat(
1216       "x = {\n"
1217       "  a: 1\n"
1218       "} class Y {}",
1219       "  x  =  {a  : 1}\n"
1220       "   class  Y {  }");
1221   verifyFormat(
1222       "if (x) {\n"
1223       "}\n"
1224       "return 1",
1225       "if (x) {}\n"
1226       " return   1");
1227   verifyFormat(
1228       "if (x) {\n"
1229       "}\n"
1230       "class X {}",
1231       "if (x) {}\n"
1232       " class X {}");
1233 }
1234 
1235 TEST_F(FormatTestJS, ImportExportASI) {
1236   verifyFormat(
1237       "import {x} from 'y'\n"
1238       "export function z() {}",
1239       "import   {x} from 'y'\n"
1240       "  export function z() {}");
1241   // Below "class Y {}" should ideally be on its own line.
1242   verifyFormat(
1243       "export {x} class Y {}",
1244       "  export {x}\n"
1245       "  class  Y {\n}");
1246   verifyFormat(
1247       "if (x) {\n"
1248       "}\n"
1249       "export class Y {}",
1250       "if ( x ) { }\n"
1251       " export class Y {}");
1252 }
1253 
1254 TEST_F(FormatTestJS, ClosureStyleCasts) {
1255   verifyFormat("var x = /** @type {foo} */ (bar);");
1256 }
1257 
1258 TEST_F(FormatTestJS, TryCatch) {
1259   verifyFormat("try {\n"
1260                "  f();\n"
1261                "} catch (e) {\n"
1262                "  g();\n"
1263                "} finally {\n"
1264                "  h();\n"
1265                "}");
1266 
1267   // But, of course, "catch" is a perfectly fine function name in JavaScript.
1268   verifyFormat("someObject.catch();");
1269   verifyFormat("someObject.new();");
1270 }
1271 
1272 TEST_F(FormatTestJS, StringLiteralConcatenation) {
1273   verifyFormat("var literal = 'hello ' +\n"
1274                "    'world';");
1275 }
1276 
1277 TEST_F(FormatTestJS, RegexLiteralClassification) {
1278   // Regex literals.
1279   verifyFormat("var regex = /abc/;");
1280   verifyFormat("f(/abc/);");
1281   verifyFormat("f(abc, /abc/);");
1282   verifyFormat("some_map[/abc/];");
1283   verifyFormat("var x = a ? /abc/ : /abc/;");
1284   verifyFormat("for (var i = 0; /abc/.test(s[i]); i++) {\n}");
1285   verifyFormat("var x = !/abc/.test(y);");
1286   verifyFormat("var x = foo()! / 10;");
1287   verifyFormat("var x = a && /abc/.test(y);");
1288   verifyFormat("var x = a || /abc/.test(y);");
1289   verifyFormat("var x = a + /abc/.search(y);");
1290   verifyFormat("/abc/.search(y);");
1291   verifyFormat("var regexs = {/abc/, /abc/};");
1292   verifyFormat("return /abc/;");
1293 
1294   // Not regex literals.
1295   verifyFormat("var a = a / 2 + b / 3;");
1296   verifyFormat("var a = a++ / 2;");
1297   // Prefix unary can operate on regex literals, not that it makes sense.
1298   verifyFormat("var a = ++/a/;");
1299 
1300   // This is a known issue, regular expressions are incorrectly detected if
1301   // directly following a closing parenthesis.
1302   verifyFormat("if (foo) / bar /.exec(baz);");
1303 }
1304 
1305 TEST_F(FormatTestJS, RegexLiteralSpecialCharacters) {
1306   verifyFormat("var regex = /=/;");
1307   verifyFormat("var regex = /a*/;");
1308   verifyFormat("var regex = /a+/;");
1309   verifyFormat("var regex = /a?/;");
1310   verifyFormat("var regex = /.a./;");
1311   verifyFormat("var regex = /a\\*/;");
1312   verifyFormat("var regex = /^a$/;");
1313   verifyFormat("var regex = /\\/a/;");
1314   verifyFormat("var regex = /(?:x)/;");
1315   verifyFormat("var regex = /x(?=y)/;");
1316   verifyFormat("var regex = /x(?!y)/;");
1317   verifyFormat("var regex = /x|y/;");
1318   verifyFormat("var regex = /a{2}/;");
1319   verifyFormat("var regex = /a{1,3}/;");
1320 
1321   verifyFormat("var regex = /[abc]/;");
1322   verifyFormat("var regex = /[^abc]/;");
1323   verifyFormat("var regex = /[\\b]/;");
1324   verifyFormat("var regex = /[/]/;");
1325   verifyFormat("var regex = /[\\/]/;");
1326   verifyFormat("var regex = /\\[/;");
1327   verifyFormat("var regex = /\\\\[/]/;");
1328   verifyFormat("var regex = /}[\"]/;");
1329   verifyFormat("var regex = /}[/\"]/;");
1330   verifyFormat("var regex = /}[\"/]/;");
1331 
1332   verifyFormat("var regex = /\\b/;");
1333   verifyFormat("var regex = /\\B/;");
1334   verifyFormat("var regex = /\\d/;");
1335   verifyFormat("var regex = /\\D/;");
1336   verifyFormat("var regex = /\\f/;");
1337   verifyFormat("var regex = /\\n/;");
1338   verifyFormat("var regex = /\\r/;");
1339   verifyFormat("var regex = /\\s/;");
1340   verifyFormat("var regex = /\\S/;");
1341   verifyFormat("var regex = /\\t/;");
1342   verifyFormat("var regex = /\\v/;");
1343   verifyFormat("var regex = /\\w/;");
1344   verifyFormat("var regex = /\\W/;");
1345   verifyFormat("var regex = /a(a)\\1/;");
1346   verifyFormat("var regex = /\\0/;");
1347   verifyFormat("var regex = /\\\\/g;");
1348   verifyFormat("var regex = /\\a\\\\/g;");
1349   verifyFormat("var regex = /\a\\//g;");
1350   verifyFormat("var regex = /a\\//;\n"
1351                "var x = 0;");
1352   verifyFormat("var regex = /'/g;", "var regex = /'/g ;");
1353   verifyFormat("var regex = /'/g;  //'", "var regex = /'/g ; //'");
1354   verifyFormat("var regex = /\\/*/;\n"
1355                "var x = 0;",
1356                "var regex = /\\/*/;\n"
1357                "var x=0;");
1358   verifyFormat("var x = /a\\//;", "var x = /a\\//  \n;");
1359   verifyFormat("var regex = /\"/;", getGoogleJSStyleWithColumns(16));
1360   verifyFormat("var regex =\n"
1361                "    /\"/;",
1362                getGoogleJSStyleWithColumns(15));
1363   verifyFormat("var regex =  //\n"
1364                "    /a/;");
1365   verifyFormat("var regexs = [\n"
1366                "  /d/,   //\n"
1367                "  /aa/,  //\n"
1368                "];");
1369 }
1370 
1371 TEST_F(FormatTestJS, RegexLiteralModifiers) {
1372   verifyFormat("var regex = /abc/g;");
1373   verifyFormat("var regex = /abc/i;");
1374   verifyFormat("var regex = /abc/m;");
1375   verifyFormat("var regex = /abc/y;");
1376 }
1377 
1378 TEST_F(FormatTestJS, RegexLiteralLength) {
1379   verifyFormat("var regex = /aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/;",
1380                getGoogleJSStyleWithColumns(60));
1381   verifyFormat("var regex =\n"
1382                "    /aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/;",
1383                getGoogleJSStyleWithColumns(60));
1384   verifyFormat("var regex = /\\xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/;",
1385                getGoogleJSStyleWithColumns(50));
1386 }
1387 
1388 TEST_F(FormatTestJS, RegexLiteralExamples) {
1389   verifyFormat("var regex = search.match(/(?:\?|&)times=([^?&]+)/i);");
1390 }
1391 
1392 TEST_F(FormatTestJS, IgnoresMpegTS) {
1393   std::string MpegTS(200, ' ');
1394   MpegTS.replace(0, strlen("nearlyLooks  +   like +   ts + code;  "),
1395                  "nearlyLooks  +   like +   ts + code;  ");
1396   MpegTS[0] = 0x47;
1397   MpegTS[188] = 0x47;
1398   verifyFormat(MpegTS, MpegTS);
1399 }
1400 
1401 TEST_F(FormatTestJS, TypeAnnotations) {
1402   verifyFormat("var x: string;");
1403   verifyFormat("var x: {a: string; b: number;} = {};");
1404   verifyFormat("function x(): string {\n  return 'x';\n}");
1405   verifyFormat("function x(): {x: string} {\n  return {x: 'x'};\n}");
1406   verifyFormat("function x(y: string): string {\n  return 'x';\n}");
1407   verifyFormat("for (var y: string in x) {\n  x();\n}");
1408   verifyFormat("for (var y: string of x) {\n  x();\n}");
1409   verifyFormat("function x(y: {a?: number;} = {}): number {\n"
1410                "  return 12;\n"
1411                "}");
1412   verifyFormat("((a: string, b: number): string => a + b);");
1413   verifyFormat("var x: (y: number) => string;");
1414   verifyFormat("var x: P<string, (a: number) => string>;");
1415   verifyFormat("var x = {\n"
1416                "  y: function(): z {\n"
1417                "    return 1;\n"
1418                "  }\n"
1419                "};");
1420   verifyFormat("var x = {\n"
1421                "  y: function(): {a: number} {\n"
1422                "    return 1;\n"
1423                "  }\n"
1424                "};");
1425   verifyFormat("function someFunc(args: string[]):\n"
1426                "    {longReturnValue: string[]} {}",
1427                getGoogleJSStyleWithColumns(60));
1428   verifyFormat(
1429       "var someValue = (v as aaaaaaaaaaaaaaaaaaaa<T>[])\n"
1430       "                    .someFunction(aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa);");
1431   verifyFormat("const xIsALongIdent:\n""    YJustBarelyFitsLinex[];",
1432       getGoogleJSStyleWithColumns(20));
1433 }
1434 
1435 TEST_F(FormatTestJS, UnionIntersectionTypes) {
1436   verifyFormat("let x: A|B = A | B;");
1437   verifyFormat("let x: A&B|C = A & B;");
1438   verifyFormat("let x: Foo<A|B> = new Foo<A|B>();");
1439   verifyFormat("function(x: A|B): C&D {}");
1440   verifyFormat("function(x: A|B = A | B): C&D {}");
1441   verifyFormat("function x(path: number|string) {}");
1442   verifyFormat("function x(): string|number {}");
1443   verifyFormat("type Foo = Bar|Baz;");
1444   verifyFormat("type Foo = Bar<X>|Baz;");
1445   verifyFormat("type Foo = (Bar<X>|Baz);");
1446   verifyFormat("let x: Bar|Baz;");
1447   verifyFormat("let x: Bar<X>|Baz;");
1448   verifyFormat("let x: (Foo|Bar)[];");
1449   verifyFormat("type X = {\n"
1450                "  a: Foo|Bar;\n"
1451                "};");
1452   verifyFormat("export type X = {\n"
1453                "  a: Foo|Bar;\n"
1454                "};");
1455 }
1456 
1457 TEST_F(FormatTestJS, UnionIntersectionTypesInObjectType) {
1458   verifyFormat("let x: {x: number|null} = {x: number | null};");
1459   verifyFormat("let nested: {x: {y: number|null}};");
1460   verifyFormat("let mixed: {x: [number|null, {w: number}]};");
1461   verifyFormat("class X {\n"
1462                "  contructor(x: {\n"
1463                "    a: a|null,\n"
1464                "    b: b|null,\n"
1465                "  }) {}\n"
1466                "}");
1467 }
1468 
1469 TEST_F(FormatTestJS, ClassDeclarations) {
1470   verifyFormat("class C {\n  x: string = 12;\n}");
1471   verifyFormat("class C {\n  x(): string => 12;\n}");
1472   verifyFormat("class C {\n  ['x' + 2]: string = 12;\n}");
1473   verifyFormat("class C {\n"
1474                "  foo() {}\n"
1475                "  [bar]() {}\n"
1476                "}\n");
1477   verifyFormat("class C {\n  private x: string = 12;\n}");
1478   verifyFormat("class C {\n  private static x: string = 12;\n}");
1479   verifyFormat("class C {\n  static x(): string {\n    return 'asd';\n  }\n}");
1480   verifyFormat("class C extends P implements I {}");
1481   verifyFormat("class C extends p.P implements i.I {}");
1482   verifyFormat(
1483       "x(class {\n"
1484       "  a(): A {}\n"
1485       "});");
1486   verifyFormat("class Test {\n"
1487                "  aaaaaaaaaaaaaaaa(aaaaaaaaaaaaaaa: aaaaaaaaaaaaaaaaaaaa):\n"
1488                "      aaaaaaaaaaaaaaaaaaaaaa {}\n"
1489                "}");
1490   verifyFormat("foo = class Name {\n"
1491                "  constructor() {}\n"
1492                "};");
1493   verifyFormat("foo = class {\n"
1494                "  constructor() {}\n"
1495                "};");
1496   verifyFormat("class C {\n"
1497                "  x: {y: Z;} = {};\n"
1498                "  private y: {y: Z;} = {};\n"
1499                "}");
1500 
1501   // ':' is not a type declaration here.
1502   verifyFormat("class X {\n"
1503                "  subs = {\n"
1504                "    'b': {\n"
1505                "      'c': 1,\n"
1506                "    },\n"
1507                "  };\n"
1508                "}");
1509   verifyFormat("@Component({\n"
1510                "  moduleId: module.id,\n"
1511                "})\n"
1512                "class SessionListComponent implements OnDestroy, OnInit {\n"
1513                "}");
1514 }
1515 
1516 TEST_F(FormatTestJS, InterfaceDeclarations) {
1517   verifyFormat("interface I {\n"
1518                "  x: string;\n"
1519                "  enum: string[];\n"
1520                "  enum?: string[];\n"
1521                "}\n"
1522                "var y;");
1523   // Ensure that state is reset after parsing the interface.
1524   verifyFormat("interface a {}\n"
1525                "export function b() {}\n"
1526                "var x;");
1527 
1528   // Arrays of object type literals.
1529   verifyFormat("interface I {\n"
1530                "  o: {}[];\n"
1531                "}");
1532 }
1533 
1534 TEST_F(FormatTestJS, ObjectTypesInExtendsImplements) {
1535   verifyFormat("class C extends {} {}");
1536   verifyFormat("class C implements {bar: number} {}");
1537   // Somewhat odd, but probably closest to reasonable formatting?
1538   verifyFormat("class C implements {\n"
1539                "  bar: number,\n"
1540                "  baz: string,\n"
1541                "} {}");
1542   verifyFormat("class C<P extends {}> {}");
1543 }
1544 
1545 TEST_F(FormatTestJS, EnumDeclarations) {
1546   verifyFormat("enum Foo {\n"
1547                "  A = 1,\n"
1548                "  B\n"
1549                "}");
1550   verifyFormat("export /* somecomment*/ enum Foo {\n"
1551                "  A = 1,\n"
1552                "  B\n"
1553                "}");
1554   verifyFormat("enum Foo {\n"
1555                "  A = 1,  // comment\n"
1556                "  B\n"
1557                "}\n"
1558                "var x = 1;");
1559   verifyFormat("const enum Foo {\n"
1560                "  A = 1,\n"
1561                "  B\n"
1562                "}");
1563   verifyFormat("export const enum Foo {\n"
1564                "  A = 1,\n"
1565                "  B\n"
1566                "}");
1567 }
1568 
1569 TEST_F(FormatTestJS, Decorators) {
1570   verifyFormat("@A\nclass C {\n}");
1571   verifyFormat("@A({arg: 'value'})\nclass C {\n}");
1572   verifyFormat("@A\n@B\nclass C {\n}");
1573   verifyFormat("class C {\n  @A x: string;\n}");
1574   verifyFormat("class C {\n"
1575                "  @A\n"
1576                "  private x(): string {\n"
1577                "    return 'y';\n"
1578                "  }\n"
1579                "}");
1580   verifyFormat("class C {\n"
1581                "  private x(@A x: string) {}\n"
1582                "}");
1583   verifyFormat("class X {}\n"
1584                "class Y {}");
1585   verifyFormat("class X {\n"
1586                "  @property() private isReply = false;\n"
1587                "}\n");
1588 }
1589 
1590 TEST_F(FormatTestJS, TypeAliases) {
1591   verifyFormat("type X = number;\n"
1592                "class C {}");
1593   verifyFormat("type X<Y> = Z<Y>;");
1594   verifyFormat("type X = {\n"
1595                "  y: number\n"
1596                "};\n"
1597                "class C {}");
1598   verifyFormat("export type X = {\n"
1599                "  a: string,\n"
1600                "  b?: string,\n"
1601                "};\n");
1602 }
1603 
1604 TEST_F(FormatTestJS, TypeInterfaceLineWrapping) {
1605   const FormatStyle &Style = getGoogleJSStyleWithColumns(20);
1606   verifyFormat("type LongTypeIsReallyUnreasonablyLong =\n"
1607                "    string;\n",
1608                "type LongTypeIsReallyUnreasonablyLong = string;\n",
1609                Style);
1610   verifyFormat(
1611       "interface AbstractStrategyFactoryProvider {\n"
1612       "  a: number\n"
1613       "}\n",
1614       "interface AbstractStrategyFactoryProvider { a: number }\n",
1615       Style);
1616 }
1617 
1618 TEST_F(FormatTestJS, RemoveEmptyLinesInArrowFunctions) {
1619   verifyFormat("x = () => {\n"
1620                "  foo();\n"
1621                "};\n",
1622                "x = () => {\n"
1623                "\n"
1624                "  foo();\n"
1625                "\n"
1626                "};\n");
1627 }
1628 
1629 TEST_F(FormatTestJS, Modules) {
1630   verifyFormat("import SomeThing from 'some/module.js';");
1631   verifyFormat("import {X, Y} from 'some/module.js';");
1632   verifyFormat("import a, {X, Y} from 'some/module.js';");
1633   verifyFormat("import {X, Y,} from 'some/module.js';");
1634   verifyFormat("import {X as myLocalX, Y as myLocalY} from 'some/module.js';");
1635   // Ensure Automatic Semicolon Insertion does not break on "as\n".
1636   verifyFormat("import {X as myX} from 'm';", "import {X as\n"
1637                                               " myX} from 'm';");
1638   verifyFormat("import * as lib from 'some/module.js';");
1639   verifyFormat("var x = {import: 1};\nx.import = 2;");
1640 
1641   verifyFormat("export function fn() {\n"
1642                "  return 'fn';\n"
1643                "}");
1644   verifyFormat("export function A() {}\n"
1645                "export default function B() {}\n"
1646                "export function C() {}");
1647   verifyFormat("export default () => {\n"
1648                "  let x = 1;\n"
1649                "  return x;\n"
1650                "}");
1651   verifyFormat("export const x = 12;");
1652   verifyFormat("export default class X {}");
1653   verifyFormat("export {X, Y} from 'some/module.js';");
1654   verifyFormat("export {X, Y,} from 'some/module.js';");
1655   verifyFormat("export {SomeVeryLongExport as X, "
1656                "SomeOtherVeryLongExport as Y} from 'some/module.js';");
1657   // export without 'from' is wrapped.
1658   verifyFormat("export let someRatherLongVariableName =\n"
1659                "    someSurprisinglyLongVariable + someOtherRatherLongVar;");
1660   // ... but not if from is just an identifier.
1661   verifyFormat("export {\n"
1662                "  from as from,\n"
1663                "  someSurprisinglyLongVariable as\n"
1664                "      from\n"
1665                "};",
1666                getGoogleJSStyleWithColumns(20));
1667   verifyFormat("export class C {\n"
1668                "  x: number;\n"
1669                "  y: string;\n"
1670                "}");
1671   verifyFormat("export class X { y: number; }");
1672   verifyFormat("export abstract class X { y: number; }");
1673   verifyFormat("export default class X { y: number }");
1674   verifyFormat("export default function() {\n  return 1;\n}");
1675   verifyFormat("export var x = 12;");
1676   verifyFormat("class C {}\n"
1677                "export function f() {}\n"
1678                "var v;");
1679   verifyFormat("export var x: number = 12;");
1680   verifyFormat("export const y = {\n"
1681                "  a: 1,\n"
1682                "  b: 2\n"
1683                "};");
1684   verifyFormat("export enum Foo {\n"
1685                "  BAR,\n"
1686                "  // adsdasd\n"
1687                "  BAZ\n"
1688                "}");
1689   verifyFormat("export default [\n"
1690                "  aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,\n"
1691                "  bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb\n"
1692                "];");
1693   verifyFormat("export default [];");
1694   verifyFormat("export default () => {};");
1695   verifyFormat("export interface Foo { foo: number; }\n"
1696                "export class Bar {\n"
1697                "  blah(): string {\n"
1698                "    return this.blah;\n"
1699                "  };\n"
1700                "}");
1701 }
1702 
1703 TEST_F(FormatTestJS, ImportWrapping) {
1704   verifyFormat("import {VeryLongImportsAreAnnoying, VeryLongImportsAreAnnoying,"
1705                " VeryLongImportsAreAnnoying, VeryLongImportsAreAnnoying"
1706                "} from 'some/module.js';");
1707   FormatStyle Style = getGoogleJSStyleWithColumns(80);
1708   Style.JavaScriptWrapImports = true;
1709   verifyFormat("import {\n"
1710                "  VeryLongImportsAreAnnoying,\n"
1711                "  VeryLongImportsAreAnnoying,\n"
1712                "  VeryLongImportsAreAnnoying,\n"
1713                "} from 'some/module.js';",
1714                Style);
1715   verifyFormat("import {\n"
1716                "  A,\n"
1717                "  A,\n"
1718                "} from 'some/module.js';",
1719                Style);
1720   verifyFormat("export {\n"
1721                "  A,\n"
1722                "  A,\n"
1723                "} from 'some/module.js';",
1724                Style);
1725   Style.ColumnLimit = 40;
1726   // Using this version of verifyFormat because test::messUp hides the issue.
1727   verifyFormat("import {\n"
1728                "  A,\n"
1729                "} from\n"
1730                "    'some/path/longer/than/column/limit/module.js';",
1731                " import  {  \n"
1732                "    A,  \n"
1733                "  }    from\n"
1734                "      'some/path/longer/than/column/limit/module.js'  ; ",
1735                Style);
1736 }
1737 
1738 TEST_F(FormatTestJS, TemplateStrings) {
1739   // Keeps any whitespace/indentation within the template string.
1740   verifyFormat("var x = `hello\n"
1741             "     ${name}\n"
1742             "  !`;",
1743             "var x    =    `hello\n"
1744                    "     ${  name    }\n"
1745                    "  !`;");
1746 
1747   verifyFormat("var x =\n"
1748                "    `hello ${world}` >= some();",
1749                getGoogleJSStyleWithColumns(34)); // Barely doesn't fit.
1750   verifyFormat("var x = `hello ${world}` >= some();",
1751                getGoogleJSStyleWithColumns(35)); // Barely fits.
1752   verifyFormat("var x = `hellö ${wörld}` >= söme();",
1753                getGoogleJSStyleWithColumns(35)); // Fits due to UTF-8.
1754   verifyFormat("var x = `hello\n"
1755             "  ${world}` >=\n"
1756             "    some();",
1757             "var x =\n"
1758                    "    `hello\n"
1759                    "  ${world}` >= some();",
1760                    getGoogleJSStyleWithColumns(21)); // Barely doesn't fit.
1761   verifyFormat("var x = `hello\n"
1762             "  ${world}` >= some();",
1763             "var x =\n"
1764                    "    `hello\n"
1765                    "  ${world}` >= some();",
1766                    getGoogleJSStyleWithColumns(22)); // Barely fits.
1767 
1768   verifyFormat("var x =\n"
1769                "    `h`;",
1770                getGoogleJSStyleWithColumns(11));
1771   verifyFormat("var x =\n    `multi\n  line`;", "var x = `multi\n  line`;",
1772                getGoogleJSStyleWithColumns(13));
1773   verifyFormat("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(\n"
1774                "    `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa`);");
1775   // Repro for an obscure width-miscounting issue with template strings.
1776   verifyFormat(
1777       "someLongVariable =\n"
1778       "    "
1779       "`${logPrefix[11]}/${logPrefix[12]}/${logPrefix[13]}${logPrefix[14]}`;",
1780       "someLongVariable = "
1781       "`${logPrefix[11]}/${logPrefix[12]}/${logPrefix[13]}${logPrefix[14]}`;");
1782 
1783   // Make sure template strings get a proper ColumnWidth assigned, even if they
1784   // are first token in line.
1785   verifyFormat(
1786       "var a = aaaaaaaaaaaaaaaaaaaaaaaaaaaa ||\n"
1787       "    `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa`;");
1788 
1789   // Two template strings.
1790   verifyFormat("var x = `hello` == `hello`;");
1791 
1792   // Comments in template strings.
1793   verifyFormat("var x = `//a`;\n"
1794             "var y;",
1795             "var x =\n `//a`;\n"
1796                    "var y  ;");
1797   verifyFormat("var x = `/*a`;\n"
1798                "var y;",
1799                "var x =\n `/*a`;\n"
1800                "var y;");
1801   // Unterminated string literals in a template string.
1802   verifyFormat("var x = `'`;  // comment with matching quote '\n"
1803                "var y;");
1804   verifyFormat("var x = `\"`;  // comment with matching quote \"\n"
1805                "var y;");
1806   verifyFormat("it(`'aaaaaaaaaaaaaaa   `, aaaaaaaaa);",
1807                "it(`'aaaaaaaaaaaaaaa   `,   aaaaaaaaa) ;",
1808                getGoogleJSStyleWithColumns(40));
1809   // Backticks in a comment - not a template string.
1810   verifyFormat("var x = 1  // `/*a`;\n"
1811                "    ;",
1812                "var x =\n 1  // `/*a`;\n"
1813                "    ;");
1814   verifyFormat("/* ` */ var x = 1; /* ` */", "/* ` */ var x\n= 1; /* ` */");
1815   // Comment spans multiple template strings.
1816   verifyFormat("var x = `/*a`;\n"
1817                "var y = ` */ `;",
1818                "var x =\n `/*a`;\n"
1819                "var y =\n ` */ `;");
1820   // Escaped backtick.
1821   verifyFormat("var x = ` \\` a`;\n"
1822                "var y;",
1823                "var x = ` \\` a`;\n"
1824                "var y;");
1825   // Escaped dollar.
1826   verifyFormat("var x = ` \\${foo}`;\n");
1827 
1828   // The token stream can contain two string_literals in sequence, but that
1829   // doesn't mean that they are implicitly concatenated in JavaScript.
1830   verifyFormat("var f = `aaaa ${a ? 'a' : 'b'}`;");
1831 
1832   // Ensure that scopes are appropriately set around evaluated expressions in
1833   // template strings.
1834   verifyFormat("var f = `aaaaaaaaaaaaa:${aaaaaaa.aaaaa} aaaaaaaa\n"
1835                "         aaaaaaaaaaaaa:${aaaaaaa.aaaaa} aaaaaaaa`;",
1836                "var f = `aaaaaaaaaaaaa:${aaaaaaa.  aaaaa} aaaaaaaa\n"
1837                "         aaaaaaaaaaaaa:${  aaaaaaa. aaaaa} aaaaaaaa`;");
1838   verifyFormat("var x = someFunction(`${})`)  //\n"
1839                "            .oooooooooooooooooon();");
1840   verifyFormat("var x = someFunction(`${aaaa}${\n"
1841                "    aaaaa(  //\n"
1842                "        aaaaa)})`);");
1843 }
1844 
1845 TEST_F(FormatTestJS, TemplateStringMultiLineExpression) {
1846   verifyFormat("var f = `aaaaaaaaaaaaaaaaaa: ${\n"
1847                "    aaaaa +  //\n"
1848                "    bbbb}`;",
1849                "var f = `aaaaaaaaaaaaaaaaaa: ${aaaaa +  //\n"
1850                "                               bbbb}`;");
1851   verifyFormat("var f = `\n"
1852                "  aaaaaaaaaaaaaaaaaa: ${\n"
1853                "    aaaaa +  //\n"
1854                "    bbbb}`;",
1855                "var f  =  `\n"
1856                "  aaaaaaaaaaaaaaaaaa: ${   aaaaa  +  //\n"
1857                "                        bbbb }`;");
1858   verifyFormat("var f = `\n"
1859                "  aaaaaaaaaaaaaaaaaa: ${\n"
1860                "    someFunction(\n"
1861                "        aaaaa +  //\n"
1862                "        bbbb)}`;",
1863                "var f  =  `\n"
1864                "  aaaaaaaaaaaaaaaaaa: ${someFunction (\n"
1865                "                            aaaaa  +   //\n"
1866                "                            bbbb)}`;");
1867 
1868   // It might be preferable to wrap before "someFunction".
1869   verifyFormat("var f = `\n"
1870                "  aaaaaaaaaaaaaaaaaa: ${someFunction({\n"
1871                "  aaaa: aaaaa,\n"
1872                "  bbbb: bbbbb,\n"
1873                "})}`;",
1874                "var f  =  `\n"
1875                "  aaaaaaaaaaaaaaaaaa: ${someFunction ({\n"
1876                "                          aaaa:  aaaaa,\n"
1877                "                          bbbb:  bbbbb,\n"
1878                "                        })}`;");
1879 }
1880 
1881 TEST_F(FormatTestJS, TemplateStringASI) {
1882   verifyFormat("var x = `hello${world}`;", "var x = `hello${\n"
1883                                            "    world\n"
1884                                            "}`;");
1885 }
1886 
1887 TEST_F(FormatTestJS, NestedTemplateStrings) {
1888   verifyFormat(
1889       "var x = `<ul>${xs.map(x => `<li>${x}</li>`).join('\\n')}</ul>`;");
1890   verifyFormat("var x = `he${({text: 'll'}.text)}o`;");
1891 
1892   // Crashed at some point.
1893   verifyFormat("}");
1894 }
1895 
1896 TEST_F(FormatTestJS, TaggedTemplateStrings) {
1897   verifyFormat("var x = html`<ul>`;");
1898   verifyFormat("yield `hello`;");
1899 }
1900 
1901 TEST_F(FormatTestJS, CastSyntax) {
1902   verifyFormat("var x = <type>foo;");
1903   verifyFormat("var x = foo as type;");
1904   verifyFormat("let x = (a + b) as\n"
1905                "    LongTypeIsLong;",
1906                getGoogleJSStyleWithColumns(20));
1907   verifyFormat("foo = <Bar[]>[\n"
1908                "  1,  //\n"
1909                "  2\n"
1910                "];");
1911   verifyFormat("var x = [{x: 1} as type];");
1912   verifyFormat("x = x as [a, b];");
1913   verifyFormat("x = x as {a: string};");
1914   verifyFormat("x = x as (string);");
1915   verifyFormat("x = x! as (string);");
1916   verifyFormat("x = y! in z;");
1917   verifyFormat("var x = something.someFunction() as\n"
1918                "    something;",
1919                getGoogleJSStyleWithColumns(40));
1920 }
1921 
1922 TEST_F(FormatTestJS, TypeArguments) {
1923   verifyFormat("class X<Y> {}");
1924   verifyFormat("new X<Y>();");
1925   verifyFormat("foo<Y>(a);");
1926   verifyFormat("var x: X<Y>[];");
1927   verifyFormat("class C extends D<E> implements F<G>, H<I> {}");
1928   verifyFormat("function f(a: List<any> = null) {}");
1929   verifyFormat("function f(): List<any> {}");
1930   verifyFormat("function aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa():\n"
1931                "    bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb {}");
1932   verifyFormat("function aaaaaaaaaa(\n"
1933                "    aaaaaaaaaaaaaaaa: aaaaaaaaaaaaaaaaaaa,\n"
1934                "    aaaaaaaaaaaaaaaa: aaaaaaaaaaaaaaaaaaa):\n"
1935                "    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa {}");
1936 }
1937 
1938 TEST_F(FormatTestJS, UserDefinedTypeGuards) {
1939   verifyFormat(
1940       "function foo(check: Object):\n"
1941       "    check is {foo: string, bar: string, baz: string, foobar: string} {\n"
1942       "  return 'bar' in check;\n"
1943       "}\n");
1944 }
1945 
1946 TEST_F(FormatTestJS, OptionalTypes) {
1947   verifyFormat("function x(a?: b, c?, d?) {}");
1948   verifyFormat("class X {\n"
1949                "  y?: z;\n"
1950                "  z?;\n"
1951                "}");
1952   verifyFormat("interface X {\n"
1953                "  y?(): z;\n"
1954                "}");
1955   verifyFormat("constructor({aa}: {\n"
1956                "  aa?: string,\n"
1957                "  aaaaaaaa?: string,\n"
1958                "  aaaaaaaaaaaaaaa?: boolean,\n"
1959                "  aaaaaa?: List<string>\n"
1960                "}) {}");
1961 }
1962 
1963 TEST_F(FormatTestJS, IndexSignature) {
1964   verifyFormat("var x: {[k: string]: v};");
1965 }
1966 
1967 TEST_F(FormatTestJS, WrapAfterParen) {
1968   verifyFormat("xxxxxxxxxxx(\n"
1969                "    aaa, aaa);",
1970                getGoogleJSStyleWithColumns(20));
1971   verifyFormat("xxxxxxxxxxx(\n"
1972                "    aaa, aaa, aaa,\n"
1973                "    aaa, aaa, aaa);",
1974                getGoogleJSStyleWithColumns(20));
1975   verifyFormat("xxxxxxxxxxx(\n"
1976                "    aaaaaaaaaaaaaaaaaaaaaaaa,\n"
1977                "    function(x) {\n"
1978                "      y();  //\n"
1979                "    });",
1980                getGoogleJSStyleWithColumns(40));
1981   verifyFormat("while (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa &&\n"
1982                "       bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb) {\n}");
1983 }
1984 
1985 TEST_F(FormatTestJS, JSDocAnnotations) {
1986   verifyFormat("/**\n"
1987                " * @export {this.is.a.long.path.to.a.Type}\n"
1988                " */",
1989                "/**\n"
1990                " * @export {this.is.a.long.path.to.a.Type}\n"
1991                " */",
1992                getGoogleJSStyleWithColumns(20));
1993   verifyFormat("/**\n"
1994                " * @mods {this.is.a.long.path.to.a.Type}\n"
1995                " */",
1996                "/**\n"
1997                " * @mods {this.is.a.long.path.to.a.Type}\n"
1998                " */",
1999                getGoogleJSStyleWithColumns(20));
2000   verifyFormat("/**\n"
2001                " * @param {this.is.a.long.path.to.a.Type}\n"
2002                " */",
2003                "/**\n"
2004                " * @param {this.is.a.long.path.to.a.Type}\n"
2005                " */",
2006                getGoogleJSStyleWithColumns(20));
2007   verifyFormat("/**\n"
2008                " * @see http://very/very/long/url/is/long\n"
2009                " */",
2010                "/**\n"
2011                " * @see http://very/very/long/url/is/long\n"
2012                " */",
2013                getGoogleJSStyleWithColumns(20));
2014   verifyFormat(
2015       "/**\n"
2016       " * @param This is a\n"
2017       " * long comment but\n"
2018       " * no type\n"
2019       " */",
2020       "/**\n"
2021       " * @param This is a long comment but no type\n"
2022       " */",
2023       getGoogleJSStyleWithColumns(20));
2024   // Don't break @param line, but reindent it and reflow unrelated lines.
2025   verifyFormat("{\n"
2026                "  /**\n"
2027                "   * long long long\n"
2028                "   * long\n"
2029                "   * @param {this.is.a.long.path.to.a.Type} a\n"
2030                "   * long long long\n"
2031                "   * long long\n"
2032                "   */\n"
2033                "  function f(a) {}\n"
2034                "}",
2035                "{\n"
2036                "/**\n"
2037                " * long long long long\n"
2038                " * @param {this.is.a.long.path.to.a.Type} a\n"
2039                " * long long long long\n"
2040                " * long\n"
2041                " */\n"
2042                "  function f(a) {}\n"
2043                "}",
2044                getGoogleJSStyleWithColumns(20));
2045 }
2046 
2047 TEST_F(FormatTestJS, RequoteStringsSingle) {
2048   verifyFormat("var x = 'foo';", "var x = \"foo\";");
2049   verifyFormat("var x = 'fo\\'o\\'';", "var x = \"fo'o'\";");
2050   verifyFormat("var x = 'fo\\'o\\'';", "var x = \"fo\\'o'\";");
2051   verifyFormat(
2052       "var x =\n"
2053       "    'foo\\'';",
2054       // Code below is 15 chars wide, doesn't fit into the line with the
2055       // \ escape added.
2056       "var x = \"foo'\";", getGoogleJSStyleWithColumns(15));
2057   // Removes no-longer needed \ escape from ".
2058   verifyFormat("var x = 'fo\"o';", "var x = \"fo\\\"o\";");
2059   // Code below fits into 15 chars *after* removing the \ escape.
2060   verifyFormat("var x = 'fo\"o';", "var x = \"fo\\\"o\";",
2061                getGoogleJSStyleWithColumns(15));
2062   verifyFormat("// clang-format off\n"
2063                "let x = \"double\";\n"
2064                "// clang-format on\n"
2065                "let x = 'single';\n",
2066                "// clang-format off\n"
2067                "let x = \"double\";\n"
2068                "// clang-format on\n"
2069                "let x = \"single\";\n");
2070 }
2071 
2072 TEST_F(FormatTestJS, RequoteAndIndent) {
2073   verifyFormat("let x = someVeryLongFunctionThatGoesOnAndOn(\n"
2074                "    'double quoted string that needs wrapping');",
2075                "let x = someVeryLongFunctionThatGoesOnAndOn("
2076                "\"double quoted string that needs wrapping\");");
2077 
2078   verifyFormat("let x =\n"
2079                "    'foo\\'oo';\n"
2080                "let x =\n"
2081                "    'foo\\'oo';",
2082                "let x=\"foo'oo\";\n"
2083                "let x=\"foo'oo\";",
2084                getGoogleJSStyleWithColumns(15));
2085 }
2086 
2087 TEST_F(FormatTestJS, RequoteStringsDouble) {
2088   FormatStyle DoubleQuotes = getGoogleStyle(FormatStyle::LK_JavaScript);
2089   DoubleQuotes.JavaScriptQuotes = FormatStyle::JSQS_Double;
2090   verifyFormat("var x = \"foo\";", DoubleQuotes);
2091   verifyFormat("var x = \"foo\";", "var x = 'foo';", DoubleQuotes);
2092   verifyFormat("var x = \"fo'o\";", "var x = 'fo\\'o';", DoubleQuotes);
2093 }
2094 
2095 TEST_F(FormatTestJS, RequoteStringsLeave) {
2096   FormatStyle LeaveQuotes = getGoogleStyle(FormatStyle::LK_JavaScript);
2097   LeaveQuotes.JavaScriptQuotes = FormatStyle::JSQS_Leave;
2098   verifyFormat("var x = \"foo\";", LeaveQuotes);
2099   verifyFormat("var x = 'foo';", LeaveQuotes);
2100 }
2101 
2102 TEST_F(FormatTestJS, SupportShebangLines) {
2103   verifyFormat("#!/usr/bin/env node\n"
2104                "var x = hello();",
2105                "#!/usr/bin/env node\n"
2106                "var x   =  hello();");
2107 }
2108 
2109 TEST_F(FormatTestJS, NonNullAssertionOperator) {
2110   verifyFormat("let x = foo!.bar();\n");
2111   verifyFormat("let x = foo ? bar! : baz;\n");
2112   verifyFormat("let x = !foo;\n");
2113   verifyFormat("let x = foo[0]!;\n");
2114   verifyFormat("let x = (foo)!;\n");
2115   verifyFormat("let x = x(foo!);\n");
2116   verifyFormat(
2117       "a.aaaaaa(a.a!).then(\n"
2118       "    x => x(x));\n",
2119       getGoogleJSStyleWithColumns(20));
2120   verifyFormat("let x = foo! - 1;\n");
2121   verifyFormat("let x = {foo: 1}!;\n");
2122   verifyFormat(
2123       "let x = hello.foo()!\n"
2124       "            .foo()!\n"
2125       "            .foo()!\n"
2126       "            .foo()!;\n",
2127       getGoogleJSStyleWithColumns(20));
2128   verifyFormat("let x = namespace!;\n");
2129   verifyFormat("return !!x;\n");
2130 }
2131 
2132 TEST_F(FormatTestJS, Conditional) {
2133   verifyFormat("y = x ? 1 : 2;");
2134   verifyFormat("x ? 1 : 2;");
2135   verifyFormat("class Foo {\n"
2136                "  field = true ? 1 : 2;\n"
2137                "  method(a = true ? 1 : 2) {}\n"
2138                "}");
2139 }
2140 
2141 TEST_F(FormatTestJS, ImportComments) {
2142   verifyFormat("import {x} from 'x';  // from some location",
2143                getGoogleJSStyleWithColumns(25));
2144   verifyFormat("// taze: x from 'location'", getGoogleJSStyleWithColumns(10));
2145   verifyFormat("/// <reference path=\"some/location\" />", getGoogleJSStyleWithColumns(10));
2146 }
2147 
2148 TEST_F(FormatTestJS, Exponentiation) {
2149   verifyFormat("squared = x ** 2;");
2150   verifyFormat("squared **= 2;");
2151 }
2152 
2153 TEST_F(FormatTestJS, NestedLiterals) {
2154   FormatStyle FourSpaces = getGoogleJSStyleWithColumns(15);
2155   FourSpaces.IndentWidth = 4;
2156   verifyFormat("var l = [\n"
2157                "    [\n"
2158                "        1,\n"
2159                "    ],\n"
2160                "];", FourSpaces);
2161   verifyFormat("var l = [\n"
2162                "    {\n"
2163                "        1: 1,\n"
2164                "    },\n"
2165                "];", FourSpaces);
2166   verifyFormat("someFunction(\n"
2167                "    p1,\n"
2168                "    [\n"
2169                "        1,\n"
2170                "    ],\n"
2171                ");", FourSpaces);
2172   verifyFormat("someFunction(\n"
2173                "    p1,\n"
2174                "    {\n"
2175                "        1: 1,\n"
2176                "    },\n"
2177                ");", FourSpaces);
2178   verifyFormat("var o = {\n"
2179                "    1: 1,\n"
2180                "    2: {\n"
2181                "        3: 3,\n"
2182                "    },\n"
2183                "};", FourSpaces);
2184   verifyFormat("var o = {\n"
2185                "    1: 1,\n"
2186                "    2: [\n"
2187                "        3,\n"
2188                "    ],\n"
2189                "};", FourSpaces);
2190 }
2191 
2192 TEST_F(FormatTestJS, BackslashesInComments) {
2193   verifyFormat("// hello \\\n"
2194                "if (x) foo();\n",
2195                "// hello \\\n"
2196                "     if ( x) \n"
2197                "   foo();\n");
2198   verifyFormat("/* ignore \\\n"
2199                " */\n"
2200                "if (x) foo();\n",
2201                "/* ignore \\\n"
2202                " */\n"
2203                " if (  x) foo();\n");
2204   verifyFormat("// st \\ art\\\n"
2205                "// comment"
2206                "// continue \\\n"
2207                "formatMe();\n",
2208                "// st \\ art\\\n"
2209                "// comment"
2210                "// continue \\\n"
2211                "formatMe( );\n");
2212 }
2213 
2214 } // end namespace tooling
2215 } // end namespace clang
2216