11 references to Root
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
StackTraceExplorer\StackTraceExplorerTests.cs (2)
38
StackFrameUtils.AssertEqual(stackFrame.
Root
, reparsedFrame.
Root
);
Microsoft.CodeAnalysis.Features (2)
StackTraceExplorer\StackTraceExplorerService.cs (2)
33
var matches = GetFileMatches(solution, parsedFrame.
Root
, out var line);
74
return await StackTraceExplorerUtilities.GetDefinitionAsync(solution, parsedFrame.
Root
, symbolPart, cancellationToken).ConfigureAwait(false);
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Services\StackTraceExplorer\RemoteStackTraceExplorerService.cs (1)
35
var definition = await StackTraceExplorerUtilities.GetDefinitionAsync(solution, parsedFrame.
Root
, symbolPart, cancellationToken).ConfigureAwait(false);
Microsoft.VisualStudio.LanguageServices (6)
StackTraceExplorer\StackFrameViewModel.cs (5)
145
var methodDeclaration = _frame.
Root
.MethodDeclaration;
188
if (_frame.
Root
.FileInformationExpression is not null)
190
var fileInformation = _frame.
Root
.FileInformationExpression;
195
var fileLinkText = _frame.
Root
.FileInformationExpression.ToString();
208
yield return MakeClassifiedRun(ClassificationTypeNames.Text, _frame.
Root
.EndOfLineToken.ToFullString());
StackTraceExplorer\StackTraceExplorerToolWindow.cs (1)
95
var methodDeclaration = parsedFrame.
Root
.MethodDeclaration;