1

我有一个相当大的 Flex 项目,我正在尝试为它生成 ASDoc 文档。当我运行 asdoc 时,它给了我这个错误:

An unexpected error occurred.
Error #1090: XML parser failure: element is malformed.

(Location of error unknown)XSLT Error (javax.xml.transform.TransformerException): java.io.FileNotFoundException: C:\projects\projectname\asdoc\toplevel_classes.xml (The system cannot find the file specified)

我在 Jira 中发现了一个关于双引号公共字段初始化程序中的单引号的封闭错误,但我没有这些错误。有什么线索吗?

4

1 回答 1

1

@Amarghosh 提示我尝试在我的课程上单独运行 ASDoc,结果发现该错误是由于我的源代码中的格式错误的 ASDoc 注释引起的:

    /**
     * @see Blah.blah
     *
     * Furbles the whatsit.
     */

需要是:

    /**
     * Furbles the whatsit.
     *
     * @see Blah.blah
     */
于 2010-03-16T09:19:32.617 回答