2 instantiations of StackFrameFileInformationNode
Microsoft.CodeAnalysis.Features (2)
EmbeddedLanguages\StackFrame\StackFrameParser.cs (2)
589return new StackFrameFileInformationNode(path, colon: null, line: null); 598return new StackFrameFileInformationNode(path, colonToken, lineNumber);
7 references to StackFrameFileInformationNode
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)
574private Result<StackFrameFileInformationNode> TryParseFileInformation() 579return Result<StackFrameFileInformationNode>.Abort; 584return Result<StackFrameFileInformationNode>.Empty; 595return Result<StackFrameFileInformationNode>.Abort;