16 references to ScanType
Microsoft.CodeAnalysis.CSharp (16)
Parser\LanguageParser.cs (15)
1267if (ScanType() != ScanTypeFlags.NotType) 1386if (this.ScanType() == ScanTypeFlags.NotType) 7680ScanTypeFlags st = this.ScanType(); 7999ScanTypeFlags st = this.ScanType(); 8558this.ScanType() != ScanTypeFlags.NotType && 8604isDeclaration = ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken; 8618this.ScanType() != ScanTypeFlags.NotType && 8836if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 9282st = this.ScanType(); 9490if (ScanType() == ScanTypeFlags.NotType || 9699if (ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind == SyntaxKind.IdentifierToken) 11422if (this.ScanType() == ScanTypeFlags.NotType) 11551var type = this.ScanType(forPattern: forPattern); 11743var st = ScanType(); 12697return this.ScanType() != ScanTypeFlags.NotType && this.CurrentToken.Kind is SyntaxKind.IdentifierToken or SyntaxKind.InKeyword;
Parser\LanguageParser_Patterns.cs (1)
474return ScanType(forPattern: true) != ScanTypeFlags.NotType;