- Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
QuestionAn issue which isn't directly actionable in codeAn issue which isn't directly actionable in code
Description
The following code:
class GameObjectGroup extends GameObject { objects: GameObject[]; constructor(...objects: GameObject[]) { super(); this.objects = objects; } } class Scene extends GameObjectGroup { id: number; constructor(...objects: GameObject[]) { super(...objects); } }
Can't compile in TypeScript 1.4, will this be supported in 1.5 or not?
Metadata
Metadata
Assignees
Labels
QuestionAn issue which isn't directly actionable in codeAn issue which isn't directly actionable in code