3 instantiations of StackFrameFileInformationNode
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
EmbeddedLanguages\StackFrame\StackFrameSyntaxFactory.cs (1)
205=> new(path.With(leadingTrivia: ImmutableArray.Create(inTrivia.HasValue ? inTrivia.Value : InTrivia)), colon, line);
Microsoft.CodeAnalysis.Features (2)
EmbeddedLanguages\StackFrame\StackFrameParser.cs (2)
551return new StackFrameFileInformationNode(path, colon: null, line: null); 560return 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)
204public 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)
18internal sealed class StackFrameCompilationUnit(StackFrameMethodDeclarationNode methodDeclaration, StackFrameFileInformationNode? fileInformationExpression, StackFrameToken endOfLineToken) : StackFrameNode(StackFrameKind.CompilationUnit) 31public readonly StackFrameFileInformationNode? FileInformationExpression = fileInformationExpression;
EmbeddedLanguages\StackFrame\StackFrameParser.cs (4)
536private Result<StackFrameFileInformationNode> TryParseFileInformation() 541return Result<StackFrameFileInformationNode>.Abort; 546return Result<StackFrameFileInformationNode>.Empty; 557return Result<StackFrameFileInformationNode>.Abort;
Microsoft.VisualStudio.LanguageServices (1)
StackTraceExplorer\StackFrameViewModel.cs (1)
184var fileInformation = _frame.Root.FileInformationExpression;