src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/DUP2.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    23 
    23 
    24 /**
    24 /**
    25  * DUP2 - Duplicate two top operand stack words
    25  * DUP2 - Duplicate two top operand stack words
    26  * <PRE>Stack: ..., word2, word1 -&gt; ..., word2, word1, word2, word1</PRE>
    26  * <PRE>Stack: ..., word2, word1 -&gt; ..., word2, word1, word2, word1</PRE>
    27  *
    27  *
    28  * @version $Id: DUP2.java 1747278 2016-06-07 17:28:43Z britter $
    28  * @version $Id$
    29  */
    29  */
    30 public class DUP2 extends StackInstruction implements PushInstruction {
    30 public class DUP2 extends StackInstruction implements PushInstruction {
    31 
    31 
    32     public DUP2() {
    32     public DUP2() {
    33         super(com.sun.org.apache.bcel.internal.Const.DUP2);
    33         super(com.sun.org.apache.bcel.internal.Const.DUP2);