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)
1016return SyntaxNavigator.Instance.GetFirstToken(this, includeZeroWidth, includeSkipped, includeDirectives, includeDocumentationComments); 1025return SyntaxNavigator.Instance.GetLastToken(this, includeZeroWidth, includeSkipped, includeDirectives, includeDocumentationComments);
Syntax\SyntaxToken.cs (4)
589return SyntaxNavigator.Instance.GetNextToken(this, includeZeroWidth, includeSkipped, includeDirectives, includeDocumentationComments); 606return SyntaxNavigator.Instance.GetNextToken(this, predicate, stepInto); 620return SyntaxNavigator.Instance.GetPreviousToken(this, includeZeroWidth, includeSkipped, includeDirectives, includeDocumentationComments); 632return SyntaxNavigator.Instance.GetPreviousToken(this, predicate, stepInto);
Microsoft.CodeAnalysis.CSharp (3)
Syntax\CSharpSyntaxNode.cs (1)
334return SyntaxNavigator.Instance.GetFirstToken(this, predicate, stepInto);
Syntax\LookupPosition.cs (2)
186var nextToken = (SyntaxToken)SyntaxNavigator.Instance.GetNextToken(constructorDecl, predicate: null, stepInto: null); 509(SyntaxToken)SyntaxNavigator.Instance.GetNextToken(body, predicate: null, stepInto: null);