12 references to Join
Microsoft.CodeAnalysis.CSharp (12)
Binder\Semantics\BestTypeInferrer.cs (1)
41result = result.Join(type.State);
FlowAnalysis\NullableWalker.cs (11)
2080result = result.Join(GetParameterState(parameter.TypeWithAnnotations, parameter.FlowAnalysisAnnotations).State); 2884SetState(ref tryState, slot, newState.Join(GetState(ref tryState, slot)), useNotNullsAsDefault: true); 5387return GetLiftedReturnType(methodOpt.ReturnTypeWithAnnotations, leftType.State.Join(rightType.State)); 5418resultState = leftType.State.Join(rightType.State); 6229SetResultType(node, TypeWithState.Create(resultType, rightResult.State.Join(leftState))); 6503var rValueState = consequenceRValue.State.Join(alternativeRValue.State); 6632resultState = convertedConsequenceResult.State.Join(convertedAlternativeResult.State); 6645resultState = consequenceRValue.State.Join(alternativeRValue.State); 7348valueFlowState = valueFlowState.Join(locationFlowState); 10808NullableFlowState state = returnType.ToTypeWithState().State.Join(operandState); 14268var newValue = oldValue.Join(other.GetValue(i));