4 references to IsSkipped
Microsoft.CodeAnalysis.VisualBasic.Features (2)
CodeFixes\IncorrectExitContinue\IncorrectExitContinueCodeFixProvider.vb (2)
113
If tokenAfterContinueToken.
IsSkipped
() AndAlso text.Lines.IndexOf(tokenAfterContinueToken.SpanStart) = text.Lines.IndexOf(continueStatement.SpanStart) Then
145
If tokenAfterExitToken.
IsSkipped
() AndAlso text.Lines.IndexOf(tokenAfterExitToken.SpanStart) = text.Lines.IndexOf(exitStatement.SpanStart) Then
Microsoft.CodeAnalysis.VisualBasic.Workspaces (2)
CodeCleanup\Providers\AddMissingTokensCodeCleanupProvider.vb (2)
547
If previousToken.IsMissing OrElse previousToken.
IsSkipped
OrElse previousToken.Kind = 0 Then
558
If nextToken.IsMissing OrElse nextToken.
IsSkipped
Then