TypeScript/tests/cases/fourslash/indentationInArrays.ts
Arthur Ozga 4b464ebca8 add tests
* verified that new tests show no regressions against master
2017-09-19 17:56:34 -07:00

22 lines
444 B
TypeScript

/// <reference path="fourslash.ts"/>
//// function foo() {
//// [/*8_0*/1,2,3];
//// [1/*8_1*/,2,3];
//// [1,/*8_2*/2,3];
//// [
//// 1,/*8_3*/2,3];
//// [1,2,3/*8_4*/];
//// [
//// 1,2,3/*8_5*/];
//// [1,2,3]/*8_6*/;
//// [
//// 1,2,3]/*8_7*/;
//// }
for (let i = 0; i < 8; ++i) {
goTo.marker(`8_${i}`);
edit.insertLine("");
verify.indentationIs(8);
}