Microsoft/TypeScript

'declare method' quick fix for adding a private method

オープン

#37,782 opened on 2020/04/03

 (18 件のコメント) (3 件のリアクション) (0 人の担当者)TypeScript (13,395 件のフォーク)batch import
Good First IssueHelp WantedSuggestion

Repository metrics

Stars
 (108,860 個のスター)
PR merge metrics
 (PR metrics pending)

説明

From https://github.com/microsoft/vscode/issues/94118

TypeScript Version: 3.9.0-dev.20200330

Search terms

  • quick fix
  • declare method
  • private

Repro For ts file:

index.ts

class Bar {
    bar() {
         this._baz(123)
    }
}
  1. Trigger quick fixes on _baz

Feature request: https://github.com/microsoft/TypeScript/issues/36249 added a quick fix for adding private properties. However there is no quick fix for adding a private method

Playground Link:

Related Issues:

コントリビューターガイド