1 write to _context
Microsoft.CodeAnalysis.CSharp (1)
FlowAnalysis\CSharpDataFlowAnalysis.cs (1)
49
_context
= context;
38 references to _context
Microsoft.CodeAnalysis.CSharp (38)
FlowAnalysis\CSharpDataFlowAnalysis.cs (38)
67
? Normalize(VariablesDeclaredWalker.Analyze(
_context
.Compilation,
_context
.Member,
_context
.BoundNode,
_context
.FirstInRegion,
_context
.LastInRegion))
83
? UnassignedVariablesWalker.Analyze(
_context
.Compilation,
_context
.Member,
_context
.BoundNode)
101
_succeeded = !
_context
.Failed;
102
var result =
_context
.Failed ? ImmutableArray<ISymbol>.Empty :
103
Normalize(DataFlowsInWalker.Analyze(
_context
.Compilation,
_context
.Member,
_context
.BoundNode,
_context
.FirstInRegion,
_context
.LastInRegion, UnassignedVariables, UnassignedVariableAddressOfSyntaxes, out _succeeded));
136
var (entry, exit) = DefinitelyAssignedWalker.Analyze(
_context
.Compilation,
_context
.Member,
_context
.BoundNode,
_context
.FirstInRegion,
_context
.LastInRegion);
160
? Normalize(DataFlowsOutWalker.Analyze(
_context
.Compilation,
_context
.Member,
_context
.BoundNode,
_context
.FirstInRegion,
_context
.LastInRegion, UnassignedVariables, _dataFlowsIn))
179
? Normalize(AlwaysAssignedWalker.Analyze(
_context
.Compilation,
_context
.Member,
_context
.BoundNode,
_context
.FirstInRegion,
_context
.LastInRegion))
258
ReadWriteWalker.Analyze(
_context
.Compilation,
_context
.Member,
_context
.BoundNode,
_context
.FirstInRegion,
_context
.LastInRegion, UnassignedVariableAddressOfSyntaxes,
364
? UnassignedAddressTakenVariablesWalker.Analyze(
_context
.Compilation,
_context
.Member,
_context
.BoundNode)