2 instantiations of StackFrameFileInformationNode
Microsoft.CodeAnalysis.Features (2)
EmbeddedLanguages\StackFrame\StackFrameParser.cs (2)
589
return new
StackFrameFileInformationNode
(path, colon: null, line: null);
598
return new
StackFrameFileInformationNode
(path, colonToken, lineNumber);
7 references to StackFrameFileInformationNode
Microsoft.CodeAnalysis.Features (7)
EmbeddedLanguages\StackFrame\IStackFrameNodeVisitor.cs (1)
17
void Visit(
StackFrameFileInformationNode
node);
EmbeddedLanguages\StackFrame\StackFrameCompilationUnit.cs (2)
18
internal sealed class StackFrameCompilationUnit(StackFrameMethodDeclarationNode methodDeclaration,
StackFrameFileInformationNode
? fileInformationExpression, StackFrameToken endOfLineToken) : StackFrameNode(StackFrameKind.CompilationUnit)
31
public readonly
StackFrameFileInformationNode
? FileInformationExpression = fileInformationExpression;
EmbeddedLanguages\StackFrame\StackFrameParser.cs (4)
574
private Result<
StackFrameFileInformationNode
> TryParseFileInformation()
579
return Result<
StackFrameFileInformationNode
>.Abort;
584
return Result<
StackFrameFileInformationNode
>.Empty;
595
return Result<
StackFrameFileInformationNode
>.Abort;