11 references to Matches
Microsoft.CodeAnalysis.CSharp.Features (2)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (2)
1088var newContainingMemberOrType = GetParameterContainingMemberOrType(newNode, oldNode, newModel, topMatch.Matches, cancellationToken); 2329return _analyzer.GetDeletedNodeDiagnosticSpan(_match!.Matches, _oldNode!);
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (4)
996var newSpan = GetDeletedDeclarationActiveSpan(topMatch.Matches, oldDeclaration); 2051foreach (var (oldNode, newNode) in topMatch.Matches) 2730var diagnosticSpan = GetDeletedNodeDiagnosticSpan(editScript.Match.Matches, oldDeclaration); 3099newActiveStatementSpan ??= 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)
755Dim newContainingMemberOrType = GetParameterContainingMemberOrType(newNode, oldNode, newModel, topMatch.Matches, cancellationToken) 1729Return _analyzer.GetDeletedNodeDiagnosticSpan(_match.Matches, _oldNode)