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 2018/06/25 11:28:25 UTC

[GitHub] arusinha opened a new pull request #600: [NETBEANS-862] Added auto-complete support for var keyword in JDK-11 Lambda Parameters

arusinha opened a new pull request #600: [NETBEANS-862] Added auto-complete support for var keyword in JDK-11 Lambda Parameters
URL: https://github.com/apache/incubator-netbeans/pull/600
 
 
   Added Auto-complete support  for var keyword in Lambda parameter (JDK-11 or above). 
   
   e.g.,(Suppose cursor is at '^' position. 
      IntBinaryOperator calc2 = (var x, ^ y ) -> x+y;
   
   on ctl+space, below expected outcome should happen.
    IntBinaryOperator calc2 = (var x, var y ) -> x+y;
   
   
   Jira Link: https://issues.apache.org/jira/browse/NETBEANS-862

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on 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