microsoft / microsoft/TypeScript
Overloaded function args not inferred correctly
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
overload functions
🕗 Version & Regression Information
- This is the behavior in every version I tried, and I reviewed the FAQ for entries about overloading and different function arguments behavior
⏯ Playground Link
Playground link with relevant code
💻 Code
function a1(arg1: unknown): 1;
function a1(arg1: unknown, arg2: unknown): 2;
function a1(...args: ([arg1: unknown] | [arg1: unknown, arg2: unknown])): 1 | 2 {
return args.length;
}
const b1: typeof a1 = function f1(...args) {
return a1(...args);
}
even simpler is using an interface
interface a1 {
(arg1: unknown): 1;
(arg1: unknown, arg2: unknown): 2;
}
// errors
const b1: a1 = function f1(...args) {
return args.length;
}
🙁 Actual behavior
Error: Target signature provides too few arguments. Expected 2 or more, but got one., given the single signature of b1 above is variadic, and in fact matches the implementation signature of a1, one would assume the two functions are equivalent (from a signature perspective)
🙂 Expected behavior
The type of args in b1 should be inferred as the union of all overloads of a1 since it is the only way the variadic args would satisfy the assigned typeof a1 requirement.
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 TypeScript Playground collegato e i due esempi di overload per riprodurre la diagnostica. Traccia il modo in cui il rest parameter della funzione assegnata viene inferito rispetto agli overload, quindi verifica che args riceva l’unione di overload richiesta e che l’assegnazione venga accettata senza l’errore segnalato.
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