Saving ASDoc info AS XML

Well, I *could *sift through all HTML pages and write code that extracts the information, or even start from scratch and do the same for AS files, but I’d rather not.

I would like to use the ASDoc information from one set of classes in another SWF. Is there any way to export all the ASDoc information to XML format, or something that is easy to parse?

Such as:

<class name="DebugText" description="A lightweight, visual debugging tool." author="IqAndreas">
   <property name="text" namespace="public" returns="String" throws="Error bla bla" description="Set or return the text..." see="TextField.text" />
   <method name="toString" namespace="public" returns="String" description="tells you the text" />
</class>

DescribeType would work, but I want the ASDoc description as well, and not just the names of all the functions and properties.

Is there anything already like this? A simple “no” would suffice if not.