16 references to ScanType
Microsoft.CodeAnalysis.CSharp (16)
Parser\LanguageParser.cs (15)
1548if (ScanType() != ScanTypeFlags.NotType) 1668if (this.ScanType() == ScanTypeFlags.NotType) 8394ScanTypeFlags st = this.ScanType(); 8724ScanTypeFlags st = this.ScanType(); 9293this.ScanType() != ScanTypeFlags.NotType && 9368isDeclaration = ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken; 9380this.ScanType() != ScanTypeFlags.NotType && 9571if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 10067st = this.ScanType(); 10295if (ScanType() is ScanTypeFlags.NotType || 10544if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 12447this.ScanType() == ScanTypeFlags.NotType) 12584var type = this.ScanType(forPattern); 12791var st = ScanType(); 13785return this.ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind is SyntaxKind.IdentifierToken or SyntaxKind.InKeyword;
Parser\LanguageParser_Patterns.cs (1)
481return ScanType(forPattern: true) != ScanTypeFlags.NotType;