microsoft / microsoft/TypeScript
New numeric string type to accurately represent numeric indexes
Nessuno ha ancora preso questa issue.
- Lingua principale
- Go
- Stelle
- 111k
- Fork
- 14.4k
- Merge medio
- 1g 19h
- PR unite (30g)
- 117
Descrizione
Suggestion
🔍 Search Terms
Object key type, numeric string type, index signature parameter type
✅ 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
A new type should be created to represent numbers in string or number format (a number can be used where this type is used, but the real type is a string representation of a numerical value).
This should be used in cases where object indexes are set to number to allow for number and string representation of said number to be used in indexing and to make it more accurate as the indexes are actually stored as strings even if the restriction is that the creation of a new index should be done with a number.
This will also help with a few other places where the type is indicated as a number, but the real type is a string.
📃 Motivating Example & 💻 Use Cases
Conciseness improvment:
const a: {[prop: number]: number} = {};
a[1] = 123;
// below doesn't currently work even though there is no difference and this means the exact same thing as `a[2] = 321;`
a['2'] = 321; // assuming this worked for the rest of the example below
let i: string = ''; // here to show what the type of `i` is currently
for (i in a) {
console.log(a, a[i], typeof i);
// above will outputs { "1": 123, "2": 321 }, 123, "string"
// in the first iteration, note the difference between the type specified in the object index type (`number`) and the type it really is (`string`)
}
This would instead be something like this (name of type is not final, I'm sure there are better names this can have)
const a: {[prop: numstring]: number} = {};
// since old versions allow `number`, this will be an added possiblity to be more concise
// the type above will make it more obvious that it's a string representation of a number (avoids surprises)
a[1] = 123;
a['2'] = 321; // this would now be allowed as well
let i: numstring = '0'; // here to show what the type of `i` is (type compatible with string, no parsing needed between them)
// can also be `let i: numstring = 0` to auto-wrap numbers
for (i in a) {
console.log(a, a[i], typeof i);
// above will outputs: { "1": 123, "2": 321 }, 123, "string"
// in the first iteration, "string" will be the typeof similarly to how all objects are just "object" with `typeof`
// this should make it more specific as to what the type is and whether or not the type can be converted to a number
// the following can also be made to work:
if (i === '1') {...}
}
This will also be useful in a similar way when looping through an array as the indexes are also treated as strings.
And another benefit outside of this will be to allow for string representation of numbers to be better defined as such in general
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
Non è specificato alcun file sorgente, test o punto di ingresso. Inizia esaminando il comportamento proposto per le stringhe numeriche nell’issue e gli obiettivi di progettazione di TypeScript collegati, quindi individua le aree del compilatore che governano le firme di indice numeriche e stringa. Il lavoro è completato quando esiste un design concordato il cui comportamento copre i casi di indicizzazione e iterazione mostrati ed è validato dai test.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- javascript, typescript
- Ambito
- compilers
- Tipo di issue
- Funzionalità
- Difficoltà
- 5/5
- Tempo stimato
- Più di una settimana
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 25/100