syntactic and semantic code completion framework written in C++

独自空忆成欢 提交于 2019-12-12 09:03:16

问题


This question is more precise than my previous one: General code completion framework written in C/C++. I did not specify it enough to get answers I really need.

I want to add to my IDE the "Intellisense" code completion. I would love to have a library in C/C++/C++11, that could work as syntactic and symantic code completion tool and be general, not single language specific (I want to write completion for Java, C++ and in the future for C#, Python and Javascript). It would be good if this solution would not be one language centric - it should be general and scalable across languages.

(I have found something called CEDET, which according to its webiste is something I would like to have, but its written in Lisp, not C++.)

Could you please help me with finding the good solution?


回答1:


The source for Netbeans, Eclipse and IntelliJ is open source these support cross platform "intelisense" code completion. IMHO IntelliJ's is the best. I suspect C++ is not the most elegant language to describe this capability.



来源:https://stackoverflow.com/questions/13601312/syntactic-and-semantic-code-completion-framework-written-in-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!