Package com.sun.org.apache.bcel.internal.generic

Examples of com.sun.org.apache.bcel.internal.generic.LSTORE


        } else if (type == Type.INT) {
           return new ISTORE(index);
        } else if (type == Type.SHORT) {
           return new ISTORE(index);
        } else if (type == Type.LONG) {
           return new LSTORE(index);
        } else if (type == Type.BYTE) {
           return new ISTORE(index);
        } else if (type == Type.CHAR) {
           return new ISTORE(index);
        } else if (type == Type.FLOAT) {
View Full Code Here


        } else if (type == Type.INT) {
           return new ISTORE(index);
        } else if (type == Type.SHORT) {
           return new ISTORE(index);
        } else if (type == Type.LONG) {
           return new LSTORE(index);
        } else if (type == Type.BYTE) {
           return new ISTORE(index);
        } else if (type == Type.CHAR) {
           return new ISTORE(index);
        } else if (type == Type.FLOAT) {
View Full Code Here

    case BYTE:
    case SHORT:
    case INT:   ilc.add(new ISTORE(index)); return;
    case FLOAT:  ilc.add(new FSTORE(index)); return;
    case DOUBLE: ilc.add(new DSTORE(index)); return;
    case LONG:   ilc.add(new LSTORE(index)); return;
    case ARRAY:
    case OBJECT: ilc.add(new ASTORE(index)); return;
    default:       throw new IllegalArgumentException("Invalid type " + type);
    }
  }
View Full Code Here

TOP

Related Classes of com.sun.org.apache.bcel.internal.generic.LSTORE

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.