microsoft / microsoft/TypeScript
Allow base class expressions to reference class type parameters as long as the type param is not used on the static side of the resulting class
Nessuno ha ancora preso questa issue.
- Lingua principale
- Go
- Stelle
- 111k
- Fork
- 14.3k
- Merge medio
- 1g 19h
- PR unite (30g)
- 117
Descrizione
🔎 Search Terms
"Base class expressions cannot reference class type parameters" when stacking dynamic classes (mixins) with type parameters
Allow base class expressions to reference class type parameters as long as the type param is not used on the static side of the resulting class
Most closely related issues, but are IMO a different situation (as I explain below):
https://github.com/microsoft/TypeScript/issues/26154
https://github.com/microsoft/TypeScript/issues/17829 (documented at https://www.typescriptlang.org/docs/handbook/mixins.html#static-property-mixins-17829)
🕗 Version & Regression Information
- This is the behavior in every version I tried, and I reviewed all the FAQ entries
⏯ Playground Link
💻 Code
type ConstructorType<T> = abstract new (...args: any[]) => T;
const BarableF = <TBase extends ConstructorType<any>>(Base: TBase) => {
abstract class Barable<X> extends Base {
bar(x: X) { return x; }
}
return Barable;
};
const FooableF = <TBase extends ConstructorType<any>>(Base: TBase) => {
abstract class Fooable<X> extends Base {
foo(x: X) { return x; }
}
return Fooable;
};
abstract class Task<X> extends BarableF(FooableF(Object)<X>)<X> {} // problem is on this line
🙁 Actual behavior
On line class Task<X> extends BarableF(FooableF(Object)<X>)<X> {} // problem is on this line, the inner-most X raises "Base class expressions cannot reference class type parameters", despite the fact that X is only ever used by the base class expression on the instance side of it's return value (as opposed to the static side). This example expands to:
abstract class Fooable<X> extends Object {
foo(x: X) { return x; }
}
abstract class Barable<X> extends Fooable<X> {
bar(x: X) { return x; }
}
abstract class Task<X> extends Barable<X> {}
which is perfectly valid code.
🙂 Expected behavior
I would expect for this to be valid code.
Unlike the situations in https://github.com/microsoft/TypeScript/issues/26154 and https://github.com/microsoft/TypeScript/issues/17829 and mentioned in https://www.typescriptlang.org/docs/handbook/mixins.html#static-property-mixins-17829, the type param here is not being used in the static side of resulting class we are extending.
IMO https://github.com/microsoft/TypeScript/pull/17922 was too restrictive of a fix, and since TS seems to error on the side of unsound-ness, I think there's an argument for this change to be reverted until there's a proper fix.
The full correct fix would be to allow type params in the base class expression as long as the result of the base class expression does not reference the type param anywhere on the static side of the class.
A middle-ground fix that would solve my use case in particular would be to allow type params in the base class expression if the expression they are used with is a class-like type (as opposed to a regular function that returns a class). Because TS already checks that class type params aren't used in static members (error 2302), this should be fine. However, that wouldn't solve this case:
function base<T>() {
class Base {
foo(t: T): T { return t;}
}
return Base;
}
class Gen<T> extends base<T>() {}
where again, the type param is only used on the instance side of the resulting class
Additional information about the issue
No response
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 Playground collegato e la riproduzione minima del mixin nell’issue, quindi confronta le issue correlate #26154 e #17829 e il PR #17922 referenziato. Il lavoro è completato quando l’esempio Task supera il controllo dei tipi, mentre gli usi del lato statico continuano a essere rifiutati, incluso il caso di una classe che restituisce una funzione descritto nell’issue.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- 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
- 35/100