} else if (rhsType.isNullOrUndef()) {
lhsPair = analyzeExprFwd(
lhs, inEnv, JSType.UNKNOWN, JSType.NULL_OR_UNDEF);
rhsPair = analyzeExprFwd(rhs, lhsPair.env);
} else if (!JSType.NULL_OR_UNDEF.isSubtypeOf(lhsType)) {
rhsType = rhsType.removeType(JSType.NULL_OR_UNDEF);
rhsPair = analyzeExprFwd(rhs, lhsPair.env, JSType.UNKNOWN, rhsType);
} else if (!JSType.NULL_OR_UNDEF.isSubtypeOf(rhsType)) {
lhsType = lhsType.removeType(JSType.NULL_OR_UNDEF);
lhsPair = analyzeExprFwd(lhs, inEnv, JSType.UNKNOWN, lhsType);
rhsPair = analyzeExprFwd(rhs, lhsPair.env);