This commit is contained in:
Arthur Ozga
2017-06-21 15:05:15 -07:00
parent 0bd3d8c2eb
commit d1423739cd

View File

@@ -0,0 +1,52 @@
/// <reference path="fourslash.ts"/>
//// function foo(a?,b?) { b(a); }
////
//// (foo)(1, function() {/*4_0*/
//// });
////
//// /////////////
////
//// (
//// foo)(1, function () {/*4_1*/
//// });
//// (foo)
//// (1, function () {/*8_0*/
//// });
//// (foo)(1,
//// function () {/*8_1*/
//// });
//// (foo)(1, function()
//// {/*4_2*/
//// });
////
//// //////////////////////
////
//// (foo
//// )(1, function () {/*4_3*/
//// });
//// (foo
//// )
//// (1, function () {/*8_2*/
//// });
//// (foo
//// )(1,
//// function () {/*8_3*/
//// });
//// (foo
//// )(1, function()
//// {/*4_4*/
//// });
for (let i = 0; i < 5; ++i) {
goTo.marker(`4_${i}`);
edit.insertLine("");
verify.indentationIs(4);
}
for (let i = 1; i < 4; ++i) {
goTo.marker(`8_${i}`);
edit.insertLine("");
verify.indentationIs(8);
}