microsoft / microsoft/TypeScript
Class properties cannot be initialized within constructor if the property key comes from a static class property (e.g. [Symbol.iterator])
Abierto
@rbuckton ya está trabajando en esto.
Desde el 10/4/2023.
Needs Investigation
Rescheduled
- Lenguaje dominante
- Go
- Estrellas
- 111k
- Forks
- 14.4k
- Merge medio
- 1 d 19 h
- PR fusionados (30 d)
- 117
Descripción
Bug Report
🔎 Search Terms
symbol property constructor 2564
🕗 Version & Regression Information
- This changed between versions 4.6.4 and 4.7.4
⏯ Playground Link
Playground link with relevant code
💻 Code
const standaloneSymbol = Symbol("standalone");
class SymbolClass {
static readonly staticSymbol = Symbol("static");
}
interface IHaveSymbols {
[standaloneSymbol]: number;
[SymbolClass.staticSymbol]: number;
}
class HavePropertyInitializedSymbols implements IHaveSymbols {
[standaloneSymbol] = 1;
[SymbolClass.staticSymbol] = 2;
}
class HaveOverriddenSymbols extends HavePropertyInitializedSymbols {
constructor() {
super();
this[standaloneSymbol] = 3;
this[SymbolClass.staticSymbol] = 4;
}
}
class HaveConstructorInitializedSymbols implements IHaveSymbols {
[standaloneSymbol]: number;
[SymbolClass.staticSymbol]: number;
constructor() {
this[standaloneSymbol] = 3;
this[SymbolClass.staticSymbol] = 4;
}
}
🙁 Actual behavior
Property '[SymbolClass.staticSymbol]' has no initializer and is not definitely assigned in the constructor.(2564)
(property) SymbolClass.staticSymbol: typeof SymbolClass.staticSymbol
It's wrong because the property is definitely assigned in the constructor
🙂 Expected behavior
No error, because the property is definitely assigned in the constructor
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.
Evaluación
Este issue todavía no se ha evaluado.