Package org.renjin.gcc.jimple

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

Related Classes of org.renjin.gcc.jimple.RealJimpleType

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.