TypeScript/tests/cases/fourslash/smartIndentOnUnclosedFunctionDeclaration03.ts
2015-03-16 23:19:21 -07:00

12 lines
293 B
TypeScript

/// <reference path='fourslash.ts' />
////function f<A,B,C>/*1*/
function verifyIndentationAfterNewLine(marker: string, indentation: number): void {
goTo.marker(marker);
edit.insert("\r\n");
verify.indentationIs(indentation);
}
verifyIndentationAfterNewLine("1", 4);