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