Base:
method
MakeSlot
Microsoft.CodeAnalysis.CSharp.LocalDataFlowPass<TLocalState, TLocalFunctionState>.MakeSlot(Microsoft.CodeAnalysis.CSharp.BoundExpression)
36 references to MakeSlot
Microsoft.CodeAnalysis.CSharp (36)
FlowAnalysis\NullableWalker.cs (33)
457/// Used to allow <see cref="MakeSlot(BoundExpression)"/> to substitute the correct slot for a <see cref="BoundConditionalReceiver"/> when 2175int containingSlot = MakeSlot(operand); 2191return MakeSlot(conv.Operand); 3579TrackNullableStateForAssignment(receiver, resultType, resultSlot, resultState, MakeSlot(receiver)); 3704TrackNullableStateForAssignment(initializer, type, slot, valueType, MakeSlot(initializer)); 4243int valueSlot = MakeSlot(operand); 4555TrackNullableStateForAssignment(node.Right, type, slot, resultType, MakeSlot(node.Right)); 4789TrackNullableStateForAssignment(argument, property.TypeWithAnnotations, slot, argumentType, MakeSlot(argument)); 5680slot = MakeSlot(conditional.Receiver); 5712slot = MakeSlot(operand); 5776var slot = MakeSlot(expressionWithoutConversion); 5884int leftSlot = MakeSlot(leftOperand); 5909TrackNullableStateForAssignment(rightOperand, targetType, leftSlot, rightResult, MakeSlot(rightOperand)); 6066var slot = MakeSlot(node); 6153var slot = MakeSlot(expr); 6188var slot = MakeSlot(receiver); 7641? MakeSlot(receiverOpt) 8071trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 8115trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 9137TrackNullableStateForAssignment(value, field.TypeWithAnnotations, targetSlot, valueType, MakeSlot(value)); 9634int valueSlot = MakeSlot(conversionOperand); 9682int valueSlot = MakeSlot(conversionOperand); 10657TrackNullableStateForAssignment(right, leftLValueType, MakeSlot(left), rightState, MakeSlot(right)); 10959valueSlot = MakeSlot(rightPart); 10983int targetSlot = MakeSlot(variable.Expression); 10992valueSlot = MakeSlot(rightPart); 11102extensionReceiverSlot = MakeSlot(node.Operand) is > 0 and int slot ? slot : GetOrCreatePlaceholderSlot(node.Operand); 11253TrackNullableStateForAssignment(node, targetType: operandLvalue, targetSlot: MakeSlot(node.Operand), valueType: resultOfIncrementType); 11279extensionReceiverSlot = MakeSlot(node.Left) is > 0 and int slot ? slot : GetOrCreatePlaceholderSlot(node.Left); 11390Debug.Assert(MakeSlot(node) == -1); 11391TrackNullableStateForAssignment(node, leftLvalueType, MakeSlot(node.Left), resultTypeWithState); 11639int containingSlot = MakeSlot(receiverOpt);
FlowAnalysis\NullableWalker_Patterns.cs (3)
28int slot = MakeSlot(expression); 386int originalInputSlot = MakeSlot(expression); 1052return node.IsSuppressed ? GetOrCreatePlaceholderSlot(node) : MakeSlot(node);