1 write to SyntaxMap
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\SemanticEditInfo.cs (1)
66SyntaxMap = syntaxMap;
11 references to SyntaxMap
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
EditAndContinue\CSharpEditAndContinueAnalyzerTests.cs (1)
335var syntaxMap = result.SemanticEdits[0].SyntaxMap;
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
EditAndContinue\EditAndContinueTestHelpers.cs (1)
342var actualSyntaxMap = actualSemanticEdit.SyntaxMap;
Microsoft.CodeAnalysis.Features (8)
EditAndContinue\EditSession.cs (6)
728syntaxMap: edit.SyntaxMap, 729preserveLocalVariables: edit.SyntaxMap != null)); 754partialTypeEdits.All(edit => edit.SyntaxMapTree != null && edit.SyntaxMap != null) || 755partialTypeEdits.All(edit => edit.SyntaxMapTree == null && edit.SyntaxMap == null)); 758if (partialTypeEdits.First().SyntaxMap != null) 761var syntaxMaps = partialTypeEdits.SelectAsArray(edit => edit.SyntaxMap!);
EditAndContinue\SemanticEditInfo.cs (2)
44/// The tree <see cref="SyntaxMap"/> operates on (the new tree, since the map is mapping from new nodes to old nodes). 52/// If specified, the <see cref="SyntaxMap"/> is either null or incomplete: it only provides mapping of the changed members of a single partial type declaration.
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures.UnitTests (1)
EditAndContinue\VisualBasicEditAndContinueAnalyzerTests.vb (1)
504Dim syntaxMap = result.SemanticEdits(0).SyntaxMap