AS3: super method call fix

This commit is contained in:
Jindra Petřík
2016-01-18 16:47:42 +01:00
parent bbe2c95f0a
commit c526c4b7a6
@@ -47,7 +47,7 @@ public class CallSuperAVM2Item extends AVM2Item {
@Override
public GraphTextWriter appendTo(GraphTextWriter writer, LocalData localData) throws InterruptedException {
if (!receiver.toString().equals("this")) {
if (!receiver.toString().equals("this") && !(receiver instanceof FindPropertyAVM2Item)) {
receiver.toString(writer, localData);
writer.append(".");
}