1 write to FileInformationExpression
Microsoft.CodeAnalysis.Features (1)
EmbeddedLanguages\StackFrame\StackFrameCompilationUnit.cs (1)
43FileInformationExpression = fileInformationExpression;
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)
16/// Any leading "at " is considered trivia of <see cref="MethodDeclaration"/>, and " in " is put as trivia for the <see cref="FileInformationExpression"/>. 561 => FileInformationExpression,
StackTraceExplorer\StackTraceExplorerService.cs (3)
80if (root.FileInformationExpression is null) 85var fileName = root.FileInformationExpression.Path.ToString(); 86var lineString = root.FileInformationExpression.Line.ToString();
Microsoft.VisualStudio.LanguageServices (3)
StackTraceExplorer\StackFrameViewModel.cs (3)
188if (_frame.Root.FileInformationExpression is not null) 190var fileInformation = _frame.Root.FileInformationExpression; 195var fileLinkText = _frame.Root.FileInformationExpression.ToString();