TypeScript/tests/cases/fourslash/forceIndentAfterNewLineInsert.ts
2017-06-20 11:52:05 -07:00

24 lines
371 B
TypeScript

///<reference path="fourslash.ts"/>
////function f1()
////{ return 0; }
////function f2()
////{
////return 0;
////}
////function g()
////{ function h() {
////return 0;
////}}
format.document();
verify.currentFileContentIs(
`function f1() { return 0; }
function f2() {
return 0;
}
function g() {
function h() {
return 0;
}
}`);