From c526c4b7a6deb64018492dd9ef1dc3f9420b7861 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Mon, 18 Jan 2016 16:47:42 +0100 Subject: [PATCH] AS3: super method call fix --- .../decompiler/flash/abc/avm2/model/CallSuperAVM2Item.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/model/CallSuperAVM2Item.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/model/CallSuperAVM2Item.java index 9502fe950..fa7074c7c 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/model/CallSuperAVM2Item.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/model/CallSuperAVM2Item.java @@ -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("."); }