News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

C/C++ code parser

Started by sigzegv, January 12, 2010, 06:43:50 PM

Previous topic - Next topic

sigzegv

Hi,

I was wondering which library is used to parse the c++ code in the symbol browser ? ( or is it a home made lib ? )

I am interested in learning C++'s parsing process.

Regards

oBFusCATed

Home made 100%, the code is in src/plugins/codecompletion/ in svn.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

ollydbg

Also, I have write some document here Code Completion Design - CodeBlocks about the Code Completion code. You can read it.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.