4 references to GetNextTokenOrEndOfFile
Microsoft.CodeAnalysis.CSharp.CodeStyle (2)
SyntaxTokenExtensions.cs (2)
107
=> token.
GetNextTokenOrEndOfFile
();
139
var nextToken = token.
GetNextTokenOrEndOfFile
(includeZeroWidth: true, includeSkipped: true, includeDirectives: true, includeDocumentationComments: true);
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
CSharpRemoveUnnecessaryImportsService.Rewriter.cs (1)
163
var nextToken = compilationUnit.Usings.Last().GetLastToken().
GetNextTokenOrEndOfFile
();
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (1)
VisualBasicRemoveUnnecessaryImportsRewriter.vb (1)
127
Dim nextToken = compilationUnit.Imports.Last().GetLastToken().
GetNextTokenOrEndOfFile
()