microsoft / microsoft/TypeScript
Include CompilerHost in TransformationContext
まだ誰も着手していません。
- 主要言語
- Go
- スター
- 111k
- フォーク
- 14.3k
- 平均マージ
- 1日 19時間
- マージ済み PR(30日)
- 117
説明
Search Terms
compiler host, CompilerHost,
transformation context, TransformationContext,
transformer, custom transformer
Suggestion
I'd like to access the CompilerHost instance from my custom transformers (via TransformationContext).
As far as I can see this wouldn't expose any "risky" patterns like #25147.
Use Cases
My specific use-case is resolving import declarations. This can be done using ts.resolveModuleName (https://github.com/microsoft/TypeScript/issues/28276#issuecomment-435016356), but this requires a CompilerHost instance.
Example
An example for my specific use-case would be:
const transformer: ts.TransformerFactory<ts.SourceFile> = context => {
return file => {
return ts.visitEachChild(
file,
node => {
if (ts.isImportDeclaration(node)) {
const resolved = ts.resolveModuleName(
(node.moduleSpecifier as ts.StringLiteral).text,
file.fileName,
context.getCompilerOptions(),
context.getCompilerHost() // this is currently impossible
)
// do something interesting with resolved
}
return node;
},
context
)
}
}
Workaround
Luckily there is a workaround for this:
const host = ts.createCompilerHost(context.getCompilerOptions());
But this feels redundant and somewhat "wrong".
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 番号を参照したプルリクエストを送ります。
調査の方向性
TransformationContext と CompilerHost の API から始め、カスタム transformer がどのように context を受け取り、ts.resolveModuleName がどのように host を使用するかを追跡します。意図する API の形を定義し、既存の transformer との互換性を確認します。transformer が冗長な host を作成せずに、モジュール解決に関連する CompilerHost にアクセスできれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- typescript
- 領域
- compilers
- issue の種類
- 機能追加
- 難易度
- 5/5
- 見積もり時間
- 1週間以上
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 35/100