TypeScript/tests/cases/fourslash/formattingOnModuleIndentation.ts
2015-03-02 14:41:44 -08:00

13 lines
359 B
TypeScript

/// <reference path='fourslash.ts' />
//// module Foo {
//// export module A . B . C { }/**/
//// }
format.document();
goTo.bof();
verify.currentLineContentIs("module Foo {");
goTo.marker();
verify.currentLineContentIs(" export module A.B.C { }");
goTo.eof();
verify.currentLineContentIs("}");