Package wyvern.tools.types

Examples of wyvern.tools.types.UnresolvedType.resolve()


  public Type resolve(Environment env) {
    // System.out.println("Inside TypeInv innerType = " + innerType + " and its class is " + innerType.getClass());
   
    if (this.innerType instanceof UnresolvedType) {
      UnresolvedType ut = (UnresolvedType) this.innerType;
      Type t = ut.resolve(env);
     
      // System.out.println("GOT: " + t);
    }
    TypeBinding fetched = ((RecordType) innerType).getInnerType(invName);
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.