microsoft / microsoft/TypeScript
Intellisense for Symbol properties
Dieses Issue hat noch niemand übernommen.
- Vorherrschende Sprache
- Go
- Sterne
- 111k
- Forks
- 14.4k
- Ø Merge
- 1 T. 19 Std.
- Gemergte PRs (30 T.)
- 117
Beschreibung
Suggestion
🔍 Search Terms
With and without "is:issue is:open"
"symbol intellisense"
"symbol autocomplete"
✅ Viability 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, new syntax sugar for JS, etc.)
- This feature would agree with the rest of TypeScript's Design Goals.
⭐ Suggestion
Intellisense provides a list of symbol properties which, when accepted, insert indexed accessor syntax for that symbol. This list would be comprised of known symbols within the current scope or those that can be with an import statement.
📃 Motivating Example
This example demonstrates a type that implements the global Disposable interface introduced by TC39 ECMAScript Explicit Resource Management. (#54505)
class ExampleClass implements Disposable {
[Symbol.dispose](): void {
// ...
}
}
const example = new ExampleClass();
example[Symbol.dispose]();
The suggestions shown for example. do not includeSymbol.dispose.
💻 Use Cases
TL;DR: Symbol.dispose and Symbol.asyncDispose are the first well-known symbols that are useful to call directly, and I want to easily know that they're there.
Typically, ES6 Symbols are intended as an implementation detail, but the new global Disposable interface, however, is analogous to this very prolific interface:
interface Disposable {
dispose(): void;
}
In order to support using syntax, I need to implement the global Disposable interface. I have a few options:
- Switch to the global
Disposableinterface, but lose the visibility to developers of the lifecycle management requirements of implementations. - Make my
Disposableinterface extend the globalDisposableinterface, or possibly merge it with the global one and then, by convention, do the following:
dispose(): void {
// ...
}
[Symbol.dispose](): void {
this.dispose();
}
An option is to create a utility class decorator that does that for me, but unfortunately that creates the issue of how to make that class recognized as an implementation of the global Disposable. (#4881)
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
Das Issue nennt keine Dateien, Tests oder Einstiegspunkte. Beginne damit, den example.-Vervollständigungsfall aus dem motivierenden Beispiel zu reproduzieren, und vergleiche ihn mit den gewünschten Vorschlägen Symbol.dispose und Symbol.asyncDispose. Als erledigt gilt die Aufgabe, wenn die relevanten Symboleigenschaften in IntelliSense erscheinen und das bestehende Vervollständigungsverhalten erhalten bleibt.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Bewertung
- Tech-Stack
- typescript
- Bereich
- developer-experience
- Issue-Typ
- Feature
- Schwierigkeit
- 5/5
- Geschätzter Aufwand
- Über eine Woche
- Aktivitätsstatus
- Veraltet
- Klarheit
- Größtenteils klar
- Anfängerfreundlichkeit
- 25/100