2 writes to _matches
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\DefaultRazorTagHelperContextDiscoveryPhase.cs (2)
87
private TagHelperCollection.Builder Matches =>
_matches
??= [];
127
_matches
= null;
2 references to _matches
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\DefaultRazorTagHelperContextDiscoveryPhase.cs (2)
108
public TagHelperCollection GetResults() =>
_matches
?.ToCollection() ?? [];
124
if (
_matches
is { } matches)