TypeScript/tests/cases/fourslash/formattingWithLimitedSpan.ts

19 lines
409 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
/// <reference path="fourslash.ts" />
////if (true)
////{
/////*1*/debugger;/*end1*/
////if (true)
/////*2*/debugger;/*end2*/
////if (true) {
/////*3*/debugger;/*end3*/
////}
////}
for (var i = 1; i < 4; i++) {
var markerString = i.toString();
goTo.marker(markerString);
format.selection(markerString, "end" + markerString);
verify.currentLineContentIs(" debugger;");
}