16 references to ScanType
Microsoft.CodeAnalysis.CSharp (16)
Parser\LanguageParser.cs (15)
1548if (ScanType() != ScanTypeFlags.NotType) 1668if (this.ScanType() == ScanTypeFlags.NotType) 8553ScanTypeFlags st = this.ScanType(); 8939ScanTypeFlags st = this.ScanType(); 9508this.ScanType() != ScanTypeFlags.NotType && 9583isDeclaration = ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken; 9595this.ScanType() != ScanTypeFlags.NotType && 9786if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 10315st = this.ScanType(); 10543if (ScanType() is ScanTypeFlags.NotType || 10790if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 12707this.ScanType() == ScanTypeFlags.NotType) 12844var type = this.ScanType(forPattern); 13051var st = ScanType(); 14025return this.ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind is SyntaxKind.IdentifierToken or SyntaxKind.InKeyword;
Parser\LanguageParser_Patterns.cs (1)
504return ScanType(forPattern: true) != ScanTypeFlags.NotType;