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)
438/// Used to allow <see cref="MakeSlot(BoundExpression)"/> to substitute the correct slot for a <see cref="BoundConditionalReceiver"/> when 2155int containingSlot = MakeSlot(operand); 2171return MakeSlot(conv.Operand); 3559TrackNullableStateForAssignment(receiver, resultType, resultSlot, resultState, MakeSlot(receiver)); 3686TrackNullableStateForAssignment(initializer, type, slot, valueType, MakeSlot(initializer)); 4225int valueSlot = MakeSlot(operand); 4500TrackNullableStateForAssignment(node.Right, type, slot, resultType, MakeSlot(node.Right)); 4734TrackNullableStateForAssignment(argument, property.TypeWithAnnotations, slot, argumentType, MakeSlot(argument)); 5625slot = MakeSlot(conditional.Receiver); 5657slot = MakeSlot(operand); 5721var slot = MakeSlot(expressionWithoutConversion); 5829int leftSlot = MakeSlot(leftOperand); 5854TrackNullableStateForAssignment(rightOperand, targetType, leftSlot, rightResult, MakeSlot(rightOperand)); 6011var slot = MakeSlot(node); 6098var slot = MakeSlot(expr); 6133var slot = MakeSlot(receiver); 7545? MakeSlot(receiverOpt) 7975trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 8019trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 8995TrackNullableStateForAssignment(value, field.TypeWithAnnotations, targetSlot, valueType, MakeSlot(value)); 9492int valueSlot = MakeSlot(conversionOperand); 9540int valueSlot = MakeSlot(conversionOperand); 10515TrackNullableStateForAssignment(right, leftLValueType, MakeSlot(left), rightState, MakeSlot(right)); 10819valueSlot = MakeSlot(rightPart); 10843int targetSlot = MakeSlot(variable.Expression); 10852valueSlot = MakeSlot(rightPart); 10962extensionReceiverSlot = MakeSlot(node.Operand) is > 0 and int slot ? slot : GetOrCreatePlaceholderSlot(node.Operand); 11114TrackNullableStateForAssignment(node, targetType: operandLvalue, targetSlot: MakeSlot(node.Operand), valueType: resultOfIncrementType); 11140extensionReceiverSlot = MakeSlot(node.Left) is > 0 and int slot ? slot : GetOrCreatePlaceholderSlot(node.Left); 11252Debug.Assert(MakeSlot(node) == -1); 11253TrackNullableStateForAssignment(node, leftLvalueType, MakeSlot(node.Left), resultTypeWithState); 11501int containingSlot = MakeSlot(receiverOpt);
FlowAnalysis\NullableWalker_Patterns.cs (3)
28int slot = MakeSlot(expression); 386int originalInputSlot = MakeSlot(expression); 1052return node.IsSuppressed ? GetOrCreatePlaceholderSlot(node) : MakeSlot(node);