microsoft / microsoft/TypeScript
__metadata should register function that returns type instead of literal type
まだ誰も着手していません。
- 主要言語
- Go
- スター
- 111k
- フォーク
- 14.3k
- 平均マージ
- 2日 4時間
- マージ済み PR(30日)
- 132
説明
Imagine case with circular dependencies
class Car {
@Field owner: Person // !!! Error: Person is not defined.
}
class Person {
@Field car: Car;
}
// car has owner, owner has car
Typescript metadata would be emitted here like
eg.
__metadata('design:type', Person).
As Person is injected for the first time before Person class is initialized, it will result with ReferenceError saying Person is not defined.
If it'd emit metadata like:
__metadata('design:type', () => Person)
it'd be fine.
Later on, when using Reflect.metadata, it would also need to call meta function instead of just returning the type.
If you think it's good idea, do you have any suggestions about starting point for PR that would implement this change?
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず、デコレータメタデータを出力する TypeScript コンパイラの経路を追跡し、次に Reflect.metadata が出力された値をどのように消費するかを調べます。完了条件は、循環する Car/Person の例で初期化時の ReferenceError が回避され、メタデータのコンシューマーが遅延された型関数を呼び出すことです。payload ではファイルやテストを指定しません。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- typescript
- 領域
- compilers
- issue の種類
- 機能追加
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 25/100