Welcome to mirror list, hosted at ThFree Co, Russian Federation.

RoslynDebugInfoProvider.cs « MonoDevelop.CSharp.Debugger « CSharpBinding « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5dbf392e5b479f7e881b25eade264591ddd3a71f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.ComponentModel.Composition;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Editor.Implementation.Debugging;
using Microsoft.CodeAnalysis.Text;
using Microsoft.VisualStudio.Text;
using MonoDevelop.Debugger.VSTextView.QuickInfo;

namespace MonoDevelop.CSharp.Debugger
{
	[Export]
	[Export (typeof (IDebugInfoProvider))]
	public class RoslynDebugInfoProvider : IDebugInfoProvider
	{
		public async Task<DataTipInfo> GetDebugInfoAsync (SnapshotPoint snapshotPoint, CancellationToken cancellationToken)
		{
			var document = snapshotPoint.Snapshot.AsText ().GetOpenDocumentInCurrentContextWithChanges ();
			if (document != null) {
				var debugInfoService = document.Project.LanguageServices.GetService<ILanguageDebugInfoService> ();
				if (debugInfoService != null) {
					var debugInfo = await debugInfoService.GetDataTipInfoAsync (document, snapshotPoint.Position, cancellationToken).ConfigureAwait (false);
					if (!debugInfo.IsDefault) {
						var span = debugInfo.Span;
						return new DataTipInfo (
							snapshotPoint.Snapshot.CreateTrackingSpan (span.Start, span.Length, SpanTrackingMode.EdgeExclusive),
							snapshotPoint.Snapshot.GetText (span.Start, span.Length));
					}
				}
			}

			return default(DataTipInfo);
		}
	}
}