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

Forbid name shadowing on comprehensions #273

Open
hackaugusto opened this issue Apr 26, 2023 · 0 comments
Open

Forbid name shadowing on comprehensions #273

hackaugusto opened this issue Apr 26, 2023 · 0 comments

Comments

@hackaugusto
Copy link
Contributor

The following expression is currently allowed ref:

[x + y + z for (x, y, z) in (x, 0..5, z[1..6])]

In the case above, the variable x with the iterable is shadowed with the yielded values x. This can be confusing at times, and may make sense to disallow that, requiring the user to be explicit and write something like:

[x_ + y + z for (x_, y, z) in (x, 0..5, z[1..6])]

The idea is to be explicit and hopefully prevent bugs.

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

No branches or pull requests

1 participant