Community
Participate
Working Groups
namespace a; NSLABEL: echo a; GOTO NSLABEL; when user click on the second NSLABEL,it should navigate to its declaration.
Unnecessary improvement in my opinion.
On monster procedural code (more than 1k lines) might be very usable for navigation ;) Occurrence for matching labels also.
Hello, A sample file to test it works in and outside function scope >< <?php function foo($b){ $a = null; if($b){ goto bar; } //do something $a = 'a'; bar: //do something $c = 'c'; return [$a, $c]; }//fin fonction foo() //do something $b = true; bar: list($a, $c) = foo($b); if($a === null){ $b = false; goto bar; } var_dump($a); ?> Best regards, Laurent Lyaudet
https://git.eclipse.org/r/#/c/112352
Merged.
Gerrit change https://git.eclipse.org/r/112352 was merged to [master]. Commit: http://git.eclipse.org/c/pdt/org.eclipse.pdt.git/commit/?id=99415f05dc157cfd16063ca3acf7e128e77fda84
New Gerrit change created: https://git.eclipse.org/r/112352