1 write to Member
Microsoft.CodeAnalysis.CSharp (1)
FlowAnalysis\RegionAnalysisContext.cs (1)
37
this.
Member
= member;
11 references to Member
Microsoft.CodeAnalysis.CSharp (11)
FlowAnalysis\ControlFlowAnalysis.cs (3)
46
((IEnumerable<SyntaxNode>)EntryPointsWalker.Analyze(_context.Compilation, _context.
Member
, _context.BoundNode, _context.FirstInRegion, _context.LastInRegion, out _succeeded)).ToImmutableArray();
64
? ImmutableArray<SyntaxNode>.CastUp(ExitPointsWalker.Analyze(_context.Compilation, _context.
Member
, _context.BoundNode, _context.FirstInRegion, _context.LastInRegion))
112
RegionReachableWalker.Analyze(_context.Compilation, _context.
Member
, _context.BoundNode, _context.FirstInRegion, _context.LastInRegion, out startIsReachable, out endIsReachable);
FlowAnalysis\CSharpDataFlowAnalysis.cs (8)
67
? Normalize(VariablesDeclaredWalker.Analyze(_context.Compilation, _context.
Member
, _context.BoundNode, _context.FirstInRegion, _context.LastInRegion))
83
? UnassignedVariablesWalker.Analyze(_context.Compilation, _context.
Member
, _context.BoundNode)
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)