瀏覽代碼

356612

tags/V1_6_12
aclement 12 年之前
父節點
當前提交
11f0639de5
共有 1 個檔案被更改,包括 19 行新增1 行删除
  1. 19
    1
      bcel-builder/src/org/aspectj/apache/bcel/generic/InstructionList.java

+ 19
- 1
bcel-builder/src/org/aspectj/apache/bcel/generic/InstructionList.java 查看文件

@@ -76,7 +76,7 @@ import org.aspectj.apache.bcel.util.ByteSequence;
*
* A list is finally dumped to a byte code array with <a href="#getByteCode()">getByteCode</a>.
*
* @version $Id: InstructionList.java,v 1.11 2010/09/15 18:18:01 aclement Exp $
* @version $Id: InstructionList.java,v 1.12 2011/09/02 22:33:04 aclement Exp $
* @author <A HREF="mailto:markus.dahm@berlin.de">M. Dahm</A>
* @author Abraham Nevado
* @see Instruction
@@ -355,6 +355,24 @@ public class InstructionList implements Serializable {
return ih;
}

public InstructionHandle appendDUP() {
InstructionHandle ih = InstructionHandle.getInstructionHandle(InstructionConstants.DUP);
append(ih);
return ih;
}

public InstructionHandle appendNOP() {
InstructionHandle ih = InstructionHandle.getInstructionHandle(InstructionConstants.NOP);
append(ih);
return ih;
}

public InstructionHandle appendPOP() {
InstructionHandle ih = InstructionHandle.getInstructionHandle(InstructionConstants.POP);
append(ih);
return ih;
}

/**
* Append a branch instruction to the end of this list.
*

Loading…
取消
儲存