microsoft / microsoft/TypeScript
Display inlay hints with defining variables by destructuring assignment
Nessuno ha ancora preso questa issue.
- Lingua principale
- Go
- Stelle
- 111k
- Fork
- 14.4k
- Merge medio
- 1g 19h
- PR unite (30g)
- 117
Descrizione
🔍 Search Terms
inlay hints
vscode
destructuring assignment
✅ Viability Checklist
- 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 our Design Goals: https://github.com/Microsoft/TypeScript/wiki/TypeScript-Design-Goals
⭐ Suggestion
In the following example, inlay hints are not shown in VSCode.
const [value, setValue] = useState("");
I hope inlay hints will look like this.
const [value /*: string */, setValue /*: React.Dispatch<React.SetStateAction<string>> */] = useState("");
📃 Motivating Example
It allows you to know the type without hovering, improving development efficiency.
💻 Use Cases
- What do you want to use this for?
I want to display inlay hints with defining variables by destructuring assignment in VSCode. - What shortcomings exist with current approaches?
I can't know the inference types without hovering. - What workarounds are you using in the meantime?
I hover and look at the types.
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Inizia dall’implementazione TypeScript degli hint inline e dalla relativa integrazione con VSCode, usando come caso di riproduzione l’esempio di assegnazione tramite destrutturazione riportato nell’issue. Determina come vengono rappresentati i tipi inferiti per ogni variabile destrutturata, quindi verifica che gli hint compaiano sia per value sia per setValue senza modificare il JavaScript emesso.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- typescript, vscode
- Ambito
- developer-experience, tooling
- Tipo di issue
- Funzionalità
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 35/100