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)
333ParameterSymbol methodThisParameter = MethodThisParameter; 825NoteRead(MethodThisParameter); 1004NoteWrite(MethodThisParameter, value, read); 1378var self = MethodThisParameter; 1385unassignedSlot = GetOrCreateSlot(MethodThisParameter); 1497return this.MethodThisParameter; 1499return this.MethodThisParameter; 2426CheckAssigned(MethodThisParameter, node.Syntax); 2575CheckAssigned(MethodThisParameter, node); 2628CheckAssigned(MethodThisParameter, node.Syntax);
FlowAnalysis\LocalDataFlowPass.cs (2)
217return (object)MethodThisParameter != null ? GetOrCreateSlot(MethodThisParameter) : -1;
FlowAnalysis\NullableWalker.cs (3)
588ParameterSymbol methodThisParameter = MethodThisParameter; 1115if (MethodThisParameter is null) 1119containingSlot = GetOrCreateSlot(MethodThisParameter);
FlowAnalysis\ReadWriteWalker.cs (2)
194readOrWritten.Add(this.MethodThisParameter); 200readOrWritten.Add(this.MethodThisParameter);