Skip to content

Commit f3b55b8

Browse files
committed
whitespace
1 parent 14374e6 commit f3b55b8

File tree

2 files changed

+76
-76
lines changed

2 files changed

+76
-76
lines changed

tests/cases/fourslash/thisPredicateMemberCompletions.ts

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,76 @@
11
/// <reference path="fourslash.ts" />
22

33
//// class FileSystemObject {
4-
//// get is/*1*/File(): this is Item {
5-
//// return this instanceof Item;
6-
//// }
7-
//// set is/*2*/File(param) {
8-
//// // noop
9-
//// }
10-
//// get is/*3*/Directory(): this is Directory {
11-
//// return this instanceof Directory;
12-
//// }
13-
//// is/*4*/Networked: this is (Networked & this);
14-
//// constructor(public path: string) {}
4+
//// get is/*1*/File(): this is Item {
5+
//// return this instanceof Item;
6+
//// }
7+
//// set is/*2*/File(param) {
8+
//// // noop
9+
//// }
10+
//// get is/*3*/Directory(): this is Directory {
11+
//// return this instanceof Directory;
12+
//// }
13+
//// is/*4*/Networked: this is (Networked & this);
14+
//// constructor(public path: string) {}
1515
//// }
1616
////
1717
//// class Item extends FileSystemObject {
18-
//// constructor(path: string, public content: string) { super(path); }
18+
//// constructor(path: string, public content: string) { super(path); }
1919
//// }
2020
//// class Directory extends FileSystemObject {
21-
//// children: FileSystemObject[];
21+
//// children: FileSystemObject[];
2222
//// }
2323
//// interface Networked {
24-
//// host: string;
24+
//// host: string;
2525
//// }
2626
////
2727
//// interface Sundries {
28-
//// broken: boolean;
28+
//// broken: boolean;
2929
//// }
3030
////
3131
//// interface Supplies {
32-
//// spoiled: boolean;
32+
//// spoiled: boolean;
3333
//// }
3434
////
3535
//// interface Crate<T> {
36-
//// contents: T;
37-
//// is/*5*/Sundries: this is Crate<Sundries>;
38-
//// is/*6*/Supplies: this is Crate<Supplies>;
39-
//// is/*7*/PackedTight: this is (this & {extraContents: T});
36+
//// contents: T;
37+
//// is/*5*/Sundries: this is Crate<Sundries>;
38+
//// is/*6*/Supplies: this is Crate<Supplies>;
39+
//// is/*7*/PackedTight: this is (this & {extraContents: T});
4040
//// }
4141
////
4242
//// const obj: FileSystemObject = new Item("/foo", "");
4343
//// if (obj.is/*8*/File) {
44-
//// obj./*9*/;
45-
//// if (obj.is/*10*/Networked) {
46-
//// obj./*11*/;
47-
//// }
44+
//// obj./*9*/;
45+
//// if (obj.is/*10*/Networked) {
46+
//// obj./*11*/;
47+
//// }
4848
//// }
4949
//// if (obj.is/*12*/Directory) {
50-
//// obj./*13*/;
51-
//// if (obj.is/*14*/Networked) {
52-
//// obj./*15*/;
53-
//// }
50+
//// obj./*13*/;
51+
//// if (obj.is/*14*/Networked) {
52+
//// obj./*15*/;
53+
//// }
5454
//// }
5555
//// if (obj.is/*16*/Networked) {
56-
//// obj./*17*/;
56+
//// obj./*17*/;
5757
//// }
5858
////
5959
//// const crate: Crate<any>;
6060
//// if (crate.is/*18*/PackedTight) {
61-
//// crate./*19*/;
61+
//// crate./*19*/;
6262
//// }
6363
//// if (crate.is/*20*/Sundries) {
64-
//// crate.contents./*21*/;
65-
//// if (crate.is/*22*/PackedTight) {
66-
//// crate./*23*/
67-
//// }
64+
//// crate.contents./*21*/;
65+
//// if (crate.is/*22*/PackedTight) {
66+
//// crate./*23*/
67+
//// }
6868
//// }
6969
//// if (crate.is/*24*/Supplies) {
70-
//// crate.contents./*25*/;
71-
//// if (crate.is/*26*/PackedTight) {
72-
//// crate./*27*/
73-
//// }
70+
//// crate.contents./*25*/;
71+
//// if (crate.is/*26*/PackedTight) {
72+
//// crate./*27*/
73+
//// }
7474
//// }
7575

7676
goTo.marker("9");

tests/cases/fourslash/thisPredicateMemberQuickInfo.ts

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,76 @@
11
/// <reference path="fourslash.ts" />
22

33
//// class FileSystemObject {
4-
//// get is/*1*/File(): this is Item {
5-
//// return this instanceof Item;
6-
//// }
7-
//// set is/*2*/File(param) {
8-
//// // noop
9-
//// }
10-
//// get is/*3*/Directory(): this is Directory {
11-
//// return this instanceof Directory;
12-
//// }
13-
//// is/*4*/Networked: this is (Networked & this);
14-
//// constructor(public path: string) {}
4+
//// get is/*1*/File(): this is Item {
5+
//// return this instanceof Item;
6+
//// }
7+
//// set is/*2*/File(param) {
8+
//// // noop
9+
//// }
10+
//// get is/*3*/Directory(): this is Directory {
11+
//// return this instanceof Directory;
12+
//// }
13+
//// is/*4*/Networked: this is (Networked & this);
14+
//// constructor(public path: string) {}
1515
//// }
1616
////
1717
//// class Item extends FileSystemObject {
18-
//// constructor(path: string, public content: string) { super(path); }
18+
//// constructor(path: string, public content: string) { super(path); }
1919
//// }
2020
//// class Directory extends FileSystemObject {
21-
//// children: FileSystemObject[];
21+
//// children: FileSystemObject[];
2222
//// }
2323
//// interface Networked {
24-
//// host: string;
24+
//// host: string;
2525
//// }
2626
////
2727
//// interface Sundries {
28-
//// broken: boolean;
28+
//// broken: boolean;
2929
//// }
3030
////
3131
//// interface Supplies {
32-
//// spoiled: boolean;
32+
//// spoiled: boolean;
3333
//// }
3434
////
3535
//// interface Crate<T> {
36-
//// contents: T;
37-
//// is/*5*/Sundries: this is Crate<Sundries>;
38-
//// is/*6*/Supplies: this is Crate<Supplies>;
39-
//// is/*7*/PackedTight: this is (this & {extraContents: T});
36+
//// contents: T;
37+
//// is/*5*/Sundries: this is Crate<Sundries>;
38+
//// is/*6*/Supplies: this is Crate<Supplies>;
39+
//// is/*7*/PackedTight: this is (this & {extraContents: T});
4040
//// }
4141
////
4242
//// const obj: FileSystemObject = new Item("/foo", "");
4343
//// if (obj.is/*8*/File) {
44-
//// obj./*9*/;
45-
//// if (obj.is/*10*/Networked) {
46-
//// obj./*11*/;
47-
//// }
44+
//// obj./*9*/;
45+
//// if (obj.is/*10*/Networked) {
46+
//// obj./*11*/;
47+
//// }
4848
//// }
4949
//// if (obj.is/*12*/Directory) {
50-
//// obj./*13*/;
51-
//// if (obj.is/*14*/Networked) {
52-
//// obj./*15*/;
53-
//// }
50+
//// obj./*13*/;
51+
//// if (obj.is/*14*/Networked) {
52+
//// obj./*15*/;
53+
//// }
5454
//// }
5555
//// if (obj.is/*16*/Networked) {
56-
//// obj./*17*/;
56+
//// obj./*17*/;
5757
//// }
5858
////
5959
//// const crate: Crate<any>;
6060
//// if (crate.is/*18*/PackedTight) {
61-
//// crate./*19*/;
61+
//// crate./*19*/;
6262
//// }
6363
//// if (crate.is/*20*/Sundries) {
64-
//// crate.contents./*21*/;
65-
//// if (crate.is/*22*/PackedTight) {
66-
//// crate./*23*/
67-
//// }
64+
//// crate.contents./*21*/;
65+
//// if (crate.is/*22*/PackedTight) {
66+
//// crate./*23*/
67+
//// }
6868
//// }
6969
//// if (crate.is/*24*/Supplies) {
70-
//// crate.contents./*25*/;
71-
//// if (crate.is/*26*/PackedTight) {
72-
//// crate./*27*/
73-
//// }
70+
//// crate.contents./*25*/;
71+
//// if (crate.is/*26*/PackedTight) {
72+
//// crate./*27*/
73+
//// }
7474
//// }
7575

7676
goTo.marker("1");

0 commit comments

Comments
 (0)