1 write to _analyzedNullabilityMap
Microsoft.CodeAnalysis.CSharp (1)
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
28
_analyzedNullabilityMap
= analyzedNullabilityMap;
8 references to _analyzedNullabilityMap
Microsoft.CodeAnalysis.CSharp (8)
FlowAnalysis\NullableWalker.DebugVerifier.cs (8)
44
if (verifier.
_analyzedNullabilityMap
.Count > verifier._visitedExpressions.Count)
46
foreach (var analyzedNode in verifier.
_analyzedNullabilityMap
.Keys)
50
RoslynDebug.Assert(false, $"Analyzed {verifier.
_analyzedNullabilityMap
.Count} nodes in NullableWalker, but DebugVerifier expects {verifier._visitedExpressions.Count}. Example of unverified node: {analyzedNode.GetDebuggerDisplay()}");
54
else if (verifier.
_analyzedNullabilityMap
.Count < verifier._visitedExpressions.Count)
58
if (!verifier.
_analyzedNullabilityMap
.ContainsKey(verifiedNode))
60
RoslynDebug.Assert(false, $"Analyzed {verifier.
_analyzedNullabilityMap
.Count} nodes in NullableWalker, but DebugVerifier expects {verifier._visitedExpressions.Count}. Example of unanalyzed node: {verifiedNode.GetDebuggerDisplay()}");
71
RoslynDebug.Assert(!
_analyzedNullabilityMap
.ContainsKey(expression), $"Found unexpected {expression} `{expression.Syntax}` in the map.");
75
RoslynDebug.Assert(
_analyzedNullabilityMap
.ContainsKey(expression), $"Did not find {expression} `{expression.Syntax}` in the map.");