16 references to ScanType
Microsoft.CodeAnalysis.CSharp (16)
Parser\LanguageParser.cs (15)
1540if (ScanType() != ScanTypeFlags.NotType) 1659if (this.ScanType() == ScanTypeFlags.NotType) 8289ScanTypeFlags st = this.ScanType(); 8608ScanTypeFlags st = this.ScanType(); 9159this.ScanType() != ScanTypeFlags.NotType && 9234isDeclaration = ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken; 9246this.ScanType() != ScanTypeFlags.NotType && 9437if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 9933st = this.ScanType(); 10161if (ScanType() is ScanTypeFlags.NotType || 10410if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 12254this.ScanType() == ScanTypeFlags.NotType) 12391var type = this.ScanType(forPattern); 12598var st = ScanType(); 13585return this.ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind is SyntaxKind.IdentifierToken or SyntaxKind.InKeyword;
Parser\LanguageParser_Patterns.cs (1)
481return ScanType(forPattern: true) != ScanTypeFlags.NotType;