[Introspector-developers] Re: GCC/UML/XMI extraction (was gcc front end )
Status: Beta
Brought to you by:
mdupont
|
From: Jason M. <ja...@re...> - 2002-05-12 17:24:48
|
>>>>> "Richard" == Richard Stallman <rm...@gn...> writes: > This issue arises for call graphs in C code. C++ class structure is a > different issue. Perhaps people rarely use preprocessor conditionals > in ways that affect the class structure. If so, this issue would not > arise for that specific application. I believe this to be the case. Also, call graphs in C++ are much harder to analyze, due to the complicated name lookup and overload resolution semantics; to handle them in your browser, you basically need to implement a large chunk of the C++ frontend. The obvious solution is to use the pre-existing frontend. Jason |