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
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- Go
- Estrellas
- 111k
- Forks
- 14.4k
- Merge medio
- 1 d 19 h
- PR fusionados (30 d)
- 117
Descripción
🔎 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
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
Empieza con el Playground enlazado y la reproducción mínima del mixin en el issue; después compara los issues relacionados #26154 y #17829 y el PR #17922 referenciado. Se considera terminado cuando el ejemplo Task pasa la comprobación de tipos, mientras que los usos del lado estático siguen siendo rechazados, incluido el caso de una clase que devuelve una función descrito en el issue.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- typescript
- Área
- compilers
- Tipo de issue
- Nueva funcionalidad
- Dificultad
- 5/5
- Tiempo estimado
- Más de una semana
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 35/100