On 14 March 2019 04:01:54 GMT+00:00, David Rodrigues <david.pro...@gmail.com> 
wrote:
>1. Your example with "($x) => $x" consider the use of "$x => $x", but
>not
>specifically "($x) => $x". I mean: maybe it can accept "($x) => $x" but
>not
>"$x => $x" because of the array conflict (as mentioned), and with that
>we
>avoid to create a new keyword "fn". So parentheses is required.


I don't think this helps, because you can put brackets around any expression, 
for precedence, and any expression can appear on the left of an array literal:

$foo = [ ($bar + 1) * 2 => $baz ];

So the following, while redundant, is currently valid:

$foo = [ ($bar) => $baz ];

Regards,

-- 
Rowan Collins
[IMSoP]

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to