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 2112int containingSlot = MakeSlot(operand); 2128return MakeSlot(conv.Operand); 3456TrackNullableStateForAssignment(receiver, resultType, resultSlot, resultState, MakeSlot(receiver)); 3583TrackNullableStateForAssignment(initializer, type, slot, valueType, MakeSlot(initializer)); 4066int valueSlot = MakeSlot(operand); 4339TrackNullableStateForAssignment(node.Right, type, slot, resultType, MakeSlot(node.Right)); 4572TrackNullableStateForAssignment(argument, property.TypeWithAnnotations, slot, argumentType, MakeSlot(argument)); 5405slot = MakeSlot(conditional.Receiver); 5437slot = MakeSlot(operand); 5501var slot = MakeSlot(expressionWithoutConversion); 5609int leftSlot = MakeSlot(leftOperand); 5634TrackNullableStateForAssignment(rightOperand, targetType, leftSlot, rightResult, MakeSlot(rightOperand)); 5791var slot = MakeSlot(node); 5877var slot = MakeSlot(expr); 5912var slot = MakeSlot(receiver); 7155? MakeSlot(receiverOpt) 7577trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 7621trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 8557TrackNullableStateForAssignment(value, field.TypeWithAnnotations, targetSlot, valueType, MakeSlot(value)); 9054int valueSlot = MakeSlot(conversionOperand); 9102int valueSlot = MakeSlot(conversionOperand); 10043TrackNullableStateForAssignment(right, leftLValueType, MakeSlot(left), rightState, MakeSlot(right)); 10344valueSlot = MakeSlot(rightPart); 10377valueSlot = MakeSlot(rightPart); 10561TrackNullableStateForAssignment(node, targetType: operandLvalue, targetSlot: MakeSlot(node.Operand), valueType: resultOfIncrementType); 10629Debug.Assert(MakeSlot(node) == -1); 10630TrackNullableStateForAssignment(node, leftLvalueType, MakeSlot(node.Left), resultTypeWithState); 10852int containingSlot = MakeSlot(receiverOpt);
FlowAnalysis\NullableWalker_Patterns.cs (3)
28int slot = MakeSlot(expression); 386int originalInputSlot = MakeSlot(expression); 1050return node.IsSuppressed ? GetOrCreatePlaceholderSlot(node) : MakeSlot(node);