[Doxygen-develop] Parser for VB.NET - namespaces
Brought to you by:
dimitri
From: James B. <jam...@mi...> - 2006-04-12 11:03:34
|
I have started implementing support for VB.NET for Doxygen. The patch and scanner for this are attached. Would there be interest in including this in Doxygen? The generated documentation from this doesn't correctly show namespaces. For example, with this source 1 Namespace N 2 Public Class C 3 Public Sub S() 4 End Sub 5 End Class 6 End Namespace the namespace N is documented as empty and class C has no namespace (with EXTRACT_ALL = YES). The tree of Entry that is being constructed in vbscanner.l contains C as a CLASS_SEC, as a child of N as a NAMESPACE_SEC. What am I doing wrong? James |