9 references to Instance
Microsoft.CodeAnalysis (6)
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);