TypeScript Array< T>.reduce< U>方法描述中包含不匹配的参数 翻译结果:Array< T>.reduce< U>方法描述中存在不匹配的参数,

relj7zay  于 8个月前  发布在  TypeScript
关注(0)|答案(2)|浏览(115)

Bug报告

文件 node_modules/typescript/lib/lib.es5.d.ts ,行号 1386、1392、1393、1399。在 reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T) 方法中的 previousValue 参数在 JSDoc 中命名为 accumulator ,而不是 previousValue ,这可能会导致在阅读提供的文档时产生混淆。

🔎 搜索词

Array<T>.reduce<U> , Array<T>.reduce<U>(callbackfn:(previousValue , accumulator

🕗 版本与回归信息

  • typescript 版本 4.4.4

⏯ Playground 链接

带有相关代码的 Playground 链接

💻 代码

  1. // Welcome to the TypeScript Playground, this is a website
  2. // which gives you a chance to write, share and learn TypeScript.
  3. // You could think of it in three ways:
  4. //
  5. // - A location to learn TypeScript where nothing can break
  6. // - A place to experiment with TypeScript syntax, and share the URLs with others
  7. // - A sandbox to experiment with different compiler features of TypeScript
  8. const anExampleVariable = "Hello World"
  9. console.log(anExampleVariable)
  10. const arr = ['foo', 'bar', 'baz', 'acc'];
  11. const reduceArr = arr.reduce((prev, curr) => {return prev.concat(curr);});
  12. // To learn more about the language, click above in "Examples" or "What's New".
  13. // Otherwise, get started by removing these comments and the world is your playground.

🙁 实际行为

previousValue 参数在 JSDoc 中命名为 accumulator

🙂 预期行为

要么 previousValue 参数应该在 JSDoc 中命名为 previousValue ,要么 callbackfn 的参数应该被重命名为 accumulator ,以避免混淆。

rvpgvaaj

rvpgvaaj1#

我可以试着拿这个并解决它吗?

ygya80vv

ygya80vv2#

请查看https://github.com/microsoft/TypeScript/blob/634d3a1db5c69c1425119a74045790a4d1dc3046/CONTRIBUTING.md#issue-claiming,您可以开始处理标记为Help Wanted的问题。您仍然对这个感兴趣吗?

相关问题