1 override of MakeSlot
Microsoft.CodeAnalysis.CSharp (1)
FlowAnalysis\NullableWalker.cs (1)
1997protected override int MakeSlot(BoundExpression node)
9 references to MakeSlot
Microsoft.CodeAnalysis.CSharp (9)
FlowAnalysis\DefiniteAssignment.cs (5)
1579int slot = MakeSlot(local); 1609int slot = MakeSlot(elementAccess.Expression); 1627int slot = MakeSlot(paramExpr); 1651int slot = MakeSlot(expression); 2593int slot = MakeSlot(expr);
FlowAnalysis\LocalDataFlowPass.cs (3)
223return MakeSlot(((BoundRangeVariable)node).Value); 234return MakeSlot(((BoundAssignmentOperator)node).Left); 248containingSlot = MakeSlot(receiverOpt);
FlowAnalysis\NullableWalker.cs (1)
2087return (slot > 0) ? slot : base.MakeSlot(node);