3 instantiations of StackFrameFileInformationNode
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
EmbeddedLanguages\StackFrame\StackFrameSyntaxFactory.cs (1)
200=> new(path.With(leadingTrivia: ImmutableArray.Create(inTrivia.HasValue ? inTrivia.Value : InTrivia)), colon, line);
Microsoft.CodeAnalysis.Features (2)
EmbeddedLanguages\StackFrame\StackFrameParser.cs (2)
540return new StackFrameFileInformationNode(path, colon: null, line: null); 549return new StackFrameFileInformationNode(path, colonToken, lineNumber);
10 references to StackFrameFileInformationNode
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
EmbeddedLanguages\StackFrame\StackFrameParserTests.Utilities.cs (1)
27StackFrameFileInformationNode? fileInformation = null,
EmbeddedLanguages\StackFrame\StackFrameSyntaxFactory.cs (1)
199public static StackFrameFileInformationNode FileInformation(StackFrameToken path, StackFrameToken colon, StackFrameToken line, StackFrameTrivia? inTrivia = null)
Microsoft.CodeAnalysis.Features (7)
EmbeddedLanguages\StackFrame\IStackFrameNodeVisitor.cs (1)
17void Visit(StackFrameFileInformationNode node);
EmbeddedLanguages\StackFrame\StackFrameCompilationUnit.cs (2)
32public readonly StackFrameFileInformationNode? FileInformationExpression; 39public StackFrameCompilationUnit(StackFrameMethodDeclarationNode methodDeclaration, StackFrameFileInformationNode? fileInformationExpression, StackFrameToken endOfLineToken)
EmbeddedLanguages\StackFrame\StackFrameParser.cs (4)
525private Result<StackFrameFileInformationNode> TryParseFileInformation() 530return Result<StackFrameFileInformationNode>.Abort; 535return Result<StackFrameFileInformationNode>.Empty; 546return Result<StackFrameFileInformationNode>.Abort;
Microsoft.VisualStudio.LanguageServices (1)
StackTraceExplorer\StackFrameViewModel.cs (1)
190var fileInformation = _frame.Root.FileInformationExpression;