* Narrowing and widening conversions are handled by the following
* Constant.castTo call. JDT wants the upper four bits of this mask to
* be the target type id and the lower four bits to be the source type
* id. See Constant.castTo for more details.
*/
constant = constant.castTo((expectedTypeId << 4)
+ elementValueExpression.resolvedType.id);
}
elementValue = getConstantValue(constant);
} else if (elementValueExpression instanceof ClassLiteralAccess) {