TypeScript/tests/cases/fourslash/codeFixInferFromUsageRestParam3JS.ts
Nathan Shively-Sanders ce85ee5115
Move infer-from-usage earlier in codefix list (#28318)
This makes it appear before the ts-ignore codefix, specifically.
2018-11-02 15:39:27 -07:00

26 lines
471 B
TypeScript

/// <reference path='fourslash.ts' />
// @allowJs: true
// @checkJs: true
// @noImplicitAny: true
// @Filename: important.js
/////** @param {number} a */
////function f(a, [|...rest|]){
//// a;
//// rest.push(22);
////}
verify.codeFix({
description: "Infer parameter types from usage",
index: 0,
newFileContent:
`/**
* @param {number} a
* @param {number[]} rest
*/
function f(a, ...rest){
a;
rest.push(22);
}`,
});