Skip to content
New issue

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

Ternary conditional causes EOF errors in version 1.17 breaking backwards compatibility #772

Closed
tarmo-randma opened this issue Mar 17, 2025 · 4 comments · Fixed by #773
Closed
Labels

Comments

@tarmo-randma
Copy link

tarmo-randma commented Mar 17, 2025

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?

@antonmedv
Copy link
Member

Ohh! This is a bug! Both syntaxes should be supported.

@antonmedv
Copy link
Member

Releases https://github.com/expr-lang/expr/releases/tag/v1.17.1 with a fix.

@tarmo-randma
Copy link
Author

Any chance of getting the fix for the playground as well?

@antonmedv
Copy link
Member

Done!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants