Package erjang

Examples of erjang.ESmall.intValue()


      private void push_scaled(Arg value, int factor) {
        if (value.kind == Kind.IMMEDIATE
            && value.value instanceof ESmall) {
          ESmall sm = (ESmall) value.value;
          mv.visitLdcInsn(new Integer(factor * sm.intValue()));
        } else {
          push(value, Type.INT_TYPE);
          push_int(factor);
          mv.visitInsn(IMUL);
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.