Examples of lookupAlias()


Examples of org.eclipse.imp.pdb.facts.type.TypeStore.lookupAlias()

  private Type getType(ModuleEnvironment m, String typeString) {
    Type t = toType.get(typeString);
    if (t != null)
      return t;
    TypeStore ts = m.getStore();
    t = ts.lookupAlias(typeString);
    if (t != null)
      return t;
    t = ts.lookupAbstractDataType(typeString);
    return t;
  }
View Full Code Here

Examples of org.rascalmpl.interpreter.env.Environment.lookupAlias()

          getName(), __eval);
      String name = org.rascalmpl.interpreter.utils.Names.typeName(this
          .getName());

      if (theEnv != null) {
        Type type = theEnv.lookupAlias(name);

        if (type != null) {
          return type;
        }
View Full Code Here

Examples of org.rascalmpl.interpreter.env.Environment.lookupAlias()

      name = org.rascalmpl.interpreter.utils.Names.typeName(this
          .getName());

      if (theEnv != null) {
        type = theEnv.lookupAlias(name);

        if (type == null) {
          type = theEnv.lookupAbstractDataType(name);
        }
      }
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.