Added empty execute method for label instruction

This commit is contained in:
honfika@gmail.com
2014-12-05 19:10:37 +01:00
parent a9a443c26b
commit 9f18174ece

View File

@@ -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<Object> arguments) {
}
}