Base:
method
MakeSlot
Microsoft.CodeAnalysis.CSharp.LocalDataFlowPass<TLocalState, TLocalFunctionState>.MakeSlot(Microsoft.CodeAnalysis.CSharp.BoundExpression)
35 references to MakeSlot
Microsoft.CodeAnalysis.CSharp (35)
FlowAnalysis\NullableWalker.cs (32)
432/// Used to allow <see cref="MakeSlot(BoundExpression)"/> to substitute the correct slot for a <see cref="BoundConditionalReceiver"/> when 2149int containingSlot = MakeSlot(operand); 2165return MakeSlot(conv.Operand); 3553TrackNullableStateForAssignment(receiver, resultType, resultSlot, resultState, MakeSlot(receiver)); 3680TrackNullableStateForAssignment(initializer, type, slot, valueType, MakeSlot(initializer)); 4219int valueSlot = MakeSlot(operand); 4493TrackNullableStateForAssignment(node.Right, type, slot, resultType, MakeSlot(node.Right)); 4727TrackNullableStateForAssignment(argument, property.TypeWithAnnotations, slot, argumentType, MakeSlot(argument)); 5618slot = MakeSlot(conditional.Receiver); 5650slot = MakeSlot(operand); 5714var slot = MakeSlot(expressionWithoutConversion); 5822int leftSlot = MakeSlot(leftOperand); 5847TrackNullableStateForAssignment(rightOperand, targetType, leftSlot, rightResult, MakeSlot(rightOperand)); 6004var slot = MakeSlot(node); 6091var slot = MakeSlot(expr); 6126var slot = MakeSlot(receiver); 7542? MakeSlot(receiverOpt) 7972trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 8016trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 8991TrackNullableStateForAssignment(value, field.TypeWithAnnotations, targetSlot, valueType, MakeSlot(value)); 9488int valueSlot = MakeSlot(conversionOperand); 9536int valueSlot = MakeSlot(conversionOperand); 10503TrackNullableStateForAssignment(right, leftLValueType, MakeSlot(left), rightState, MakeSlot(right)); 10807valueSlot = MakeSlot(rightPart); 10840valueSlot = MakeSlot(rightPart); 10950extensionReceiverSlot = MakeSlot(node.Operand) is > 0 and int slot ? slot : GetOrCreatePlaceholderSlot(node.Operand); 11102TrackNullableStateForAssignment(node, targetType: operandLvalue, targetSlot: MakeSlot(node.Operand), valueType: resultOfIncrementType); 11128extensionReceiverSlot = MakeSlot(node.Left) is > 0 and int slot ? slot : GetOrCreatePlaceholderSlot(node.Left); 11240Debug.Assert(MakeSlot(node) == -1); 11241TrackNullableStateForAssignment(node, leftLvalueType, MakeSlot(node.Left), resultTypeWithState); 11483int containingSlot = MakeSlot(receiverOpt);
FlowAnalysis\NullableWalker_Patterns.cs (3)
28int slot = MakeSlot(expression); 386int originalInputSlot = MakeSlot(expression); 1050return node.IsSuppressed ? GetOrCreatePlaceholderSlot(node) : MakeSlot(node);