我有一个相当大的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,但我没有这些。有线索吗?
答案 0 :(得分:1)
/**
* @see Blah.blah
*
* Furbles the whatsit.
*/
需要:
/**
* Furbles the whatsit.
*
* @see Blah.blah
*/