Plugin: com.ibm.wala.cast
File: com.ibm.wala.cast.ir.translator.AstTranslator
Method getConstantValue(Object 0) in the private abstract class AbstractScope does not handle objects of type Short.
Fix: Similar to all other types an additional else if statement should be added for the Short type.
else if (o instanceof Short) {
return getUnderlyingSymtab().getConstant(((Short) o).shortValue());
}
Attached is a patch file.
fix for the above mentioned problem