1 write to MatchingNodes
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\SemanticEditInfo.cs (1)
32MatchingNodes = matchingNodes;
8 references to MatchingNodes
Microsoft.CodeAnalysis.Features (8)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (1)
5516return nodeMaps.MatchingNodes?.Invoke(newNode);
EditAndContinue\EditSession.cs (5)
891syntaxMap: edit.SyntaxMaps.MatchingNodes, 931Debug.Assert(m.MatchingNodes == first.MatchingNodes); 948Contract.ThrowIfNull(syntaxMapsForTree.MatchingNodes); 949return syntaxMapsForTree.MatchingNodes(newNode);
EditAndContinue\SemanticEditInfo.cs (2)
36[MemberNotNullWhen(true, nameof(MatchingNodes))] 37public bool HasMap => MatchingNodes != null;