10 references to FileInformationExpression
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
EmbeddedLanguages\StackFrame\StackFrameParserTests.Utilities.cs (2)
53Assert.Null(tree.Root.FileInformationExpression); 57StackFrameUtils.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"/>. 471 => FileInformationExpression,
StackTraceExplorer\StackTraceExplorerService.cs (3)
78if (root.FileInformationExpression is null) 83var fileName = root.FileInformationExpression.Path.ToString(); 84var lineString = root.FileInformationExpression.Line.ToString();
Microsoft.VisualStudio.LanguageServices (3)
StackTraceExplorer\StackFrameViewModel.cs (3)
182if (_frame.Root.FileInformationExpression is not null) 184var fileInformation = _frame.Root.FileInformationExpression; 189var fileLinkText = _frame.Root.FileInformationExpression.ToString();