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 2173int containingSlot = MakeSlot(operand); 2189return MakeSlot(conv.Operand); 3576TrackNullableStateForAssignment(receiver, resultType, resultSlot, resultState, MakeSlot(receiver)); 3701TrackNullableStateForAssignment(initializer, type, slot, valueType, MakeSlot(initializer)); 4239int valueSlot = MakeSlot(operand); 4551TrackNullableStateForAssignment(node.Right, type, slot, resultType, MakeSlot(node.Right)); 4785TrackNullableStateForAssignment(argument, property.TypeWithAnnotations, slot, argumentType, MakeSlot(argument)); 5676slot = MakeSlot(conditional.Receiver); 5708slot = MakeSlot(operand); 5772var slot = MakeSlot(expressionWithoutConversion); 5880int leftSlot = MakeSlot(leftOperand); 5905TrackNullableStateForAssignment(rightOperand, targetType, leftSlot, rightResult, MakeSlot(rightOperand)); 6062var slot = MakeSlot(node); 6149var slot = MakeSlot(expr); 6184var slot = MakeSlot(receiver); 7637? MakeSlot(receiverOpt) 8067trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 8111trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 9133TrackNullableStateForAssignment(value, field.TypeWithAnnotations, targetSlot, valueType, MakeSlot(value)); 9630int valueSlot = MakeSlot(conversionOperand); 9678int valueSlot = MakeSlot(conversionOperand); 10653TrackNullableStateForAssignment(right, leftLValueType, MakeSlot(left), rightState, MakeSlot(right)); 10955valueSlot = MakeSlot(rightPart); 10979int targetSlot = MakeSlot(variable.Expression); 10988valueSlot = MakeSlot(rightPart); 11098extensionReceiverSlot = MakeSlot(node.Operand) is > 0 and int slot ? slot : GetOrCreatePlaceholderSlot(node.Operand); 11249TrackNullableStateForAssignment(node, targetType: operandLvalue, targetSlot: MakeSlot(node.Operand), valueType: resultOfIncrementType); 11275extensionReceiverSlot = MakeSlot(node.Left) is > 0 and int slot ? slot : GetOrCreatePlaceholderSlot(node.Left); 11386Debug.Assert(MakeSlot(node) == -1); 11387TrackNullableStateForAssignment(node, leftLvalueType, MakeSlot(node.Left), resultTypeWithState); 11635int containingSlot = MakeSlot(receiverOpt);
FlowAnalysis\NullableWalker_Patterns.cs (3)
28int slot = MakeSlot(expression); 386int originalInputSlot = MakeSlot(expression); 1052return node.IsSuppressed ? GetOrCreatePlaceholderSlot(node) : MakeSlot(node);