In the latest version, FalconJX does not remove circular dependencies by
default. You must specify -remove-circulars when running the build command.
On Jan 16, 2016 04:55, "lizhi" <s...@qq.com> wrote:

> package
> {
>         /**
>          * ...
>          * @author lizhi
>          */
>         public class A
>         {
>                 public var b:B
>                 public function A()
>                 {
>                 }
>
>                 private function test():void {
>                         b = new B;
>                 }
>
>         }
>
> }
>
>
> package
> {
>         /**
>          * ...
>          * @author lizhi
>          */
>         public class B extends A
>         {
>
>                 public function B()
>                 {
>
>                 }
>
>         }
>
> }
>
>
>
> --
> View this message in context:
> http://apache-flex-development.2333347.n4.nabble.com/ERROR-Circular-dependency-detected-A-B-A-tp51298.html
> Sent from the Apache Flex Development mailing list archive at Nabble.com.
>

Reply via email to