21 references to MethodThisParameter
Microsoft.CodeAnalysis.CSharp (21)
FlowAnalysis\AbstractRegionDataFlowPass.cs (2)
35if ((object)MethodThisParameter != null) GetOrCreateSlot(MethodThisParameter);
FlowAnalysis\DataFlowsOutWalker.cs (2)
146return MethodThisParameter; 242case BoundKind.ThisReference: return this.MethodThisParameter;
FlowAnalysis\DefiniteAssignment.cs (10)
334ParameterSymbol methodThisParameter = MethodThisParameter; 804NoteRead(MethodThisParameter); 976NoteWrite(MethodThisParameter, value, read); 1325var self = MethodThisParameter; 1332unassignedSlot = GetOrCreateSlot(MethodThisParameter); 1438return this.MethodThisParameter; 1440return this.MethodThisParameter; 2307CheckAssigned(MethodThisParameter, node.Syntax); 2456CheckAssigned(MethodThisParameter, node); 2505CheckAssigned(MethodThisParameter, node.Syntax);
FlowAnalysis\LocalDataFlowPass.cs (2)
212return (object)MethodThisParameter != null ? GetOrCreateSlot(MethodThisParameter) : -1;
FlowAnalysis\NullableWalker.cs (3)
555ParameterSymbol methodThisParameter = MethodThisParameter; 1080if (MethodThisParameter is null) 1084containingSlot = GetOrCreateSlot(MethodThisParameter);
FlowAnalysis\ReadWriteWalker.cs (2)
184readOrWritten.Add(this.MethodThisParameter); 190readOrWritten.Add(this.MethodThisParameter);