16 references to ScanType
Microsoft.CodeAnalysis.CSharp (16)
Parser\LanguageParser.cs (15)
1548if (ScanType() != ScanTypeFlags.NotType) 1668if (this.ScanType() == ScanTypeFlags.NotType) 8492ScanTypeFlags st = this.ScanType(); 8878ScanTypeFlags st = this.ScanType(); 9447this.ScanType() != ScanTypeFlags.NotType && 9522isDeclaration = ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken; 9534this.ScanType() != ScanTypeFlags.NotType && 9725if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 10221st = this.ScanType(); 10449if (ScanType() is ScanTypeFlags.NotType || 10696if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 12598this.ScanType() == ScanTypeFlags.NotType) 12735var type = this.ScanType(forPattern); 12942var st = ScanType(); 13916return this.ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind is SyntaxKind.IdentifierToken or SyntaxKind.InKeyword;
Parser\LanguageParser_Patterns.cs (1)
481return ScanType(forPattern: true) != ScanTypeFlags.NotType;