3 references to WithIdentifier
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.cs (1)
13522
var newNode = node.WithAttributeLists(node.AttributeLists).WithModifiers(node.Modifiers).WithTildeToken(node.TildeToken).
WithIdentifier
(node.Identifier).WithParameterList(node.ParameterList).WithBody(node.Body).WithExpressionBody(node.ExpressionBody).WithSemicolonToken(node.SemicolonToken);
Microsoft.VisualStudio.LanguageServices.CSharp (2)
CodeModel\CSharpCodeModelService.cs (2)
896
return ((DestructorDeclarationSyntax)node).
WithIdentifier
(newIdentifier);
939
var destructor = ((DestructorDeclarationSyntax)member).
WithIdentifier
(newIdentifier);