我最近将我的大部分可重用代码编译成 SWC,以用于组织和易用性目的。此后,我的任何文档都没有出现在 Flash Builder 提供的代码提示中。我已经搜索了项目设置,但我一直无法找到此类功能的设置,我不知道为什么它不再起作用了。
我使用 Flash Builder 的Build Automatically
功能编译了 SWC。我还没有尝试使用 ANT 进行编译,但下次构建时可能会尝试。asdocs 能够相对轻松地为我的所有库编译完整的文档,如果我自己使用原始 AS 文件,代码提示就可以工作,所以我认为这与我编写文档的方式没有任何关系。例子:
/**
* <p>Batch adds variables from a generic object using name-value pairs</p>
* @param variables A generic <code>Object</code> that contains name-value
* pairs that will be used as the arguments of the REST request
*/
public function addVariables( variables:Object ):void {}
知道为什么代码提示不再有效吗?