1 write to _analyzedNullabilityMap
Microsoft.CodeAnalysis.CSharp (1)
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
29
_analyzedNullabilityMap
= analyzedNullabilityMap;
8 references to _analyzedNullabilityMap
Microsoft.CodeAnalysis.CSharp (8)
FlowAnalysis\NullableWalker.DebugVerifier.cs (8)
45
if (verifier.
_analyzedNullabilityMap
.Count > verifier._visitedExpressions.Count)
47
foreach (var analyzedNode in verifier.
_analyzedNullabilityMap
.Keys)
51
RoslynDebug.Assert(false, $"Analyzed {verifier.
_analyzedNullabilityMap
.Count} nodes in NullableWalker, but DebugVerifier expects {verifier._visitedExpressions.Count}. Example of unverified node: {analyzedNode.GetDebuggerDisplay()}");
55
else if (verifier.
_analyzedNullabilityMap
.Count < verifier._visitedExpressions.Count)
59
if (!verifier.
_analyzedNullabilityMap
.ContainsKey(verifiedNode))
61
RoslynDebug.Assert(false, $"Analyzed {verifier.
_analyzedNullabilityMap
.Count} nodes in NullableWalker, but DebugVerifier expects {verifier._visitedExpressions.Count}. Example of unanalyzed node: {verifiedNode.GetDebuggerDisplay()}");
72
RoslynDebug.Assert(!
_analyzedNullabilityMap
.ContainsKey(expression), $"Found unexpected {expression} `{expression.Syntax}` in the map.");
76
RoslynDebug.Assert(
_analyzedNullabilityMap
.ContainsKey(expression), $"Did not find {expression} `{expression.Syntax}` in the map.");