You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the latest version (1.17) this script is failing in the playground (Probably related to #736):
let x = true ? "1" : "2";
x
It returns:
unexpected token EOF (2:2)
| x
| .^
In earlier versions this returned "1". The structure could be used for building conditional statements similar to the newly introduced if-else. While the newly introduces syntax is very welcome, perhaps it would be possible to restore support for the old format as well or make this a major version release instead of a minor one.
Moving from old syntax to new one will require considerable effort for larger codebases and it is hard to force customers to upgrade all their own code just because we want to update the library version.
Is this change deliberate or accidental? Perhaps I am missing something here?
The text was updated successfully, but these errors were encountered:
In the latest version (1.17) this script is failing in the playground (Probably related to #736):
It returns:
In earlier versions this returned "1". The structure could be used for building conditional statements similar to the newly introduced if-else. While the newly introduces syntax is very welcome, perhaps it would be possible to restore support for the old format as well or make this a major version release instead of a minor one.
Moving from old syntax to new one will require considerable effort for larger codebases and it is hard to force customers to upgrade all their own code just because we want to update the library version.
Is this change deliberate or accidental? Perhaps I am missing something here?
The text was updated successfully, but these errors were encountered: