microsoft / microsoft/TypeScript
Infinite type instantiation around recursive conditional types
まだ誰も着手していません。
- 主要言語
- Go
- スター
- 111k
- フォーク
- 14.3k
- 平均マージ
- 1日 19時間
- マージ済み PR(30日)
- 117
説明
🔎 Search Terms
infinite type instantiation excessively deep recursive conditional
🕗 Version & Regression Information
- This is the behavior in every version I tried, and I reviewed the FAQ for entries about infinite and recursive types.
⏯ Playground Link
💻 Code
type A<Q, S> = Q extends { a: any } ? A<Q["a"], S> : never;
interface B<T> {
f<Q>(q: Q): A<Q, T>;
}
type C = B<{}> extends B<infer X> ? X : never;
type X = C extends any ? true : false;
// ~ Type instantiation is excessively deep and possibly infinite.(2589)
🙁 Actual behavior
The last line errors out.
🙂 Expected behavior
The code should pass the type check.
Additional information about the issue
An alternative way to get the same error: https://www.typescriptlang.org/play/?ts=5.6.3#code/C4TwDgpgBAggPARQDRQMoD4oF4oKhAD2AgDsATAZygG8oBDALnpJCgF8oB+WRAbQCI6-ALooMUJiQgA3CACcA3ACglASxLE5AMzoBjaACE4AFUzUlUKFsToAFAEcmCAJRN4yKKeVsVZCLoAbOjloLQBXEl1gVQB7EigAWzoAawgjU1tgJmNXKHT0ZSU-QODQiKjY+OsMrM9c6RjVMkLrI2o2dDsk1INbEjCAgPoqOhZhmjZnZ2UgA
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
リンクされた TypeScript Playground の再現コードから始め、最後の conditional type で過剰なインスタンス化エラーが発生することを確認してください。issue ではリポジトリのファイルもテストも特定されていません。提供されたコードがエラーなしで型チェックを通過し、再帰的な conditional type の動作が回帰テストで引き続きカバーされていれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- typescript
- 領域
- compilers
- issue の種類
- バグ
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 25/100