1 implementation of GetName
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\AbstractCodeModelService.cs (1)
484
public abstract string
GetName
(SyntaxNode node);
10 references to GetName
Microsoft.VisualStudio.LanguageServices.Implementation (6)
CodeModel\Collections\AttributeArgumentCollection.cs (1)
65
var childName = CodeModelService.
GetName
(child);
CodeModel\Collections\NamespaceCollection.cs (1)
211
var childName = CodeModelService.
GetName
(child);
CodeModel\Collections\TypeCollection.cs (1)
92
var childName = CodeModelService.
GetName
(child);
CodeModel\FileCodeModel_Events.cs (1)
230
var parameterName = this.CodeModelService.
GetName
(codeModelEvent.Node);
CodeModel\InternalElements\AbstractCodeElement.cs (1)
106
return CodeModelService.
GetName
(node);
CodeModel\InternalElements\CodeImport.cs (1)
149
=> CodeModelService.
GetName
(LookupNode());
Microsoft.VisualStudio.LanguageServices.UnitTests (4)
CodeModel\AbstractEventCollectorTests.vb (4)
36
Assert.Equal(node, codeModelService.
GetName
(codeModelEvent.Node))
43
Assert.Equal(parent, codeModelService.
GetName
(codeModelEvent.ParentNode))
81
Assert.Equal(node, codeModelService.
GetName
(codeModelEvent.Node))
88
Assert.Equal(parent, codeModelService.
GetName
(codeModelEvent.ParentNode))