TypeScript/tests/cases/fourslash/forceIndentAfterNewLineInsert.ts
2014-12-14 12:22:36 -08:00

18 lines
359 B
TypeScript

///<reference path="fourslash.ts"/>
////function f()
////{ return 0; }
////function g()
////{ function h() {
////return 0;
////}}
format.document();
verify.currentFileContentIs(
"function f()\n" +
"{ return 0; }\n" +
"function g() {\n" +
" function h() {\n" +
" return 0;\n" +
" }\n" +
"}"
);