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 2114int containingSlot = MakeSlot(operand); 2130return MakeSlot(conv.Operand); 3458TrackNullableStateForAssignment(receiver, resultType, resultSlot, resultState, MakeSlot(receiver)); 3585TrackNullableStateForAssignment(initializer, type, slot, valueType, MakeSlot(initializer)); 4070int valueSlot = MakeSlot(operand); 4344TrackNullableStateForAssignment(node.Right, type, slot, resultType, MakeSlot(node.Right)); 4577TrackNullableStateForAssignment(argument, property.TypeWithAnnotations, slot, argumentType, MakeSlot(argument)); 5410slot = MakeSlot(conditional.Receiver); 5442slot = MakeSlot(operand); 5506var slot = MakeSlot(expressionWithoutConversion); 5614int leftSlot = MakeSlot(leftOperand); 5639TrackNullableStateForAssignment(rightOperand, targetType, leftSlot, rightResult, MakeSlot(rightOperand)); 5796var slot = MakeSlot(node); 5882var slot = MakeSlot(expr); 5917var slot = MakeSlot(receiver); 7164? MakeSlot(receiverOpt) 7588trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 7632trackNullableStateForAssignment(parameterValue, lValueType, MakeSlot(argument), parameterWithState, argument.IsSuppressed, parameterAnnotations); 8568TrackNullableStateForAssignment(value, field.TypeWithAnnotations, targetSlot, valueType, MakeSlot(value)); 9065int valueSlot = MakeSlot(conversionOperand); 9113int valueSlot = MakeSlot(conversionOperand); 10054TrackNullableStateForAssignment(right, leftLValueType, MakeSlot(left), rightState, MakeSlot(right)); 10355valueSlot = MakeSlot(rightPart); 10388valueSlot = MakeSlot(rightPart); 10572TrackNullableStateForAssignment(node, targetType: operandLvalue, targetSlot: MakeSlot(node.Operand), valueType: resultOfIncrementType); 10640Debug.Assert(MakeSlot(node) == -1); 10641TrackNullableStateForAssignment(node, leftLvalueType, MakeSlot(node.Left), resultTypeWithState); 10863int containingSlot = MakeSlot(receiverOpt);
FlowAnalysis\NullableWalker_Patterns.cs (3)
28int slot = MakeSlot(expression); 386int originalInputSlot = MakeSlot(expression); 1050return node.IsSuppressed ? GetOrCreatePlaceholderSlot(node) : MakeSlot(node);