On 12/6/12 12 :42PM, "Justin Mclean" <jus...@classsoftware.com> wrote:
>HI, > >> why asdoc is broken. > >In ParagraphElement.as there's a getter name the same as the private >variable, this causes asdoc to fail. > >The getter it not actually used anywhere (that I could find) and is in >the tlf_internal namespace so I think it would be safe to rename it like >so: > >From: >tlf_internal function get _interactiveChildrenCount():int >{ > return _interactiveChildrenCount; >} > >To: >tlf_internal function get interactiveChildrenCount():int >{ > return _interactiveChildrenCount; >} Ah that explains why asdoc "all of a sudden" broke. It must have happened when I moved the tlf code into our build. Carol > >Justin