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)
432/// Used to allow <see cref="MakeSlot(BoundExpression)"/> to substitute the correct slot for a <see cref="BoundConditionalReceiver"/> when 2134int containingSlot = MakeSlot(operand); 2150return MakeSlot(conv.Operand); 3537TrackNullableStateForAssignment(receiver, resultType, resultSlot, resultState, MakeSlot(receiver)); 3664TrackNullableStateForAssignment(initializer, type, slot, valueType, MakeSlot(initializer)); 4149int valueSlot = MakeSlot(operand); 4423TrackNullableStateForAssignment(node.Right, type, slot, resultType, MakeSlot(node.Right)); 4657TrackNullableStateForAssignment(argument, property.TypeWithAnnotations, slot, argumentType, MakeSlot(argument)); 5491slot = MakeSlot(conditional.Receiver); 5523slot = MakeSlot(operand); 5587var slot = MakeSlot(expressionWithoutConversion); 5695int leftSlot = MakeSlot(leftOperand); 5720TrackNullableStateForAssignment(rightOperand, targetType, leftSlot, rightResult, MakeSlot(rightOperand)); 5877var slot = MakeSlot(node); 5963var slot = MakeSlot(expr); 5998var slot = MakeSlot(receiver); 7253? MakeSlot(receiverOpt) 7677trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 7721trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 8659TrackNullableStateForAssignment(value, field.TypeWithAnnotations, targetSlot, valueType, MakeSlot(value)); 9158int valueSlot = MakeSlot(conversionOperand); 9206int valueSlot = MakeSlot(conversionOperand); 10162TrackNullableStateForAssignment(right, leftLValueType, MakeSlot(left), rightState, MakeSlot(right)); 10464valueSlot = MakeSlot(rightPart); 10497valueSlot = MakeSlot(rightPart); 10681TrackNullableStateForAssignment(node, targetType: operandLvalue, targetSlot: MakeSlot(node.Operand), valueType: resultOfIncrementType); 10749Debug.Assert(MakeSlot(node) == -1); 10750TrackNullableStateForAssignment(node, leftLvalueType, MakeSlot(node.Left), resultTypeWithState); 10972int containingSlot = MakeSlot(receiverOpt);
FlowAnalysis\NullableWalker_Patterns.cs (3)
28int slot = MakeSlot(expression); 386int originalInputSlot = MakeSlot(expression); 1050return node.IsSuppressed ? GetOrCreatePlaceholderSlot(node) : MakeSlot(node);