1 write to MatchingNodes
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\SemanticEditInfo.cs (1)
32
MatchingNodes
= matchingNodes;
7 references to MatchingNodes
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (1)
EditAndContinue\CSharpEditAndContinueAnalyzerTests.cs (1)
333
var oldStatementSyntaxMapped = syntaxMaps.
MatchingNodes
(newStatementSyntax);
Microsoft.CodeAnalysis.Features (5)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
5398
return nodeMaps.
MatchingNodes
?.Invoke(newNode);
EditAndContinue\EditSession.cs (2)
890
syntaxMap: edit.SyntaxMaps.
MatchingNodes
,
921
mergedMatchingNodes = node => newMaps[newMaps.IndexOf(static (m, node) => m.NewTree == node.SyntaxTree, node)].
MatchingNodes
!(node);
EditAndContinue\SemanticEditInfo.cs (2)
36
[MemberNotNullWhen(true, nameof(
MatchingNodes
))]
37
public bool HasMap =>
MatchingNodes
!= null;
Microsoft.CodeAnalysis.Features.Test.Utilities (1)
EditAndContinue\EditAndContinueTestVerifier.cs (1)
441
var actualOldNode = actualSyntaxMaps.
MatchingNodes
(newNode);