2 overrides of NoteWrite
Microsoft.CodeAnalysis.CSharp (2)
FlowAnalysis\DataFlowsOutWalker.cs (1)
91protected override void NoteWrite(Symbol variable, BoundExpression value, bool read, bool isRef)
FlowAnalysis\ReadWriteWalker.cs (1)
137protected override void NoteWrite(Symbol variable, BoundExpression value, bool read, bool isRef)
8 references to NoteWrite
Microsoft.CodeAnalysis.CSharp (8)
FlowAnalysis\DataFlowsOutWalker.cs (1)
110base.NoteWrite(variable, value, read: read, isRef: isRef);
FlowAnalysis\DefiniteAssignment.cs (6)
1027NoteWrite(MethodThisParameter, value, read: read, isRef: isRef); 1031NoteWrite(((BoundLocal)n).LocalSymbol, value, read: read, isRef: isRef); 1035NoteWrite(((BoundParameter)n).ParameterSymbol, value, read: read, isRef: isRef); 1579if (written) NoteWrite(symbol, value, read: read, isRef: isRef); 1914NoteWrite(parameter, value: null, read: true, isRef: parameter.RefKind != RefKind.None); 2798NoteWrite(iterationVariable, null, read: true, isRef: iterationVariable.RefKind != RefKind.None);
FlowAnalysis\ReadWriteWalker.cs (1)
141base.NoteWrite(variable, value, read: read, isRef: isRef);