1 instantiation of SyntaxNavigator
Microsoft.CodeAnalysis (1)
Syntax\SyntaxNavigator.cs (1)
17public static readonly SyntaxNavigator Instance = new SyntaxNavigator();
10 references to SyntaxNavigator
Microsoft.CodeAnalysis (7)
Syntax\SyntaxNavigator.cs (1)
17public static readonly SyntaxNavigator Instance = new SyntaxNavigator();
Syntax\SyntaxNode.cs (2)
1012return SyntaxNavigator.Instance.GetFirstToken(this, includeZeroWidth, includeSkipped, includeDirectives, includeDocumentationComments); 1021return SyntaxNavigator.Instance.GetLastToken(this, includeZeroWidth, includeSkipped, includeDirectives, includeDocumentationComments);
Syntax\SyntaxToken.cs (4)
591return SyntaxNavigator.Instance.GetNextToken(this, includeZeroWidth, includeSkipped, includeDirectives, includeDocumentationComments); 608return SyntaxNavigator.Instance.GetNextToken(this, predicate, stepInto); 622return SyntaxNavigator.Instance.GetPreviousToken(this, includeZeroWidth, includeSkipped, includeDirectives, includeDocumentationComments); 634return SyntaxNavigator.Instance.GetPreviousToken(this, predicate, stepInto);
Microsoft.CodeAnalysis.CSharp (3)
Syntax\CSharpSyntaxNode.cs (1)
354return SyntaxNavigator.Instance.GetFirstToken(this, predicate, stepInto);
Syntax\LookupPosition.cs (2)
186var nextToken = (SyntaxToken)SyntaxNavigator.Instance.GetNextToken(constructorDecl, predicate: null, stepInto: null); 491(SyntaxToken)SyntaxNavigator.Instance.GetNextToken(body, predicate: null, stepInto: null);