Masatake YAMATO

Results 140 issues of Masatake YAMATO

@pragmaware, I think we need ctags-cxx.7 man page that explains fundamental limitations about C/C++ (and CPreProcessor) parsers. docs/parser-cxx.rst is for developers including me. man/ctags-cxx.7.rst.in is for users. "OPERATIONAL DETAILS" section...

Documentation
FAQ

The critical issue(#402) about #line directive is already fixed. ``` #line NUMBER FILE ``` Here FILE should be tagged as a reference tag.

See #1783 about the background of this issue. The original prototype should not be remove. Removing it will break the compatibility with existing client software.

Write completion rules for bash and/or zsh. It is important to evaluate the design of ctags command line interface. Especially about the name of option. I will write for bash...

General discussion/Questions

I found setjmp/longjmp are used widely in parsers. valgrind reports the memory leaks related to them. I guess longjmp is trigged when reading unexpected EOF. Incomplete source code may make...

I found this case in linux kernel. Consider a C language header having .h suffix. In C language `private` is not a keyword. New Cxx parser doesn't record a variable...

The name of the parser: Java The command line you used to run ctags: --options=NONE -o - /tmp/e.java The content of input file: ```Java public enum e { A };...