We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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?
The text was updated successfully, but these errors were encountered:
Take a look at #1931 Did you try it in the TypeScript 1.5 alpha?
Sorry, something went wrong.
This is doable with the latest release 1.5. See the release notes for more details: https://github.com/Microsoft/TypeScript/releases/tag/v1.5.0-alpha
Tried 1.5 alpha, it works, but this is not documented in the release note.
No branches or pull requests
The following code:
Can't compile in TypeScript 1.4, will this be supported in 1.5 or not?
The text was updated successfully, but these errors were encountered: