11 references to Matches
Microsoft.CodeAnalysis.CSharp.Features (2)
EditAndContinue\CSharpEditAndContinueAnalyzer.cs (2)
1084
var newContainingMemberOrType = GetParameterContainingMemberOrType(newNode, oldNode, newModel, topMatch.
Matches
, cancellationToken);
2329
return _analyzer.GetDeletedNodeDiagnosticSpan(_match!.
Matches
, _oldNode!);
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (4)
1058
var newSpan = GetDeletedDeclarationActiveSpan(topMatch.
Matches
, oldDeclaration);
2116
foreach (var (oldNode, newNode) in topMatch.
Matches
)
2789
var diagnosticSpan = GetDeletedNodeDiagnosticSpan(editScript.Match.
Matches
, oldDeclaration);
3155
newActiveStatementSpan ??= GetDeletedDeclarationActiveSpan(editScript.Match.
Matches
, oldDeclaration);
EditAndContinue\DeclarationBodyMap.cs (1)
38
=> new(match.
Matches
, match.ReverseMatches, ImmutableDictionary<SyntaxNode, SyntaxNode>.Empty);
EditAndContinue\Utilities\BidirectionalMap.cs (1)
73
=> new(match.
Matches
, match.ReverseMatches);
Microsoft.CodeAnalysis.Features.Test.Utilities (1)
EditAndContinue\EditAndContinueTestVerifier.cs (1)
533
=> ToMatchingPairs(match.
Matches
.Where(partners => partners.Key != match.OldRoot));
Microsoft.CodeAnalysis.VisualBasic.Features (2)
EditAndContinue\VisualBasicEditAndContinueAnalyzer.vb (2)
745
Dim newContainingMemberOrType = GetParameterContainingMemberOrType(newNode, oldNode, newModel.RequiredModel, topMatch.
Matches
, cancellationToken)
1731
Return _analyzer.GetDeletedNodeDiagnosticSpan(_match.
Matches
, _oldNode)