1 write to MatchingNodes
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\SemanticEditInfo.cs (1)
32
MatchingNodes
= matchingNodes;
10 references to MatchingNodes
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (1)
EditAndContinue\CSharpEditAndContinueAnalyzerTests.cs (1)
333
var oldStatementSyntaxMapped = syntaxMaps.
MatchingNodes
(newStatementSyntax);
Microsoft.CodeAnalysis.Features (8)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
5516
return nodeMaps.
MatchingNodes
?.Invoke(newNode);
EditAndContinue\EditSession.cs (5)
859
syntaxMap: edit.SyntaxMaps.
MatchingNodes
,
899
Debug.Assert(m.
MatchingNodes
== first.
MatchingNodes
);
916
Contract.ThrowIfNull(syntaxMapsForTree.
MatchingNodes
);
917
return syntaxMapsForTree.
MatchingNodes
(newNode);
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)
467
var actualOldNode = actualSyntaxMaps.
MatchingNodes
(newNode);