Examples of lookupAbstractDataType()


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

      return t;
    TypeStore ts = m.getStore();
    t = ts.lookupAlias(typeString);
    if (t != null)
      return t;
    t = ts.lookupAbstractDataType(typeString);
    return t;
  }

  private Object javaObject(IValue v) {
    if (v.getType().isBool())
View Full Code Here

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

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

      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

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

          throw new UndeclaredModule(
              org.rascalmpl.interpreter.utils.Names
                  .moduleName(sort), sort);
        }

        adt = mod.lookupAbstractDataType(name);
      } else {
        adt = env.lookupAbstractDataType(name);
      }

      if (adt == null) {
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.