microsoft / microsoft/TypeScript
Refactoring: Generate type annotation from inferred type
Dieses Issue hat noch niemand übernommen.
- Vorherrschende Sprache
- Go
- Sterne
- 111k
- Forks
- 14.3k
- Ø Merge
- 2 T. 4 Std.
- Gemergte PRs (30 T.)
- 132
Beschreibung
Search Terms
refactoring
quick
fix
add
inferred
type
Suggestion
VS Code should provide a refactoring command for generating a type annotation.
Use Cases
In our code base, we use the TSLint's typedef rule to enforce type annotations. For example:
// TSLINT ERROR
const map = this.getMap();
const value = map.getValue(someKey);
// GOOD
const map: Map<string, CatalogItem> = this.getMap();
const value: CatalogItem = map.getValue(someKey);
It's true that these types can usually be inferred by the compiler. However, requiring people to write explicit annotations makes code more readable, especially in situations where IntelliSense is unavailable. For example: When reviewing a GitHub pull request, or printing a Git history, we get no help from IntelliSense.
Details
VS Code should provide a refactoring command for generating a type annotation. For example, if I right-click on map in this code...
const map = this.getMap();
...then I should be able to do Refactor -> Add Type, and it will convert it to the good form shown above.
Although this is a super easy operation for the compiler engine, I cannot seem to find an implementation of this feature.
I found a couple projects typescript-plugin-add-type and typescript-plugin-proactive-code-fixes. However, they aren't usable:
- They aren't maintained any more
- The latest release is incompatible with the latest VS Code
- They are modeled as compiler plugins
Representing refactoring operations as compiler plugins doesn't seem like the best design:
- The refactoring engine will malfunction unless the
npm installis in a good state, which is not always the case for a project that is "under construction" - The plugin will have to be added separately to each project. It would be much more convenient to install it once (e.g. a VS Code extension), and then be able to use it anywhere.
Since the implementation is relatively simple, this seems like a good candidate for a built-in feature.
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.
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Rechercherichtung
Beginne mit dem angeforderten TypeScript-Refactoring-Verhalten und den Beispielen im Issue und verfolge dann, wo TypeScript Refactoring-Befehle bereitstellt. Lege fest, wie inferierte Annotationen für die gezeigten Deklarationen generiert werden sollen, und überprüfe, dass der Befehl gleichwertigen annotierten Code erzeugt, ohne das Laufzeitverhalten zu ändern.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Bewertung
- Tech-Stack
- typescript
- Bereich
- compilers, developer-experience
- Issue-Typ
- Feature
- Schwierigkeit
- 5/5
- Geschätzter Aufwand
- Über eine Woche
- Aktivitätsstatus
- Veraltet
- Klarheit
- Größtenteils klar
- Anfängerfreundlichkeit
- 30/100