Base:
method
MakeSlot
Microsoft.CodeAnalysis.CSharp.LocalDataFlowPass<TLocalState, TLocalFunctionState>.MakeSlot(Microsoft.CodeAnalysis.CSharp.BoundExpression)
33 references to MakeSlot
Microsoft.CodeAnalysis.CSharp (33)
FlowAnalysis\NullableWalker.cs (30)
426/// Used to allow <see cref="MakeSlot(BoundExpression)"/> to substitute the correct slot for a <see cref="BoundConditionalReceiver"/> when 2051int containingSlot = MakeSlot(operand); 2067return MakeSlot(conv.Operand); 3395TrackNullableStateForAssignment(receiver, resultType, resultSlot, resultState, MakeSlot(receiver)); 3522TrackNullableStateForAssignment(initializer, type, slot, valueType, MakeSlot(initializer)); 4005int valueSlot = MakeSlot(operand); 4278TrackNullableStateForAssignment(node.Right, type, slot, resultType, MakeSlot(node.Right)); 4511TrackNullableStateForAssignment(argument, property.TypeWithAnnotations, slot, argumentType, MakeSlot(argument)); 5344slot = MakeSlot(conditional.Receiver); 5376slot = MakeSlot(operand); 5440var slot = MakeSlot(expressionWithoutConversion); 5548int leftSlot = MakeSlot(leftOperand); 5573TrackNullableStateForAssignment(rightOperand, targetType, leftSlot, rightResult, MakeSlot(rightOperand)); 5730var slot = MakeSlot(node); 5816var slot = MakeSlot(expr); 5851var slot = MakeSlot(receiver); 7094? MakeSlot(receiverOpt) 7516trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 7560trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 8496TrackNullableStateForAssignment(value, field.TypeWithAnnotations, targetSlot, valueType, MakeSlot(value)); 8993int valueSlot = MakeSlot(conversionOperand); 9041int valueSlot = MakeSlot(conversionOperand); 9982TrackNullableStateForAssignment(right, leftLValueType, MakeSlot(left), rightState, MakeSlot(right)); 10283valueSlot = MakeSlot(rightPart); 10316valueSlot = MakeSlot(rightPart); 10500TrackNullableStateForAssignment(node, targetType: operandLvalue, targetSlot: MakeSlot(node.Operand), valueType: resultOfIncrementType); 10568Debug.Assert(MakeSlot(node) == -1); 10569TrackNullableStateForAssignment(node, leftLvalueType, MakeSlot(node.Left), resultTypeWithState); 10791int containingSlot = MakeSlot(receiverOpt);
FlowAnalysis\NullableWalker_Patterns.cs (3)
28int slot = MakeSlot(expression); 386int originalInputSlot = MakeSlot(expression); 1050return node.IsSuppressed ? GetOrCreatePlaceholderSlot(node) : MakeSlot(node);