package com.jpexs.asdec.action.swf4; import com.jpexs.asdec.action.Action; import com.jpexs.asdec.action.treemodel.ConstantPool; import com.jpexs.asdec.action.treemodel.ToIntegerTreeItem; import com.jpexs.asdec.action.treemodel.TreeItem; import java.util.List; import java.util.Stack; public class ActionToInteger extends Action { public ActionToInteger() { super(0x18, 0); } @Override public String toString() { return "ToInteger"; } @Override public void translate(Stack stack, ConstantPool constants, List output, java.util.HashMap regNames) { TreeItem a = stack.pop(); stack.push(new ToIntegerTreeItem(this, a)); } }