4 references to WithIdentifier
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.cs (1)
13493
var newNode = node.WithAttributeLists(node.AttributeLists).WithModifiers(node.Modifiers).
WithIdentifier
(node.Identifier).WithParameterList(node.ParameterList).WithInitializer(node.Initializer).WithBody(node.Body).WithExpressionBody(node.ExpressionBody).WithSemicolonToken(node.SemicolonToken);
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CodeGeneration\CSharpSyntaxGenerator.cs (1)
743
node = ((ConstructorDeclarationSyntax)node).
WithIdentifier
(className.ToIdentifierToken());
Microsoft.VisualStudio.LanguageServices.CSharp (2)
CodeModel\CSharpCodeModelService.cs (2)
894
return ((ConstructorDeclarationSyntax)node).
WithIdentifier
(newIdentifier);
934
var constructor = ((ConstructorDeclarationSyntax)member).
WithIdentifier
(newIdentifier);