1 write to MatchingNodes
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\SemanticEditInfo.cs (1)
32MatchingNodes = matchingNodes;
10 references to MatchingNodes
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (1)
EditAndContinue\CSharpEditAndContinueAnalyzerTests.cs (1)
333var oldStatementSyntaxMapped = syntaxMaps.MatchingNodes(newStatementSyntax);
Microsoft.CodeAnalysis.Features (8)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
5516return nodeMaps.MatchingNodes?.Invoke(newNode);
EditAndContinue\EditSession.cs (5)
859syntaxMap: edit.SyntaxMaps.MatchingNodes, 899Debug.Assert(m.MatchingNodes == first.MatchingNodes); 916Contract.ThrowIfNull(syntaxMapsForTree.MatchingNodes); 917return syntaxMapsForTree.MatchingNodes(newNode);
EditAndContinue\SemanticEditInfo.cs (2)
36[MemberNotNullWhen(true, nameof(MatchingNodes))] 37public bool HasMap => MatchingNodes != null;
Microsoft.CodeAnalysis.Features.Test.Utilities (1)
EditAndContinue\EditAndContinueTestVerifier.cs (1)
467var actualOldNode = actualSyntaxMaps.MatchingNodes(newNode);