9 references to GetCurrentSymbolAsync
Microsoft.CodeAnalysis.Workspaces (9)
Editing\SymbolEditor.cs (8)
185var currentSymbol = await this.GetCurrentSymbolAsync(symbol, cancellationToken).ConfigureAwait(false); 237var currentSymbol = await this.GetCurrentSymbolAsync(symbol, cancellationToken).ConfigureAwait(false); 306return await this.GetCurrentSymbolAsync(currentSymbol, cancellationToken).ConfigureAwait(false); 367var currentSymbol = await this.GetCurrentSymbolAsync(symbol, cancellationToken).ConfigureAwait(false); 399var currentSymbol = await this.GetCurrentSymbolAsync(symbol, cancellationToken).ConfigureAwait(false); 402var currentMember = await this.GetCurrentSymbolAsync(member, cancellationToken).ConfigureAwait(false); 455var currentSymbol = await this.GetCurrentSymbolAsync(symbol, cancellationToken).ConfigureAwait(false); 497return await GetCurrentSymbolAsync(symbol, cancellationToken).ConfigureAwait(false);
Editing\SymbolEditorExtensions.cs (1)
32baseOrInterfaceType = (ITypeSymbol)(await editor.GetCurrentSymbolAsync(baseOrInterfaceType, cancellationToken).ConfigureAwait(false));