junichi11 opened a new pull request, #5885: URL: https://github.com/apache/netbeans/pull/5885
- https://github.com/apache/netbeans/issues/5881 - Get also the prefix until the caret position to calculate the correct anchor ### Example ```php class GH5881 { /** * Property $prop. */ public $prop; /** * Property $prop_aa. */ public $prop_aa; /** * Property $prop_aa_bbb. */ public $prop_aa_bbb; /** * Property $prop_aa_bb_cc. */ public $prop_aa_bb_cc; /** * Method method(). * * @return void */ public function method(): void { } /** * Method method_aa(). * * @return void */ public function method_aa(): void { } /** * Method method_aa_bbb(). * * @return void */ public function method_aa_bbb(): void { } /** * Method method_aa_bb_cc(). * * @return void */ public function method_aa_bb_cc(): void { } } $test = new GH5881(); $prop1 = $test->prop_aa_bbb; $prop2 = $test->prop_aa_bb_cc; $test->method_aa_bbb(); $test->method_aa_bb_cc(); ```   -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
