matthiasblaesing opened a new pull request, #5796:
URL: https://github.com/apache/netbeans/pull/5796

   At least two issues are fixed by this:
   
   - "export class XY" construct is not parsed correctly resulting in
     a JS model for that class, that his missing methods
   - "class XY {}; export {XY}" is not correctly parsed resulting missing
     declaration handling for that member
   
   Example that was not correctly parsed:
   
   ```javascript
   export class test {
        method(param){
                param;
        }
   };
   
   // this shows in navigator / highlighting works
   class test2{
        method(param){
                param;
        }
   }
   
   // no highlighting, Go to declaration does not work
   export {test2};
   ```
   
   Closes: https://github.com/apache/netbeans/issues/5184


-- 
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

Reply via email to