TypeScript/tests/cases/fourslash/multilineCommentBeforeOpenBrace.ts
2014-11-10 19:04:57 -08:00

18 lines
429 B
TypeScript

/// <reference path='fourslash.ts' />
////function test() /*1*//* %^ */
////{
//// if (true) /*2*//* %^ */
//// {
//// }
////}
////function a() {
//// /* %^ */ }/*3*/
debugger;
format.document();
goTo.marker('1');
verify.currentLineContentIs('function test() /* %^ */ {');
goTo.marker('2');
verify.currentLineContentIs(' if (true) /* %^ */ {');
goTo.marker('3');
verify.currentLineContentIs('}');