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

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

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

Methods in edu.rice.cs.dynamicjava.symbol that throw TypeSystem.UnsupportedConversionException
abstract  Expression TypeSystem.assign(Type target, Expression e)
          Prepare the given expression for assignment, wrapping it in any necessary conversions.
 Expression StandardTypeSystem.assign(Type target, Expression exp)
          Prepare the given expression for assignment, wrapping it in any necessary conversions.
abstract  Pair<Expression,Expression> TypeSystem.binaryPromote(Expression e1, Expression e2)
          Perform binary numeric promotion on a pair of expressions.
 Pair<Expression,Expression> StandardTypeSystem.binaryPromote(Expression e1, Expression e2)
          Perform binary numeric promotion on a pair of expressions.
abstract  Expression TypeSystem.cast(Type target, Expression e)
          Perform a cast on the given expression.
 Expression StandardTypeSystem.cast(Type target, Expression e)
          Perform a cast on the given expression.
abstract  Expression TypeSystem.makePrimitive(Expression e)
          Convert the expression to a primitive.
 Expression StandardTypeSystem.makePrimitive(Expression e)
          Convert the expression to a primitive.
abstract  Expression TypeSystem.makeReference(Expression e)
          Convert the expression to a reference.
 Expression StandardTypeSystem.makeReference(Expression e)
          Convert the expression to a reference.
abstract  Pair<Expression,Expression> TypeSystem.mergeConditional(Expression e1, Expression e2)
          Perform a join (as defined for the ? : operator) on a pair of expressions.
 Pair<Expression,Expression> StandardTypeSystem.mergeConditional(Expression e1, Expression e2)
          Perform a join (as defined for the ? : operator) on a pair of expressions.
abstract  Expression TypeSystem.unaryPromote(Expression e)
          Perform unary numeric promotion on an expression.
 Expression StandardTypeSystem.unaryPromote(Expression e)
          Perform unary numeric promotion on an expression.