winxed icon indicating copy to clipboard operation
winxed copied to clipboard

Problem with class declarations

Open Benabik opened this issue 13 years ago • 1 comments

class A.B;
class A.A;

function foo() {
    var p;
    p = new A.A;
    p = new A.B;
}

Gives me a warning "WARNING: class A.B not found at compile time near A at temp.winxed line 7". Reversing the lines warns about A.A instead.

Having them not in namespaces or in different namespaces gives no warning.

Benabik avatar Apr 29 '12 03:04 Benabik

Should be fixed in ec248ed

NotFound avatar Apr 29 '12 05:04 NotFound