I'm just tracing out what changed
in the mixin and superclass info that's getting stored in the SWF9Generator
before and after my last change.

The code that's complaining is the part that looks for information from the
superclass about how to build the constructor for the mixin. It can't find
the superclass info for some reason.

When I supply an explicit constructor for the mixin, it compiles.


        mixin mixinD2 {

        function mixinD2 () {
            super();
        }

            override function foo () { return "mixinD#foo" }
        }

        class classA {
            function foo () { return "classA#foo" }
        }

        class classE extends classA with mixinD2 {
        }




On Fri, May 14, 2010 at 10:08 AM, André Bargull <[email protected]>wrote:

> Superclass classA used by mixin not defined, and no constructor supplied
>> for mixin: mixinD2
>>
>
>
> What is this error telling me to do? The test case (see attachment) stopped
> working after updating to top of trunk when compiling to swf9/10, full error
> report is attached as "error.txt".
>
>
> Thanks,
> André
>
>


-- 
Henry Minsky
Software Architect
[email protected]

Reply via email to