Package org.rascalmpl.interpreter.env

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


        if (type != null) {
          return type;
        }

        Type tree = theEnv.lookupAbstractDataType(name);

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


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

        if (type == null) {
          type = theEnv.lookupAbstractDataType(name);
        }
      }

      if (type != null) {
        Map<Type, Type> bindings = new HashMap<Type, Type>();
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.