I'm using FlashDevelop and it's ActionScript Documentation Generator.
I have a project that uses several SWC files that are added to the .as3proj
library. Some of the classes in my project extend classes that are in the SWC files.
Which causes errors during the ASDoc generation:
src\display\render\HexCell.as(18): col: 31 Error: The definition of base class CellRenderer was not found.
public class HexCell extends CellRenderer
CellRenderer
is a class in lib\UIComponents.swc
and part of the FlashIDE library:
fl.controls.listClasses.CellRenderer
How can I resolve this problem and others like it?