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 2174int containingSlot = MakeSlot(operand); 2190return MakeSlot(conv.Operand); 3577TrackNullableStateForAssignment(receiver, resultType, resultSlot, resultState, MakeSlot(receiver)); 3702TrackNullableStateForAssignment(initializer, type, slot, valueType, MakeSlot(initializer)); 4374int valueSlot = MakeSlot(operand); 4709TrackNullableStateForAssignment(node.Right, type, slot, resultType, MakeSlot(node.Right)); 4943TrackNullableStateForAssignment(argument, property.TypeWithAnnotations, slot, argumentType, MakeSlot(argument)); 5834slot = MakeSlot(conditional.Receiver); 5866slot = MakeSlot(operand); 5930var slot = MakeSlot(expressionWithoutConversion); 6038int leftSlot = MakeSlot(leftOperand); 6063TrackNullableStateForAssignment(rightOperand, targetType, leftSlot, rightResult, MakeSlot(rightOperand)); 6220var slot = MakeSlot(node); 6307var slot = MakeSlot(expr); 6342var slot = MakeSlot(receiver); 7794? MakeSlot(receiverOpt) 8224trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 8268trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 9301TrackNullableStateForAssignment(value, field.TypeWithAnnotations, targetSlot, valueType, MakeSlot(value)); 9798int valueSlot = MakeSlot(conversionOperand); 9846int valueSlot = MakeSlot(conversionOperand); 10820TrackNullableStateForAssignment(right, leftLValueType, MakeSlot(left), rightState, MakeSlot(right)); 11122valueSlot = MakeSlot(rightPart); 11146int targetSlot = MakeSlot(variable.Expression); 11155valueSlot = MakeSlot(rightPart); 11265extensionReceiverSlot = MakeSlot(node.Operand) is > 0 and int slot ? slot : GetOrCreatePlaceholderSlot(node.Operand); 11420TrackNullableStateForAssignment(node, targetType: operandLvalue, targetSlot: MakeSlot(node.Operand), valueType: resultOfIncrementType); 11446extensionReceiverSlot = MakeSlot(node.Left) is > 0 and int slot ? slot : GetOrCreatePlaceholderSlot(node.Left); 11561Debug.Assert(MakeSlot(node) == -1); 11562TrackNullableStateForAssignment(node, leftLvalueType, MakeSlot(node.Left), resultTypeWithState); 11818int containingSlot = MakeSlot(receiverOpt);
FlowAnalysis\NullableWalker_Patterns.cs (3)
28int slot = MakeSlot(expression); 386int originalInputSlot = MakeSlot(expression); 1052return node.IsSuppressed ? GetOrCreatePlaceholderSlot(node) : MakeSlot(node);