TypeScript/tests/cases/fourslash/quickInfoDisplayPartsParameters.ts

12 lines
408 B
TypeScript
Raw Normal View History

2014-11-21 09:48:30 +01:00
/// <reference path='fourslash.ts'/>
//// /** @return *crunch* */
//// function /*1*/foo(/*2*/param: string, /*3*/optionalParam?: string, /*4*/paramWithInitializer = "hello", .../*5*/restParam: string[]) {
//// /*6*/param = "Hello";
//// /*7*/optionalParam = "World";
//// /*8*/paramWithInitializer = "Hello";
//// /*9*/restParam[0] = "World";
//// }
2014-11-21 09:48:30 +01:00
verify.baselineQuickInfo();