Package edu.cmu.cs.crystal.tac.model

Examples of edu.cmu.cs.crystal.tac.model.SuperVariable


    if(thisType == null || thisType.getSuperclass() == null)
      // static method or no superclass
      return null;
   
    // TODO find super-type binding based on qualifier and accessed element
    SuperVariable result = superVar.get(qualifier);
    if(result == null) {
      result = new SuperVariable(this, qualifier);
      superVar.put(qualifier, result);
    }
    return result;
  }
View Full Code Here


    if(thisType == null || thisType.getSuperclass() == null)
      // static method or no superclass
      return null;
   
    // TODO find super-type binding based on qualifier and accessed element
    SuperVariable result = superVar.get(qualifier);
    if(result == null) {
      result = new SuperVariable(this, qualifier);
      superVar.put(qualifier, result);
    }
    return result;
  }
View Full Code Here

TOP

Related Classes of edu.cmu.cs.crystal.tac.model.SuperVariable

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.