You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2019/07/17 01:37:31 UTC

[GitHub] [netbeans] junichi11 opened a new pull request #1384: [NETBEANS-1696] PHP 7.4 Support Arrow Functions 2.0

junichi11 opened a new pull request #1384:  [NETBEANS-1696] PHP 7.4 Support Arrow Functions 2.0
URL: https://github.com/apache/netbeans/pull/1384
 
 
   - Fix ImmutableVariablesHint
   
   The following case is not checked:
   ```php
   $af = fn($x) => $x = $y + 2;
   ```
   This is the same behavior as other existing cases. 
   The only first assignment is checked. 
   e.g.
   ```php
   function test($test) {
       $x = $test = 3;
   }
   ```
   In the above case, $test is not checked. So I didn't fix the first example...
   
   - Fix UninitializedVariableHint
   - Move existing unit test data to other directories for each hint
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists