TypeScript/tests/cases/fourslash/formatParameter.ts

23 lines
481 B
TypeScript
Raw Normal View History

2015-08-27 15:59:10 +02:00
/// <reference path='fourslash.ts' />
////function foo(
//// first:
//// number,/*first*/
//// second: (
//// string/*second*/
//// ),
//// third:
//// (
//// boolean/*third*/
//// )
////) {
////}
format.document();
goTo.marker("first");
verify.currentLineContentIs(" number,");
goTo.marker("second");
verify.currentLineContentIs(" string");
goTo.marker("third");
verify.currentLineContentIs(" boolean");