microsoft / microsoft/TypeScript
Contextual type doesn't apply to elements of array literal spread into another array literal
Nessuno ha ancora preso questa issue.
- Lingua principale
- Go
- Stelle
- 111k
- Fork
- 14.4k
- Merge medio
- 1g 19h
- PR unite (30g)
- 117
Descrizione
Bug Report
🔎 Search Terms
spread operator, type inference
🕗 Version & Regression Information
- This is the behavior in every version I tried
⏯ Playground Link
Playground link with relevant code
💻 Code
interface Test {
field: 'a' | 'b' | 'c'
}
let arr: Test[] = [
{ field: 'c' },
...[
{ field: 'a' }, // field: string
// ^?
{ field: 'b' }, // field: string
// ^?
]
]
function test(...args: Test[]): void {}
test(
{ field: 'c' },
...[
{ field: 'a' }, // field: string
// ^?
{ field: 'b' }, // field: string
// ^?
]
)
🙁 Actual behavior
The types of objects in the array nested through the spread operator is not inferred to be Test, as such inference begins from scratch, so the type of field in those objects becomes string (and is not detected to be 'a' | 'b' | 'c' which I specified in the interface), and a rather cryptic type error is shown:
Type '{ field: string; }' is not assignable to type 'Test'.
Types of property 'field' are incompatible.
Type 'string' is not assignable to type '"a" | "b" | "c"'.
I have also included an example with using the spread operator in a function call for completeness, it generates basically the same error.
I'm not sure if this is really a bug, but regardless, it is trivial to work around by just forcing compiler's hand a little by doing this:
let arr: Test[] = [
{ field: 'c' },
...[
{ field: 'a' as const },
{ field: 'b' as const },
]
]
Which forces the inferred types of the objects to actually be compatible, or assigning the spread array to a variable with an explicitly defined type:
let nested: Test[] = [
{ field: 'a' },
{ field: 'b' },
]
let arr: Test[] = [
{ field: 'c' },
...nested
]
🙂 Expected behavior
I would expect the type of expr3 in [expr1, expr2, ...expr3] to be inferred to be Iterable<T> or something like that provided that we know that the type of elements of the overall array is T. I believe that in my repro it would make types of nested objects to be inferred correctly as Test.
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 con il repro di Playground collegato e conferma il comportamento della tipizzazione contestuale per i letterali di array contenenti spread, quindi confrontalo con il repro di Workbench per il caso della chiamata di funzione. Il lavoro è completato quando gli elementi oggetto annidati vengono inferiti come compatibili con Test senza i workaround mostrati con as const o con array tipizzati separatamente, e quando entrambi gli esempi si comportano come previsto.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- typescript
- Ambito
- compilers
- Tipo di issue
- Bug
- Difficoltà
- 5/5
- Tempo stimato
- Più di una settimana
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 25/100