Examples of RealJimpleType


Examples of org.renjin.gcc.jimple.RealJimpleType

  public PrimitiveFieldExpr(Field field) {
    if(!Modifier.isStatic(field.getModifiers())) {
      throw new UnsupportedOperationException("field is not static, but no instance name provided");
    }
    this.instanceName = null;
    this.declaringClass =  new RealJimpleType(field.getDeclaringClass());
    this.member = field.getName();
    this.memberType = ImPrimitiveType.valueOf(field.getType());

    Preconditions.checkNotNull("memberType", memberType);
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.