11 references to Root
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
StackTraceExplorer\StackTraceExplorerTests.cs (2)
36
StackFrameUtils.AssertEqual(stackFrame.
Root
, reparsedFrame.
Root
);
Microsoft.CodeAnalysis.Features (2)
StackTraceExplorer\StackTraceExplorerService.cs (2)
31
var matches = GetFileMatches(solution, parsedFrame.
Root
, out var line);
72
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)
139
var methodDeclaration = _frame.
Root
.MethodDeclaration;
182
if (_frame.
Root
.FileInformationExpression is not null)
184
var fileInformation = _frame.
Root
.FileInformationExpression;
189
var fileLinkText = _frame.
Root
.FileInformationExpression.ToString();
202
yield return MakeClassifiedRun(ClassificationTypeNames.Text, _frame.
Root
.EndOfLineToken.ToFullString());
StackTraceExplorer\StackTraceExplorerToolWindow.cs (1)
94
var methodDeclaration = parsedFrame.
Root
.MethodDeclaration;