8 references to Document
Microsoft.CodeAnalysis.CSharp.Features (2)
QuickInfo\CSharpDiagnosticAnalyzerQuickInfoProvider.cs (1)
36var document = context.Document;
QuickInfo\CSharpSemanticQuickInfoProvider.cs (1)
216var document = context.Document;
Microsoft.CodeAnalysis.Features (6)
QuickInfo\AbstractEmbeddedLanguageQuickInfoProvider.cs (1)
34var semanticModel = await context.Document.GetRequiredSemanticModelAsync(context.CancellationToken).ConfigureAwait(false);
QuickInfo\CommonQuickInfoProvider.cs (1)
21var tree = await context.Document.GetRequiredSyntaxTreeAsync(cancellationToken).ConfigureAwait(false);
QuickInfo\CommonSemanticQuickInfoProvider.cs (4)
33var semanticModel = await context.Document.GetRequiredSemanticModelAsync(cancellationToken).ConfigureAwait(false); 34var services = context.Document.Project.Solution.Services; 57var document = context.Document; 85var document = context.Document;