microsoft / microsoft/TypeScript
Add support for using declaration
まだ誰も着手していません。
- 主要言語
- Go
- スター
- 111k
- フォーク
- 14.4k
- 平均マージ
- 1日 19時間
- マージ済み PR(30日)
- 117
説明
Search Terms
using-declaration, using, declaration, overload
Suggestion
Add language support similar to Using-declaration in C++ (https://en.cppreference.com/w/cpp/language/using_declaration) to pull in names from base class.
Use Cases
In derived class a new overload is added to an API. This requires that overloads from base classes are copied to derived class otherwise typescript complains. A keyword like the using-declaration in C++ to pull in names from base class would be handy to avoid duplication.
Examples
class Emitter {
addListener(event: "foo", cb: (p: string) => void): void;
addListener(event: "bar", cb: (p: string, e: number) => void): void;
addListener(event: string, cb: (...arg: any[]) => void): void {}
}
class SpecialEmitter extends Emitter {
// I would prefer using Emitter.addListener or similar here
addListener(event: "foo", cb: (p: string) => void): void;
addListener(event: "bar", cb: (p: string, e: number) => void): void;
// new overloads supported by SpecialEmitter
addListener(event: "new", cb: (x: RegExp) => void): void;
addListener(event: "next", cb: (x: number, b: boolean) => void): void;
addListener(event: string, cb: (...arg: any[]) => void): void {}
}
Checklist
My suggestion meets these guidelines:
- This wouldn't be a breaking change in existing TypeScript/JavaScript code
- This wouldn't change the runtime behavior of existing JavaScript code
- This could be implemented without emitting different JS based on the types of the expressions
- This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
- This feature would agree with the rest of TypeScript's Design Goals.
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
TypeScript ソースファイル、テスト、エントリーポイントのいずれも指定されていません。まず、リンクされている C++ using-declaration リファレンスと、提供されている継承/オーバーロードの例を確認してください。完了には、基底クラスの名前を再利用するための合意済みの TypeScript 構文とセマンティクスを定め、動作を網羅するテストを用意することが必要です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- typescript
- 領域
- compilers
- issue の種類
- 機能追加
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- 説明が足りない
- 初心者へのやさしさ
- 25/100