1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
/// <reference path='fourslash.ts' />
// @filename: a.ts
/////**
//// * @param {number} notDefined1
//// * @param {number} notDefined2
//// * @param {number} a
//// * @param {number} b
//// */
////function foo(a: number, b: string, typo1: string, typo2: string) {
//// a;
//// b;
//// typo1;
//// typo2;
////}
verify.codeFixAvailable([
{ description: "Delete unused '@param' tag 'notDefined1'" },
{ description: "Rename '@param' tag name 'notDefined1' to 'typo1'" },
{ description: "Delete unused '@param' tag 'notDefined2'" },
{ description: "Rename '@param' tag name 'notDefined2' to 'typo1'" },
]);
verify.codeFix({
description: [ts.Diagnostics.Rename_param_tag_name_0_to_1.message, "notDefined1", "typo1"],
index: 1,
newFileContent:
`/**
* @param {number} typo1
* @param {number} notDefined2
* @param {number} a
* @param {number} b
*/
function foo(a: number, b: string, typo1: string, typo2: string) {
a;
b;
typo1;
typo2;
}`,
applyChanges: true
});
verify.codeFixAvailable([
{ description: "Delete unused '@param' tag 'notDefined2'" },
{ description: "Rename '@param' tag name 'notDefined2' to 'typo2'" },
]);
verify.codeFix({
description: [ts.Diagnostics.Rename_param_tag_name_0_to_1.message, "notDefined2", "typo2"],
index: 1,
newFileContent:
`/**
* @param {number} typo1
* @param {number} typo2
* @param {number} a
* @param {number} b
*/
function foo(a: number, b: string, typo1: string, typo2: string) {
a;
b;
typo1;
typo2;
}`,
});
|