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
Thank you for the fix! But the fix c0f9c2f revealed another bug. See the following test case.
$ osh -c 'arr=(); echo ${#arr[@]}; : ${arr[0]=1}; echo ${#arr[@]}' 0 arr=(); echo ${#arr[@]}; : ${arr[0]=1}; echo ${#arr[@]} ^~ [ -c flag ]:1: fatal: Can't index string with @
Originally posted by @akinomyoga in #653 (comment)
The text was updated successfully, but these errors were encountered:
May relate to IR in #604 , e.g. sh_lhs_expr
sh_lhs_expr
Sorry, something went wrong.
[var-op-test] Failing test cases for issue #660.
b9e7434
And refactor _ApplyTestOp to use a mutating/appending style like the rest of the WordEvaluator.
[var-op-test] Fix behavior of ${a[i]=x} and ${A['k']=x}
7746dd2
Fixes issue #660.
No branches or pull requests
Thank you for the fix! But the fix c0f9c2f revealed another bug. See the following test case.
Originally posted by @akinomyoga in #653 (comment)
The text was updated successfully, but these errors were encountered: