10 references to FileInformationExpression
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
EmbeddedLanguages\StackFrame\StackFrameParserTests.Utilities.cs (2)
53
Assert.Null(tree.Root.
FileInformationExpression
);
57
StackFrameUtils.AssertEqual(fileInformation, tree.Root.
FileInformationExpression
);
Microsoft.CodeAnalysis.Features (5)
EmbeddedLanguages\StackFrame\StackFrameCompilationUnit.cs (2)
15
/// Any leading "at " is considered trivia of <see cref="MethodDeclaration"/>, and " in " is put as trivia for the <see cref="
FileInformationExpression
"/>.
47
1 =>
FileInformationExpression
,
StackTraceExplorer\StackTraceExplorerService.cs (3)
78
if (root.
FileInformationExpression
is null)
83
var fileName = root.
FileInformationExpression
.Path.ToString();
84
var lineString = root.
FileInformationExpression
.Line.ToString();
Microsoft.VisualStudio.LanguageServices (3)
StackTraceExplorer\StackFrameViewModel.cs (3)
182
if (_frame.Root.
FileInformationExpression
is not null)
184
var fileInformation = _frame.Root.
FileInformationExpression
;
189
var fileLinkText = _frame.Root.
FileInformationExpression
.ToString();