TypeScript/tests/cases/fourslash/formattingSpaceBetweenOptionalChaining.ts

11 lines
261 B
TypeScript
Raw Normal View History

/// <reference path='fourslash.ts' />
/////*1*/a ?. b ?. c . d;
/////*2*/o . m() ?. length;
format.document();
goTo.marker("1");
verify.currentLineContentIs("a?.b?.c.d;");
goTo.marker("2");
verify.currentLineContentIs("o.m()?.length;");