Switched parameter name to array binding pattern.

This commit is contained in:
Daniel Rosenwasser 2015-09-25 11:43:29 -07:00
parent 81dabb4d51
commit 43a6eb8171

View File

@ -29,7 +29,7 @@ const enum Indentation {
//// foo();
//// /*2*/foo(a);
//// /*3*/foo(a, b);
//// /*4*/ foo(a, {x: string}, c);
//// /*4*/ foo(a, {x: string}, [c]);
//// /*5*/foo(a?, b?, ...args) {
//// }
////}
@ -66,7 +66,7 @@ confirmNormalizedJsDoc("4", Indentation.Indented,
*
* @param a
* @param param1
* @param c
* @param param2
*/`);
confirmNormalizedJsDoc("5", Indentation.Indented,