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)
132protected override void NoteWrite(Symbol variable, BoundExpression value, bool read, bool isRef)
9 references to NoteWrite
Microsoft.CodeAnalysis.CSharp (9)
FlowAnalysis\DataFlowsOutWalker.cs (1)
110base.NoteWrite(variable, value, read: read, isRef: isRef);
FlowAnalysis\DefiniteAssignment.cs (7)
349NoteWrite(parameter, value: null, read: true, isRef: parameter.RefKind != RefKind.None); 1012NoteWrite(MethodThisParameter, value, read: read, isRef: isRef); 1016NoteWrite(((BoundLocal)n).LocalSymbol, value, read: read, isRef: isRef); 1020NoteWrite(((BoundParameter)n).ParameterSymbol, value, read: read, isRef: isRef); 1564if (written) NoteWrite(symbol, value, read: read, isRef: isRef); 1887NoteWrite(parameter, value: null, read: true, isRef: parameter.RefKind != RefKind.None); 2771NoteWrite(iterationVariable, null, read: true, isRef: iterationVariable.RefKind != RefKind.None);
FlowAnalysis\ReadWriteWalker.cs (1)
136base.NoteWrite(variable, value, read: read, isRef: isRef);