-
Notifications
You must be signed in to change notification settings - Fork 629
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Java: Local classes are ignored #1739
Comments
Thank you for reporting. |
It seems that fixing this is not so easy. |
… anonymous class) Signed-off-by: Masatake YAMATO <yamato@redhat.com>
… anonymous class) Signed-off-by: Masatake YAMATO <yamato@redhat.com>
The input is recorded as a test case triggering the bug. See #1756. |
I'm working on reimplenting the java parser with using a parser generator. I have to work on this item more.
|
I have measured the performance of the new Java parser. I have to rewrite a new one without the parser generator. |
Steps to reproduce:
HelloWorldAnonymousClasses
) into a fileExpected:
I expect ctags to create four tags for
greet
. It only creates one, inside the interface definition.The option
--kinds-Java=l
, which is described withlocal variables
, surprisingly influences this: An additional tag is emitted for thegreet
implementation insideEnglishGreeting
. Still no tags are created for the implementations inside the anonymous classes.The text was updated successfully, but these errors were encountered: