Masatake YAMATO

Results 774 comments of Masatake YAMATO

@dolik-rce, I got an interesting result. When turning on Pegof, all cases testing the Thrift peg-based parser fail. You can run the test locally: ``` bash autogen.sh ./configure --with-pegof=../build/pegof make...

The parser extract "a.thrift" from ``` include "a.thrift" ``` . However, it didn't.

I didn't write about "include" or "import" feature of packcc or pegof. I wrote about the ability of the code optimized by pegof. input.thrift: ``` include "a.thrift" ``` The original...

@dolik-rce, thank you very much. I added a document about how to use pegof to build ctags.

Thank you. Cython is yet another parser I would like to rewrite. Here is a quick solution. ``` diff --git a/parsers/python.c b/parsers/python.c index 0403fcc43..f23ccdbdd 100644 --- a/parsers/python.c +++ b/parsers/python.c @@...

I will make a pull request after solving the CI/CD related issues.

I read https://github.com/mkoeppe/bliss/blob/sage_package/graph.hh. It is challenging (and interesting) to make a model for a language to glue languages together. ``` cdef cppclass Stats: pass ``` The primary task of ctags...

Thank you. I will write an initial minimum version of prolog parser. I expect you complete it. I would like you to read #2622. The issue tells how important designing...

Thank you but prolog knowledge is enough. Expected tags output is really needed. It is the area I cannot help you.

Let's focus on smaller input: ``` mother_child(trude, sally). ``` What should be tagged? If we have perfect prolog parser in ctags, which tokens may ctags capture?