I am much more familiar with Java's semantics of class and interface than with Actionscript semantics, but I have an example of some code that works in Java and doesn't work in Actionscript. This descrepency is a serious problem in that I am trying to code generate my Actionscript value objects from the Java DTOs and unless the semantics are the same, I am in deep trouble.
Here's the code that works in Java and fails to compile in Actionscript:
Interface A:
public interface Ia {
function makeCopy():Ia;
}
Interface B:
public interface Ib extends Ia {
}
Class B (won't compile):
public class B implements Ib {
public function makeCopy():Ib {
return null;
}
}
I don't understand why class B throws a compile error about an incompatible signature for "makeCopy" when clearly interface B extends interface A...thus there is no violation of type or incompatibility. If this is just an Actionscript limitation, can anyone suggest a way to recode?
NOTE: I already tried changing interface B to this and it threw an error in interface B (which work in Java):
public interface Ib extends Ia {
function makeCopy():Ib;
}