1 override of MakeSlot
Microsoft.CodeAnalysis.CSharp (1)
FlowAnalysis\NullableWalker.cs (1)
2080protected override int MakeSlot(BoundExpression node)
9 references to MakeSlot
Microsoft.CodeAnalysis.CSharp (9)
FlowAnalysis\DefiniteAssignment.cs (5)
1594int slot = MakeSlot(local); 1624int slot = MakeSlot(elementAccess.Expression); 1642int slot = MakeSlot(paramExpr); 1666int slot = MakeSlot(expression); 2620int slot = MakeSlot(expr);
FlowAnalysis\LocalDataFlowPass.cs (3)
223return MakeSlot(((BoundRangeVariable)node).Value); 234return MakeSlot(((BoundAssignmentOperator)node).Left); 248containingSlot = MakeSlot(receiverOpt);
FlowAnalysis\NullableWalker.cs (1)
2170return (slot > 0) ? slot : base.MakeSlot(node);