Uses of Class
edu.rice.cs.dynamicjava.symbol.TypeSystem.UnmatchedLookupException

Packages that use TypeSystem.UnmatchedLookupException
edu.rice.cs.dynamicjava.symbol   
 

Uses of TypeSystem.UnmatchedLookupException in edu.rice.cs.dynamicjava.symbol
 

Subclasses of TypeSystem.UnmatchedLookupException in edu.rice.cs.dynamicjava.symbol
static class TypeSystem.AmbiguousFunctionLookupException
          A function lookup that failed because all of the given candidates equally matched the provided arguments.
static class TypeSystem.UnmatchedFunctionLookupException
          A function lookup that failed because none of the given candidates matched the provided arguments.
 

Methods in edu.rice.cs.dynamicjava.symbol that throw TypeSystem.UnmatchedLookupException
abstract  ClassType TypeSystem.lookupClass(Expression object, String name, Iterable<? extends Type> typeArgs, Access.Module accessModule)
          Lookup the class with the given name in the given object.
 ClassType StandardTypeSystem.lookupClass(Expression object, String name, Iterable<? extends Type> typeArgs, Access.Module accessModule)
           
abstract  ClassType TypeSystem.lookupClass(Type t, String name, Iterable<? extends Type> typeArgs, Access.Module accessModule)
          Lookup the class with the given name in the given type.
 ClassType StandardTypeSystem.lookupClass(Type t, String name, Iterable<? extends Type> typeArgs, Access.Module accessModule)
           
abstract  TypeSystem.ConstructorInvocation TypeSystem.lookupConstructor(Type t, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Option<Type> expected, Access.Module accessModule)
          Lookup the constructor corresponding the the given invocation.
 TypeSystem.ConstructorInvocation StandardTypeSystem.lookupConstructor(Type t, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Option<Type> expected, Access.Module accessModule)
          Lookup the constructor corresponding the the given invocation.
abstract  TypeSystem.ObjectFieldReference TypeSystem.lookupField(Expression object, String name, Access.Module accessModule)
          Lookup the field with the given name in the given object.
 TypeSystem.ObjectFieldReference StandardTypeSystem.lookupField(Expression object, String name, Access.Module accessModule)
           
abstract  TypeSystem.ObjectMethodInvocation TypeSystem.lookupMethod(Expression object, String name, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Option<Type> expected, Access.Module accessModule)
          Lookup the method corresponding the the given invocation.
 TypeSystem.ObjectMethodInvocation StandardTypeSystem.lookupMethod(Expression object, String name, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Option<Type> expected, Access.Module accessModule)
           
abstract  ClassType TypeSystem.lookupStaticClass(Type t, String name, Iterable<? extends Type> typeArgs, Access.Module accessModule)
          Lookup the static class with the given name.
 ClassType StandardTypeSystem.lookupStaticClass(Type t, String name, Iterable<? extends Type> typeArgs, Access.Module accessModule)
           
abstract  TypeSystem.StaticFieldReference TypeSystem.lookupStaticField(Type t, String name, Access.Module accessModule)
          Lookup the static field with the given name.
 TypeSystem.StaticFieldReference StandardTypeSystem.lookupStaticField(Type t, String name, Access.Module accessModule)
           
abstract  TypeSystem.StaticMethodInvocation TypeSystem.lookupStaticMethod(Type t, String name, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Option<Type> expected, Access.Module accessModule)
          Lookup the static method corresponding the the given invocation.
 TypeSystem.StaticMethodInvocation StandardTypeSystem.lookupStaticMethod(Type t, String name, Iterable<? extends Type> typeArgs, Iterable<? extends Expression> args, Option<Type> expected, Access.Module accessModule)