From 9f18174ecefa53a323e520a908ae9e694c0b040f Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Fri, 5 Dec 2014 19:10:37 +0100 Subject: [PATCH] Added empty execute method for label instruction --- .../flash/abc/avm2/instructions/other/LabelIns.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/instructions/other/LabelIns.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/instructions/other/LabelIns.java index acce2949b..3aa029786 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/instructions/other/LabelIns.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/abc/avm2/instructions/other/LabelIns.java @@ -12,10 +12,14 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library. */ + * License along with this library. + */ package com.jpexs.decompiler.flash.abc.avm2.instructions.other; +import com.jpexs.decompiler.flash.abc.avm2.AVM2ConstantPool; +import com.jpexs.decompiler.flash.abc.avm2.LocalDataArea; import com.jpexs.decompiler.flash.abc.avm2.instructions.InstructionDefinition; +import java.util.List; public class LabelIns extends InstructionDefinition { //this can be target of branch @@ -23,4 +27,8 @@ public class LabelIns extends InstructionDefinition { public LabelIns() { super(0x09, "label", new int[]{}); } + + @Override + public void execute(LocalDataArea lda, AVM2ConstantPool constants, List arguments) { + } }