1 write to Symbol
Microsoft.CodeAnalysis.Features (1)
Rename\SymbolicRenameInfo.cs (1)
55Symbol = symbol;
8 references to Symbol
Microsoft.CodeAnalysis.EditorFeatures (1)
InlineRename\AbstractEditorInlineRenameService.SymbolRenameInfo.cs (1)
51public ISymbol RenameSymbol => _info.Symbol!;
Microsoft.CodeAnalysis.Features (5)
Rename\SymbolicRenameInfo.cs (5)
27[MemberNotNullWhen(false, nameof(Symbol))] 74var nameWithoutAttribute = GetWithoutAttributeSuffix(this.Symbol.Name); 79if (this.Symbol.IsAttribute() || (this.Symbol is IAliasSymbol alias && alias.Target.IsAttribute())) 81if (HasAttributeSuffix(this.Symbol.Name))
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\Rename\RenameHandler.cs (2)
51symbolicRenameInfo.Symbol, 56symbolicRenameInfo.Symbol, symbolicRenameInfo.GetFinalSymbolName(newName), cancellationToken).ConfigureAwait(false);