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
Here's a simple example that generates UndefinedVariable for the second $item in the array.
UndefinedVariable
$item
$fn = fn($item) => [ $item, fn($arg) => $arg, $item, ];
This works fine.
$fn = function($item) { return [ $item, fn($arg) => $arg, $item, ]; }
I am using v2.11.19 but the issue has been around for years, I've just never gotten around to opening an issue.
The text was updated successfully, but these errors were encountered:
Thank you for the report! I don't think I ever did enough testing with nested fat arrow functions.
Sorry, something went wrong.
Should be fixed by #334
Successfully merging a pull request may close this issue.
Here's a simple example that generates
UndefinedVariable
for the second$item
in the array.This works fine.
I am using v2.11.19 but the issue has been around for years, I've just never gotten around to opening an issue.
The text was updated successfully, but these errors were encountered: