microsoft / microsoft/TypeScript
Mixin constructor not working with `args:unknown[]`, only with `args:any[]`
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
site:github.com/microsoft/typescript mixin class "unknown" args any args
🕗 Version & Regression Information
- This changed most likely after
unknownwas introduces and the bespoke/unique mixin type checking logic wasn't updated.
⏯ Playground Link
💻 Code
type Constructor = new (...args: unknown[]) => object
function Foo<T extends Constructor>(Base: T) {
return class Foo extends Base { // <---------------- ERROR
constructor(...args: unknown[]) {
super(...args)
}
foo = 123
fooMethod() { return this.foo }
}
}
Change the unknown to any and the error goes away. You'd think they should behave the same: you don't care what the args are, you just need to pass them along.
Here's how to fix the error, changing unknowns to anys:
Code:
type Constructor = new (...args: any[]) => object
function Foo<T extends Constructor>(Base: T) {
return class Foo extends Base { // <---------------- ERROR
constructor(...args: any[]) {
super(...args)
}
foo = 123
fooMethod() { return this.foo }
}
}
🙁 Actual behavior
Type error on Foo.
🙂 Expected behavior
I expected it to allow "any unknown args" to be passed along.
Additional information about the issue
Plus, with an unknown type, the code in the mixin constructor can actually be more type safe, requiring type narrowing or type casting to use the args at all, whereas any allows anything to be done to the args which is not safe.
Maybe the mixin type checking algo could cast the base class constructor to new (...args: any[]) and simply allow anything to be passed in, to make unknown work. Then the mixin type checking algo could still enforce any[] as well as (more preferably) unknown[].
Also, maybe it would make sense to have an implicit Constructor type built into the mixin type checking algo so that mixins can just be really easy for plain JS users who are migrating to TypeScript.
I've met multiple people who are baffled by how difficult it is to write mixins in TypeScript when they come from plain JavaScript.
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
Comienza con la reproducción vinculada en TypeScript Playground y sigue la lógica específica o única de comprobación de tipos de mixins descrita en el informe. Compara los ejemplos de constructores proporcionados que usan unknown[] y any[], y verifica después que la cobertura de regresión demuestra el comportamiento esperado de los mixins.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- typescript
- Área
- compilers
- Tipo de issue
- Error
- Dificultad
- 4/5
- Tiempo estimado
- 3-5 días
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 42/100