3 instantiations of StackFrameQualifiedNameNode
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
EmbeddedLanguages\StackFrame\StackFrameSyntaxFactory.cs (1)
132=> new(left, DotToken, right);
Microsoft.CodeAnalysis.Features (2)
EmbeddedLanguages\StackFrame\StackFrameParser.cs (2)
203return new StackFrameQualifiedNameNode(lhs, dotToken, rhs); 221return new StackFrameQualifiedNameNode(lhs, dotToken, rhs);
18 references to StackFrameQualifiedNameNode
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (5)
EmbeddedLanguages\StackFrame\StackFrameSyntaxFactory.cs (5)
86StackFrameQualifiedNameNode memberAccessExpression, 96public static StackFrameQualifiedNameNode QualifiedName(string s, StackFrameTrivia? leadingTrivia = null, StackFrameTrivia? trailingTrivia = null) 99public static StackFrameQualifiedNameNode QualifiedName(string s, ImmutableArray<StackFrameTrivia> leadingTrivia, ImmutableArray<StackFrameTrivia> trailingTrivia) 125return (StackFrameQualifiedNameNode)current; 131public static StackFrameQualifiedNameNode QualifiedName(StackFrameNameNode left, StackFrameSimpleNameNode right)
Microsoft.CodeAnalysis.Features (13)
EmbeddedLanguages\StackFrame\IStackFrameNodeVisitor.cs (1)
11void Visit(StackFrameQualifiedNameNode node);
EmbeddedLanguages\StackFrame\StackFrameNodeDefinitions.cs (2)
35public readonly StackFrameQualifiedNameNode MemberAccessExpression; 40StackFrameQualifiedNameNode memberAccessExpression,
EmbeddedLanguages\StackFrame\StackFrameParser.cs (9)
113if (identifierNode is not StackFrameQualifiedNameNode memberAccessExpression) 134/// Parses a <see cref="StackFrameNameNode"/> which could either be a <see cref="StackFrameSimpleNameNode"/> or <see cref="StackFrameQualifiedNameNode" />. 167(success, var memberAccess) = TryParseQualifiedName(nameNode); 175Debug.Assert(nameNode is StackFrameQualifiedNameNode or StackFrameSimpleNameNode); 187private Result<StackFrameQualifiedNameNode> TryParseQualifiedName(StackFrameNameNode lhs) 191return Result<StackFrameQualifiedNameNode>.Empty; 198return Result<StackFrameQualifiedNameNode>.Abort; 210return Result<StackFrameQualifiedNameNode>.Abort; 217return Result<StackFrameQualifiedNameNode>.Abort;
StackTraceExplorer\StackTraceExplorerUtilities.cs (1)
35var typeName = typeExpression is StackFrameQualifiedNameNode qualifiedName