11 references to Matches
Microsoft.CodeAnalysis.CSharp.Features (2)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (2)
1102var newContainingMemberOrType = GetParameterContainingMemberOrType(newNode, oldNode, newModel, topMatch.Matches, cancellationToken); 2349return _analyzer.GetDeletedNodeDiagnosticSpan(_match!.Matches, _oldNode!);
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (4)
1022var newSpan = GetDeletedDeclarationActiveSpan(topMatch.Matches, oldDeclaration); 2081foreach (var (oldNode, newNode) in topMatch.Matches) 2759var diagnosticSpan = GetDeletedNodeDiagnosticSpan(editScript.Match.Matches, oldDeclaration); 3130newActiveStatementSpan ??= GetDeletedDeclarationActiveSpan(editScript.Match.Matches, oldDeclaration);
EditAndContinue\DeclarationBodyMap.cs (1)
37=> new(match.Matches, match.ReverseMatches, ImmutableDictionary<SyntaxNode, SyntaxNode>.Empty);
EditAndContinue\Utilities\BidirectionalMap.cs (1)
72=> new(match.Matches, match.ReverseMatches);
Microsoft.CodeAnalysis.Features.Test.Utilities (1)
EditAndContinue\EditAndContinueTestVerifier.cs (1)
530=> ToMatchingPairs(match.Matches.Where(partners => partners.Key != match.OldRoot));
Microsoft.CodeAnalysis.VisualBasic.Features (2)
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (2)
760Dim newContainingMemberOrType = GetParameterContainingMemberOrType(newNode, oldNode, newModel, topMatch.Matches, cancellationToken) 1746Return _analyzer.GetDeletedNodeDiagnosticSpan(_match.Matches, _oldNode)