如何解决尝试生成ASDoc的“错误#1090”?

时间:2010-03-15 12:40:40

标签: flex asdoc

我有一个相当大的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)

我发现在双引号公共字段初始化程序中关于单引号无法重现bug in Jira,但我没有这些。有线索吗?

1 个答案:

答案 0 :(得分:1)

@Amarghosh促使我尝试在我的类上单独运行ASDoc,结果发现该错误是由于源代码中的ASDoc注释错误引起的:

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

需要:

    /**
     * Furbles the whatsit.
     *
     * @see Blah.blah
     */
相关问题