Package org.rascalmpl.interpreter.env

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


      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.