2 overrides of NoteWrite
Microsoft.CodeAnalysis.CSharp (2)
FlowAnalysis\DataFlowsOutWalker.cs (1)
91protected override void NoteWrite(Symbol variable, BoundExpression value, bool read)
FlowAnalysis\ReadWriteWalker.cs (1)
132protected override void NoteWrite(Symbol variable, BoundExpression value, bool read)
9 references to NoteWrite
Microsoft.CodeAnalysis.CSharp (9)
FlowAnalysis\DataFlowsOutWalker.cs (1)
110base.NoteWrite(variable, value, read);
FlowAnalysis\DefiniteAssignment.cs (7)
350NoteWrite(parameter, value: null, read: true); 976NoteWrite(MethodThisParameter, value, read); 980NoteWrite(((BoundLocal)n).LocalSymbol, value, read); 984NoteWrite(((BoundParameter)n).ParameterSymbol, value, read); 1493if (written) NoteWrite(symbol, value, read); 1761NoteWrite(parameter, value: null, read: true); 2603NoteWrite(iterationVariable, null, read: true);
FlowAnalysis\ReadWriteWalker.cs (1)
136base.NoteWrite(variable, value, read);