mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 12:51:30 -05:00
format intersection type
This commit is contained in:
committed by
Vladimir Matveev
parent
e484305c98
commit
b8071f99bc
26
tests/cases/fourslash/formatTypeOperation.ts
Normal file
26
tests/cases/fourslash/formatTypeOperation.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
/// <reference path="fourslash.ts"/>
|
||||
|
||||
////type Union = number | {}/*formatBarOperator*/
|
||||
/////*indent*/
|
||||
////|string/*autoformat*/
|
||||
////type Intersection = Foo & Bar;/*formatAmpersandOperator*/
|
||||
////type Complexed =
|
||||
//// Foo&
|
||||
//// Bar|/*unionTypeNoIndent*/
|
||||
//// Baz;/*intersectionTypeNoIndent*/
|
||||
|
||||
format.document();
|
||||
|
||||
goTo.marker("formatBarOperator");
|
||||
verify.currentLineContentIs("type Union = number | {}");
|
||||
goTo.marker("indent");
|
||||
verify.indentationIs(4);
|
||||
goTo.marker("autoformat");
|
||||
verify.currentLineContentIs(" | string");
|
||||
goTo.marker("formatAmpersandOperator");
|
||||
verify.currentLineContentIs("type Intersection = Foo & Bar;");
|
||||
|
||||
goTo.marker("unionTypeNoIndent");
|
||||
verify.currentLineContentIs("Bar |");
|
||||
goTo.marker("intersectionTypeNoIndent");
|
||||
verify.currentLineContentIs("Baz;");
|
||||
@@ -1,14 +0,0 @@
|
||||
/// <reference path="fourslash.ts"/>
|
||||
|
||||
////type Union = number | {}/*formatOperator*/
|
||||
/////*indent*/
|
||||
////|string/*autoformat*/
|
||||
|
||||
format.document();
|
||||
|
||||
goTo.marker("formatOperator");
|
||||
verify.currentLineContentIs("type Union = number | {}");
|
||||
goTo.marker("indent");
|
||||
verify.indentationIs(4);
|
||||
goTo.marker("autoformat");
|
||||
verify.currentLineContentIs(" | string");
|
||||
Reference in New Issue
Block a user