1 write to SyntaxMaps
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\SemanticEditInfo.cs (1)
53
SyntaxMaps
= syntaxMaps;
8 references to SyntaxMaps
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (1)
EditAndContinue\CSharpEditAndContinueAnalyzerTests.cs (1)
326
var syntaxMaps = result.SemanticEdits[0].
SyntaxMaps
;
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\EditSession.cs (5)
890
syntaxMap: edit.
SyntaxMaps
.MatchingNodes,
891
runtimeRudeEdit: edit.
SyntaxMaps
.RuntimeRudeEdits));
917
if (partialTypeEdits.Any(static e => e.
SyntaxMaps
.HasMap))
919
var newMaps = partialTypeEdits.Where(static edit => edit.
SyntaxMaps
.HasMap).SelectAsArray(static edit => edit.
SyntaxMaps
);
EditAndContinue\SemanticEditInfo.cs (1)
124
/// If specified, the <see cref="
SyntaxMaps
"/> is either null or incomplete: it only provides mapping of the changed members of a single partial type declaration.
Microsoft.CodeAnalysis.Features.Test.Utilities (1)
EditAndContinue\EditAndContinueTestVerifier.cs (1)
399
var actualSyntaxMaps = actualSemanticEdit.
SyntaxMaps
;