Update with current status
[gnash.git] / testsuite / misc-mtasc.all / Derived1.as
blob2c5226a974755442cf83b69c72eef00010533f9d
2 import Base1;
4 class Derived1 extends Base1
6 var derived1CtorCalled;
7 var derivedThisPtr;
8 var derived1DirectCalled;
9 var derived1ViaApplyCalled;
11 // constructor
12 function Derived1()
14 super();
15 this.derived1CtorCalled = true;
16 derivedThisPtr = this;
19 function direct()
21 super.direct();
22 this.derived1DirectCalled = true;
25 function viaApply()
27 super.viaApply();
28 this.derived1ViaApplyCalled = true;