On 6/28/07, Gordon Smith <[EMAIL PROTECTED]> wrote: > BTW, the implicit super() is inserted at the beginning of the constructor. > If you want it called later, you can explicitly write
> public function ClassA()
> {
> trace("classA constructor");
> super();
> }
This is a bit weird. In Java there's a rule that the super() call
*must* be the first statement in the constructor. And that makes
sense.
