16 references to ScanType
Microsoft.CodeAnalysis.CSharp (16)
Parser\LanguageParser.cs (15)
1540if (ScanType() != ScanTypeFlags.NotType) 1660if (this.ScanType() == ScanTypeFlags.NotType) 8389ScanTypeFlags st = this.ScanType(); 8719ScanTypeFlags st = this.ScanType(); 9288this.ScanType() != ScanTypeFlags.NotType && 9363isDeclaration = ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken; 9375this.ScanType() != ScanTypeFlags.NotType && 9566if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 10062st = this.ScanType(); 10290if (ScanType() is ScanTypeFlags.NotType || 10539if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 12442this.ScanType() == ScanTypeFlags.NotType) 12579var type = this.ScanType(forPattern); 12786var st = ScanType(); 13773return this.ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind is SyntaxKind.IdentifierToken or SyntaxKind.InKeyword;
Parser\LanguageParser_Patterns.cs (1)
481return ScanType(forPattern: true) != ScanTypeFlags.NotType;