src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/RET.java
changeset 55496 8e0ae3830fca
parent 47216 71c04702a3d5
equal deleted inserted replaced
55495:badfa812b82a 55496:8e0ae3830fca
    29 /**
    29 /**
    30  * RET - Return from subroutine
    30  * RET - Return from subroutine
    31  *
    31  *
    32  * <PRE>Stack: ... -&gt; ...</PRE>
    32  * <PRE>Stack: ... -&gt; ...</PRE>
    33  *
    33  *
    34  * @version $Id: RET.java 1747278 2016-06-07 17:28:43Z britter $
    34  * @version $Id$
    35  */
    35  */
    36 public class RET extends Instruction implements IndexedInstruction, TypedInstruction {
    36 public class RET extends Instruction implements IndexedInstruction, TypedInstruction {
    37 
    37 
    38     private boolean wide;
    38     private boolean wide;
    39     private int index; // index to local variable containg the return address
    39     private int index; // index to local variable containg the return address
    40 
    40 
    41 
    41 
    42     /**
    42     /**
    43      * Empty constructor needed for the Class.newInstance() statement in
    43      * Empty constructor needed for Instruction.readInstruction.
    44      * Instruction.readInstruction(). Not to be used otherwise.
    44      * Not to be used otherwise.
    45      */
    45      */
    46     RET() {
    46     RET() {
    47     }
    47     }
    48 
    48 
    49 
    49