microsoft / microsoft/TypeScript
Misleading error message
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
Misleading error message
🕗 Version & Regression Information
I think in all version but I just tries 5.2.2 and 5.3.0-beta
⏯ Playground Link
💻 Code
interface Option<T> {
item?: T;
fields?: (keyof T);// using `string[]` as type here would make possible the ttt assignment
}
class TestBase<T extends object = object> {
test(t: Option<T>) {}
}
interface Data {
data: string;
}
class TestChild extends TestBase<Data> {
test(t: Option<Data>) {}
}
let ttt: TestBase = new TestChild();
🙁 Actual behavior
In the error message if I hover over ttt it states that the item member is incompatible, but I think it is not the problem but the fields member. If I change its type from (keyof T)[] to type string[] the error is solved but as I see this means the error message was misleading.
🙂 Expected behavior
The error message should state that the fields member is the problematic
Additional information about the issue
I think the problem is that fields member has type keyof object in base class (TestBase) which maybe results in type never and in derivative class (TestChild) the fields results in "data" which is defineatly not assignable to never type.
Although I have years of experience in ts it can surprise me sometimes. :)
ps: Sorry if it is a known issue or expected behavior. Then please point me out to the corresponding documentation
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 riproducendo la diagnostica di assegnazione nel TypeScript Playground collegato usando il codice fornito, quindi segui come viene selezionato il messaggio di incompatibilità per i membri item e fields. L'attività è completata quando la diagnostica identifica fields come membro problematico e la relativa copertura di regressione passa.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- typescript
- Ambito
- compilers
- Tipo di issue
- Bug
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 45/100