/** Return the set of other fields and locals that must reference
* the same object as the given local, at a point before
* the given unit.
*/
public boolean isNeverNullBefore(Local local, Unit unit) {
FlowSet flowSet = (FlowSet) getFlowBefore(unit);
int info = anyRefInfo(local, flowSet);
return (info == kNonNull);
}